From da61e2330f2fa5ac987c1c8cbfffbd01575b8049 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Wed, 4 May 2022 17:51:12 +0200 Subject: [PATCH 001/175] esm: add chaining to loaders PR-URL: https://github.com/nodejs/node/pull/42623 Reviewed-By: Geoffrey Booth Reviewed-By: Antoine du Hamel --- doc/api/errors.md | 11 + doc/api/esm.md | 234 ++++++---- lib/internal/errors.js | 7 + lib/internal/modules/esm/loader.js | 411 +++++++++++++----- lib/internal/modules/run_main.js | 8 +- lib/internal/process/esm_loader.js | 8 +- lib/internal/util/types.js | 2 +- src/node_options.cc | 2 +- src/node_options.h | 2 +- .../test-esm-experimental-warnings.mjs | 27 +- test/es-module/test-esm-loader-chaining.mjs | 352 +++++++++++++++ test/es-module/test-esm-loader-hooks.mjs | 17 +- .../es-module/test-esm-loader-invalid-url.mjs | 4 +- test/es-module/test-esm-tla-unfinished.mjs | 34 +- .../builtin-named-exports-loader.mjs | 2 + .../es-module-loaders/example-loader.mjs | 2 + .../es-module-loaders/hooks-custom.mjs | 6 + .../loader-invalid-format.mjs | 4 +- .../es-module-loaders/loader-invalid-url.mjs | 1 + .../loader-load-bad-next-context.mjs | 3 + .../loader-load-bad-next-url.mjs | 3 + .../loader-load-foo-or-42.mjs | 11 + .../loader-load-impersonating-next-url.mjs | 3 + .../loader-load-incomplete.mjs | 6 + .../loader-load-next-modified.mjs | 11 + .../loader-load-passing-modified-context.mjs | 6 + .../loader-load-passthru.mjs | 4 + ...loader-load-receiving-modified-context.mjs | 4 + .../es-module-loaders/loader-resolve-42.mjs | 4 + .../loader-resolve-bad-next-context.mjs | 3 + .../loader-resolve-bad-next-specifier.mjs | 3 + .../es-module-loaders/loader-resolve-foo.mjs | 4 + .../loader-resolve-incomplete.mjs | 5 + .../loader-resolve-next-modified.mjs | 11 + ...oader-resolve-passing-modified-context.mjs | 6 + .../loader-resolve-passthru.mjs | 4 + ...der-resolve-receiving-modified-context.mjs | 4 + .../loader-resolve-shortcircuit.mjs | 6 + .../es-module-loaders/mock-loader.mjs | 5 + .../es-module-loaders/string-sources.mjs | 7 +- test/parallel/test-module-main-fail.js | 5 +- 41 files changed, 1032 insertions(+), 220 deletions(-) create mode 100644 test/es-module/test-esm-loader-chaining.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-bad-next-context.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-bad-next-url.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-foo-or-42.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-impersonating-next-url.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-incomplete.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-next-modified.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-passing-modified-context.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-passthru.mjs create mode 100644 test/fixtures/es-module-loaders/loader-load-receiving-modified-context.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-42.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-bad-next-context.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-bad-next-specifier.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-foo.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-incomplete.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-next-modified.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-passing-modified-context.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-passthru.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-receiving-modified-context.mjs create mode 100644 test/fixtures/es-module-loaders/loader-resolve-shortcircuit.mjs diff --git a/doc/api/errors.md b/doc/api/errors.md index 135e0e0751aecf..af96956002f05b 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -2092,6 +2092,17 @@ An attempt was made to open an IPC communication channel with a synchronously forked Node.js process. See the documentation for the [`child_process`][] module for more information. + + +### `ERR_LOADER_CHAIN_INCOMPLETE` + + + +An ESM loader hook returned without calling `next()` and without explicitly +signaling a short circuit. + ### `ERR_MANIFEST_ASSERT_INTEGRITY` diff --git a/doc/api/esm.md b/doc/api/esm.md index d6b22c027c864f..b5de0175ae234e 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -7,6 +7,10 @@ > The loaders API is being redesigned. This hook may disappear or its > signature may change. Do not rely on the API described below. @@ -786,15 +836,21 @@ export async function resolve(specifier, context, defaultResolve) { > In a previous version of this API, this was split across 3 separate, now > deprecated, hooks (`getFormat`, `getSource`, and `transformSource`). -* `url` {string} +* `url` {string} The URL returned by the `resolve` chain * `context` {Object} + * `conditions` {string\[]} Export conditions of the relevant `package.json` * `format` {string|null|undefined} The format optionally supplied by the - `resolve` hook. + `resolve` hook chain * `importAssertions` {Object} -* `defaultLoad` {Function} +* `nextLoad` {Function} The subsequent `load` hook in the chain, or the + Node.js default `load` hook after the last user-supplied `load` hook + * `specifier` {string} + * `context` {Object} * Returns: {Object} * `format` {string} - * `source` {string|ArrayBuffer|TypedArray} + * `shortCircuit` {undefined|boolean} A signal that this hook intends to + terminate the chain of `resolve` hooks. **Default:** `false` + * `source` {string|ArrayBuffer|TypedArray} The source for Node.js to evaluate The `load` hook provides a way to define a custom method of determining how a URL should be interpreted, retrieved, and parsed. It is also in charge of @@ -835,20 +891,10 @@ avoid reading files from disk. It could also be used to map an unrecognized format to a supported one, for example `yaml` to `module`. ```js -/** - * @param {string} url - * @param {{ - format: string, - }} context If resolve settled with a `format`, that value is included here. - * @param {Function} defaultLoad - * @returns {Promise<{ - format: string, - source: string | ArrayBuffer | SharedArrayBuffer | Uint8Array, - }>} - */ -export async function load(url, context, defaultLoad) { +export async function load(url, context, nextLoad) { const { format } = context; - if (Math.random() > 0.5) { // Some condition. + + if (Math.random() > 0.5) { // Some condition /* For some or all URLs, do some custom logic for retrieving the source. Always return an object of the form { @@ -858,11 +904,13 @@ export async function load(url, context, defaultLoad) { */ return { format, + shortCircuit: true, source: '...', }; } - // Defer to Node.js for all other URLs. - return defaultLoad(url, context, defaultLoad); + + // Defer to the next hook in the chain. + return nextLoad(url, context); } ``` @@ -871,13 +919,22 @@ source to a supported one (see [Examples](#examples) below). #### `globalPreload()` + + > The loaders API is being redesigned. This hook may disappear or its > signature may change. Do not rely on the API described below. > In a previous version of this API, this hook was named > `getGlobalPreloadCode`. -* Returns: {string} +* `context` {Object} Information to assist the preload code + * `port` {MessagePort} +* Returns: {string} Code to run before application startup Sometimes it might be necessary to run some code inside of the same global scope that the application runs in. This hook allows the return of a string @@ -891,13 +948,7 @@ If the code needs more advanced `require` features, it has to construct its own `require` using `module.createRequire()`. ```js -/** - * @param {{ - port: MessagePort, - }} utilities Things that preload code might find useful - * @returns {string} Code to run before application startup - */ -export function globalPreload(utilities) { +export function globalPreload(context) { return `\ globalThis.someInjectedProperty = 42; console.log('I just set some globals!'); @@ -922,10 +973,6 @@ close normally. /** * This example has the application context send a message to the loader * and sends the message back to the application context - * @param {{ - port: MessagePort, - }} utilities Things that preload code might find useful - * @returns {string} Code to run before application startup */ export function globalPreload({ port }) { port.onmessage = (evt) => { @@ -947,9 +994,11 @@ customizations of the Node.js code loading and evaluation behaviors. #### HTTPS loader -In current Node.js, specifiers starting with `https://` are unsupported. The -loader below registers hooks to enable rudimentary support for such specifiers. -While this may seem like a significant improvement to Node.js core +In current Node.js, specifiers starting with `https://` are experimental (see +[HTTPS and HTTP imports][]). + +The loader below registers hooks to enable rudimentary support for such +specifiers. While this may seem like a significant improvement to Node.js core functionality, there are substantial downsides to actually using this loader: performance is much slower than loading files from disk, there is no caching, and there is no security. @@ -958,7 +1007,7 @@ and there is no security. // https-loader.mjs import { get } from 'node:https'; -export function resolve(specifier, context, defaultResolve) { +export function resolve(specifier, context, nextResolve) { const { parentURL = null } = context; // Normally Node.js would error on specifiers starting with 'https://', so @@ -966,19 +1015,21 @@ export function resolve(specifier, context, defaultResolve) { // passed along to the later hooks below. if (specifier.startsWith('https://')) { return { + shortCircuit: true, url: specifier }; } else if (parentURL && parentURL.startsWith('https://')) { return { - url: new URL(specifier, parentURL).href + shortCircuit: true, + url: new URL(specifier, parentURL).href, }; } // Let Node.js handle all other specifiers. - return defaultResolve(specifier, context, defaultResolve); + return nextResolve(specifier, context); } -export function load(url, context, defaultLoad) { +export function load(url, context, nextLoad) { // For JavaScript to be loaded over the network, we need to fetch and // return it. if (url.startsWith('https://')) { @@ -990,6 +1041,7 @@ export function load(url, context, defaultLoad) { // This example assumes all network-provided JavaScript is ES module // code. format: 'module', + shortCircuit: true, source: data, })); }).on('error', (err) => reject(err)); @@ -997,7 +1049,7 @@ export function load(url, context, defaultLoad) { } // Let Node.js handle all other URLs. - return defaultLoad(url, context, defaultLoad); + return nextLoad(url, context); } ``` @@ -1037,27 +1089,29 @@ const baseURL = pathToFileURL(`${cwd()}/`).href; // CoffeeScript files end in .coffee, .litcoffee, or .coffee.md. const extensionsRegex = /\.coffee$|\.litcoffee$|\.coffee\.md$/; -export async function resolve(specifier, context, defaultResolve) { - const { parentURL = baseURL } = context; - - // Node.js normally errors on unknown file extensions, so return a URL for - // specifiers ending in the CoffeeScript file extensions. +export async function resolve(specifier, context, nextResolve) { if (extensionsRegex.test(specifier)) { + const { parentURL = baseURL } = context; + + // Node.js normally errors on unknown file extensions, so return a URL for + // specifiers ending in the CoffeeScript file extensions. return { + shortCircuit: true, url: new URL(specifier, parentURL).href }; } // Let Node.js handle all other specifiers. - return defaultResolve(specifier, context, defaultResolve); + return nextResolve(specifier, context); } -export async function load(url, context, defaultLoad) { - // Now that we patched resolve to let CoffeeScript URLs through, we need to - // tell Node.js what format such URLs should be interpreted as. Because - // CoffeeScript transpiles into JavaScript, it should be one of the two - // JavaScript formats: 'commonjs' or 'module'. +export async function load(url, context, nextLoad) { if (extensionsRegex.test(url)) { + // Now that we patched resolve to let CoffeeScript URLs through, we need to + // tell Node.js what format such URLs should be interpreted as. Because + // CoffeeScript transpiles into JavaScript, it should be one of the two + // JavaScript formats: 'commonjs' or 'module'. + // CoffeeScript files can be either CommonJS or ES modules, so we want any // CoffeeScript file to be treated by Node.js the same as a .js file at the // same location. To determine how Node.js would interpret an arbitrary .js @@ -1070,25 +1124,26 @@ export async function load(url, context, defaultLoad) { // loader. Avoiding the need for a separate CommonJS handler is a future // enhancement planned for ES module loaders. if (format === 'commonjs') { - return { format }; + return { + format, + shortCircuit: true, + }; } - const { source: rawSource } = await defaultLoad(url, { format }); + const { source: rawSource } = await nextLoad(url, { ...context, format }); // This hook converts CoffeeScript source code into JavaScript source code // for all imported CoffeeScript files. - const transformedSource = CoffeeScript.compile(rawSource.toString(), { - bare: true, - filename: url, - }); + const transformedSource = coffeeCompile(rawSource.toString(), url); return { format, + shortCircuit: true, source: transformedSource, }; } // Let Node.js handle all other URLs. - return defaultLoad(url, context, defaultLoad); + return nextLoad(url, context); } async function getPackageType(url) { @@ -1496,6 +1551,7 @@ success! [Determining module system]: packages.md#determining-module-system [Dynamic `import()`]: https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports [ES Module Integration Proposal for WebAssembly]: https://github.com/webassembly/esm-integration +[HTTPS and HTTP imports]: #https-and-http-imports [Import Assertions]: #import-assertions [Import Assertions proposal]: https://github.com/tc39/proposal-import-assertions [JSON modules]: #json-modules @@ -1526,9 +1582,9 @@ success! [`util.TextDecoder`]: util.md#class-utiltextdecoder [cjs-module-lexer]: https://github.com/nodejs/cjs-module-lexer/tree/1.2.2 [custom https loader]: #https-loader -[load hook]: #loadurl-context-defaultload +[load hook]: #loadurl-context-nextload [percent-encoded]: url.md#percent-encoding-in-urls -[resolve hook]: #resolvespecifier-context-defaultresolve +[resolve hook]: #resolvespecifier-context-nextresolve [special scheme]: https://url.spec.whatwg.org/#special-scheme [status code]: process.md#exit-codes [the official standard format]: https://tc39.github.io/ecma262/#sec-modules diff --git a/lib/internal/errors.js b/lib/internal/errors.js index 388bf6dcfb0aed..cf54bbe6fb35e1 100644 --- a/lib/internal/errors.js +++ b/lib/internal/errors.js @@ -1370,6 +1370,13 @@ E('ERR_IPC_CHANNEL_CLOSED', 'Channel closed', Error); E('ERR_IPC_DISCONNECTED', 'IPC channel is already disconnected', Error); E('ERR_IPC_ONE_PIPE', 'Child process can have only one IPC pipe', Error); E('ERR_IPC_SYNC_FORK', 'IPC cannot be used with synchronous forks', Error); +E( + 'ERR_LOADER_CHAIN_INCOMPLETE', + 'The "%s" hook from %s did not call the next hook in its chain and did not' + + ' explicitly signal a short circuit. If this is intentional, include' + + ' `shortCircuit: true` in the hook\'s return.', + Error +); E('ERR_MANIFEST_ASSERT_INTEGRITY', (moduleURL, realIntegrities) => { let msg = `The content of "${ diff --git a/lib/internal/modules/esm/loader.js b/lib/internal/modules/esm/loader.js index 39f8ebca59e9df..8bc22ef697db3e 100644 --- a/lib/internal/modules/esm/loader.js +++ b/lib/internal/modules/esm/loader.js @@ -23,12 +23,13 @@ const { const { MessageChannel } = require('internal/worker/io'); const { + ERR_LOADER_CHAIN_INCOMPLETE, ERR_INTERNAL_ASSERTION, ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, ERR_INVALID_RETURN_PROPERTY_VALUE, ERR_INVALID_RETURN_VALUE, - ERR_UNKNOWN_MODULE_FORMAT + ERR_UNKNOWN_MODULE_FORMAT, } = require('internal/errors').codes; const { pathToFileURL, isURLInstance, URL } = require('internal/url'); const { emitExperimentalWarning } = require('internal/util'); @@ -36,6 +37,10 @@ const { isAnyArrayBuffer, isArrayBufferView, } = require('internal/util/types'); +const { + validateObject, + validateString, +} = require('internal/validators'); const ModuleMap = require('internal/modules/esm/module_map'); const ModuleJob = require('internal/modules/esm/module_job'); @@ -56,10 +61,39 @@ const { /** - * Prevent the specifier resolution warning from being printed twice + * @typedef {object} ExportedHooks + * @property {Function} globalPreload + * @property {Function} resolve + * @property {Function} load + */ + +/** + * @typedef {Record} ModuleExports + */ + +/** + * @typedef {object} KeyedExports + * @property {ModuleExports} exports + * @property {URL['href']} url + */ + +/** + * @typedef {object} KeyedHook + * @property {Function} fn + * @property {URL['href']} url + */ + +/** + * @typedef {'builtin'|'commonjs'|'json'|'module'|'wasm'} ModuleFormat + */ + +/** + * @typedef {ArrayBuffer|TypedArray|string} ModuleSource */ -let emittedSpecifierResolutionWarning = false; +// [2] `validate...()`s throw the wrong error + +let emittedSpecifierResolutionWarning = false; /** * An ESMLoader instance is used as the main entry point for loading ES modules. @@ -70,27 +104,35 @@ class ESMLoader { /** * Prior to ESM loading. These are called once before any modules are started. * @private - * @property {Function[]} globalPreloaders First-in-first-out list of - * preload hooks. + * @property {KeyedHook[]} globalPreloaders Last-in-first-out + * list of preload hooks. */ #globalPreloaders = []; /** * Phase 2 of 2 in ESM loading. * @private - * @property {Function[]} loaders First-in-first-out list of loader hooks. + * @property {KeyedHook[]} loaders Last-in-first-out + * collection of loader hooks. */ #loaders = [ - defaultLoad, + { + fn: defaultLoad, + url: 'node:internal/modules/esm/load', + }, ]; /** * Phase 1 of 2 in ESM loading. * @private - * @property {Function[]} resolvers First-in-first-out list of resolver hooks + * @property {KeyedHook[]} resolvers Last-in-first-out + * collection of resolver hooks. */ #resolvers = [ - defaultResolve, + { + fn: defaultResolve, + url: 'node:internal/modules/esm/resolve', + }, ]; #importMetaInitializer = initializeImportMeta; @@ -116,13 +158,16 @@ class ESMLoader { translators = translators; constructor() { - if (getOptionValue('--experimental-loader')) { + if (getOptionValue('--experimental-loader').length > 0) { emitExperimentalWarning('Custom ESM Loaders'); } if (getOptionValue('--experimental-network-imports')) { emitExperimentalWarning('Network Imports'); } - if (getOptionValue('--experimental-specifier-resolution') === 'node' && !emittedSpecifierResolutionWarning) { + if ( + !emittedSpecifierResolutionWarning && + getOptionValue('--experimental-specifier-resolution') === 'node' + ) { process.emitWarning( 'The Node.js specifier resolution flag is experimental. It could change or be removed at any time.', 'ExperimentalWarning' @@ -131,6 +176,11 @@ class ESMLoader { } } + /** + * + * @param {ModuleExports} exports + * @returns {ExportedHooks} + */ static pluckHooks({ globalPreload, resolve, @@ -194,34 +244,51 @@ class ESMLoader { /** * Collect custom/user-defined hook(s). After all hooks have been collected, * calls global preload hook(s). - * @param {object | object[]} customLoaders A list of exports from - * user-defined loaders (as returned by ESMLoader.import()). + * @param {KeyedExports} customLoaders + * A list of exports from user-defined loaders (as returned by + * ESMLoader.import()). */ async addCustomLoaders( customLoaders = [], ) { - if (!ArrayIsArray(customLoaders)) customLoaders = [customLoaders]; - for (let i = 0; i < customLoaders.length; i++) { - const exports = customLoaders[i]; + const { + exports, + url, + } = customLoaders[i]; const { globalPreloader, resolver, loader, } = ESMLoader.pluckHooks(exports); - if (globalPreloader) ArrayPrototypePush( - this.#globalPreloaders, - FunctionPrototypeBind(globalPreloader, null), // [1] - ); - if (resolver) ArrayPrototypePush( - this.#resolvers, - FunctionPrototypeBind(resolver, null), // [1] - ); - if (loader) ArrayPrototypePush( - this.#loaders, - FunctionPrototypeBind(loader, null), // [1] - ); + if (globalPreloader) { + ArrayPrototypePush( + this.#globalPreloaders, + { + fn: FunctionPrototypeBind(globalPreloader), // [1] + url, + }, + ); + } + if (resolver) { + ArrayPrototypePush( + this.#resolvers, + { + fn: FunctionPrototypeBind(resolver), // [1] + url, + }, + ); + } + if (loader) { + ArrayPrototypePush( + this.#loaders, + { + fn: FunctionPrototypeBind(loader), // [1] + url, + }, + ); + } } // [1] ensure hook function is not bound to ESMLoader instance @@ -286,7 +353,7 @@ class ESMLoader { // immediately and synchronously url = fetchModule(new URL(url), { parentURL: url }).resolvedHREF; // This should only occur if the module hasn't been fetched yet - if (typeof url !== 'string') { + if (typeof url !== 'string') { // [2] throw new ERR_INTERNAL_ASSERTION(`Base url for module ${url} not loaded.`); } } @@ -308,12 +375,17 @@ class ESMLoader { */ async getModuleJob(specifier, parentURL, importAssertions) { let importAssertionsForResolve; + + // By default, `this.#loaders` contains just the Node default load hook if (this.#loaders.length !== 1) { - // We can skip cloning if there are no user provided loaders because + // We can skip cloning if there are no user-provided loaders because // the Node.js default resolve hook does not use import assertions. - importAssertionsForResolve = - ObjectAssign(ObjectCreate(null), importAssertions); + importAssertionsForResolve = ObjectAssign( + ObjectCreate(null), + importAssertions, + ); } + const { format, url } = await this.resolve(specifier, parentURL, importAssertionsForResolve); @@ -391,11 +463,21 @@ class ESMLoader { * @param {string} parentURL Path of the parent importing the module. * @param {Record} importAssertions Validations for the * module import. - * @returns {Promise} A list of module export(s). + * @returns {Promise} + * A collection of module export(s) or a list of collections of module + * export(s). */ async import(specifiers, parentURL, importAssertions) { + // For loaders, `import` is passed multiple things to process, it returns a + // list pairing the url and exports collected. This is especially useful for + // error messaging, to identity from where an export came. But, in most + // cases, only a single url is being "imported" (ex `import()`), so there is + // only 1 possible url from which the exports were collected and it is + // already known to the caller. Nesting that in a list would only ever + // create redundant work for the caller, so it is later popped off the + // internal list. const wasArr = ArrayIsArray(specifiers); - if (!wasArr) specifiers = [specifiers]; + if (!wasArr) { specifiers = [specifiers]; } const count = specifiers.length; const jobs = new Array(count); @@ -408,36 +490,106 @@ class ESMLoader { const namespaces = await PromiseAll(new SafeArrayIterator(jobs)); - return wasArr ? - namespaces : - namespaces[0]; + if (!wasArr) { return namespaces[0]; } // We can skip the pairing below + + for (let i = 0; i < count; i++) { + const namespace = ObjectCreate(null); + namespace.url = specifiers[i]; + namespace.exports = namespaces[i]; + + namespaces[i] = namespace; + } + + return namespaces; } /** * Provide source that is understood by one of Node's translators. * - * The internals of this WILL change when chaining is implemented, - * depending on the resolution/consensus from #36954 - * @param {string} url The URL/path of the module to be loaded + * Internally, this behaves like a backwards iterator, wherein the stack of + * hooks starts at the top and each call to `nextLoad()` moves down 1 step + * until it reaches the bottom or short-circuits. + * + * @param {URL['href']} url The URL/path of the module to be loaded * @param {object} context Metadata about the module - * @returns {object} + * @returns {{ format: ModuleFormat, source: ModuleSource }} */ async load(url, context = {}) { - const defaultLoader = this.#loaders[0]; + const loaders = this.#loaders; + let hookIndex = loaders.length - 1; + let { + fn: loader, + url: loaderFilePath, + } = loaders[hookIndex]; + let chainFinished = hookIndex === 0; + let shortCircuited = false; + + const nextLoad = async (nextUrl, ctx = context) => { + --hookIndex; // `nextLoad` has been called, so decrement our pointer. + + ({ + fn: loader, + url: loaderFilePath, + } = loaders[hookIndex]); + + if (hookIndex === 0) { chainFinished = true; } + + const hookErrIdentifier = `${loaderFilePath} "load"`; + + if (typeof nextUrl !== 'string') { + // non-strings can be coerced to a url string + // validateString() throws a less-specific error + throw new ERR_INVALID_ARG_TYPE( + `${hookErrIdentifier} nextLoad(url)`, + 'a url string', + nextUrl, + ); + } - const loader = this.#loaders.length === 1 ? - defaultLoader : - this.#loaders[1]; - const loaded = await loader(url, context, defaultLoader); + // Try to avoid expensive URL instantiation for known-good urls + if (!this.moduleMap.has(nextUrl)) { + try { + new URL(nextUrl); + } catch { + throw new ERR_INVALID_ARG_VALUE( + `${hookErrIdentifier} nextLoad(url)`, + nextUrl, + 'should be a url string', + ); + } + } + + validateObject(ctx, `${hookErrIdentifier} nextLoad(, context)`); + + const output = await loader(nextUrl, ctx, nextLoad); + + if (output?.shortCircuit === true) { shortCircuited = true; } - if (typeof loaded !== 'object') { + return output; + }; + + const loaded = await loader( + url, + context, + nextLoad, + ); + + const hookErrIdentifier = `${loaderFilePath} load`; + + if (typeof loaded !== 'object') { // [2] throw new ERR_INVALID_RETURN_VALUE( - 'object', - 'loader load', + 'an object', + hookErrIdentifier, loaded, ); } + if (loaded?.shortCircuit === true) { shortCircuited = true; } + + if (!chainFinished && !shortCircuited) { + throw new ERR_LOADER_CHAIN_INCOMPLETE('load', loaderFilePath); + } + const { format, source, @@ -454,10 +606,10 @@ class ESMLoader { url); } - if (typeof format !== 'string') { + if (typeof format !== 'string') { // [2] throw new ERR_INVALID_RETURN_PROPERTY_VALUE( - 'string', - 'loader resolve', + 'a string', + hookErrIdentifier, 'format', format, ); @@ -468,12 +620,14 @@ class ESMLoader { typeof source !== 'string' && !isAnyArrayBuffer(source) && !isArrayBufferView(source) - ) throw ERR_INVALID_RETURN_PROPERTY_VALUE( - 'string, an ArrayBuffer, or a TypedArray', - 'loader load', - 'source', - source - ); + ) { + throw ERR_INVALID_RETURN_PROPERTY_VALUE( + 'a string, an ArrayBuffer, or a TypedArray', + hookErrIdentifier, + 'source', + source + ); + } return { format, @@ -482,10 +636,7 @@ class ESMLoader { } preload() { - const count = this.#globalPreloaders.length; - if (!count) return; - - for (let i = 0; i < count; i++) { + for (let i = this.#globalPreloaders.length - 1; i >= 0; i--) { const channel = new MessageChannel(); const { port1: insidePreload, @@ -495,16 +646,23 @@ class ESMLoader { insidePreload.unref(); insideLoader.unref(); - const preload = this.#globalPreloaders[i]({ - port: insideLoader + const { + fn: preloader, + url: specifier, + } = this.#globalPreloaders[i]; + + const preload = preloader({ + port: insideLoader, }); - if (preload == null) return; + if (preload == null) { return; } + + const hookErrIdentifier = `${specifier} globalPreload`; - if (typeof preload !== 'string') { + if (typeof preload !== 'string') { // [2] throw new ERR_INVALID_RETURN_VALUE( - 'string', - 'loader globalPreloadCode', + 'a string', + hookErrIdentifier, preload, ); } @@ -569,14 +727,16 @@ class ESMLoader { /** * Resolve the location of the module. * - * The internals of this WILL change when chaining is implemented, - * depending on the resolution/consensus from #36954. + * Internally, this behaves like a backwards iterator, wherein the stack of + * hooks starts at the top and each call to `nextResolve()` moves down 1 step + * until it reaches the bottom or short-circuits. + * * @param {string} originalSpecifier The specified URL path of the module to * be resolved. * @param {string} [parentURL] The URL path of the module's parent. * @param {ImportAssertions} [importAssertions] Assertions from the import * statement or expression. - * @returns {{ url: string }} + * @returns {{ format: string, url: URL['href'] }} */ async resolve( originalSpecifier, @@ -589,61 +749,118 @@ class ESMLoader { !isMain && typeof parentURL !== 'string' && !isURLInstance(parentURL) - ) throw new ERR_INVALID_ARG_TYPE( - 'parentURL', - ['string', 'URL'], + ) { + throw new ERR_INVALID_ARG_TYPE( + 'parentURL', + ['string', 'URL'], + parentURL, + ); + } + const resolvers = this.#resolvers; + + let hookIndex = resolvers.length - 1; + let { + fn: resolver, + url: resolverFilePath, + } = resolvers[hookIndex]; + let chainFinished = hookIndex === 0; + let shortCircuited = false; + + const context = { + conditions: DEFAULT_CONDITIONS, + importAssertions, parentURL, - ); + }; + + const nextResolve = async (suppliedSpecifier, ctx = context) => { + --hookIndex; // `nextResolve` has been called, so decrement our pointer. + + ({ + fn: resolver, + url: resolverFilePath, + } = resolvers[hookIndex]); + + if (hookIndex === 0) { chainFinished = true; } - const conditions = DEFAULT_CONDITIONS; + const hookErrIdentifier = `${resolverFilePath} "resolve"`; - const defaultResolver = this.#resolvers[0]; + validateString( + suppliedSpecifier, + `${hookErrIdentifier} nextResolve(specifier)`, + ); // non-strings can be coerced to a url string + + validateObject(ctx, `${hookErrIdentifier} nextResolve(, context)`); + + const output = await resolver(suppliedSpecifier, ctx, nextResolve); + + if (output?.shortCircuit === true) { shortCircuited = true; } + + return output; + }; - const resolver = this.#resolvers.length === 1 ? - defaultResolver : - this.#resolvers[1]; const resolution = await resolver( originalSpecifier, - { - conditions, - importAssertions, - parentURL, - }, - defaultResolver, + context, + nextResolve, ); - if (typeof resolution !== 'object') { + const hookErrIdentifier = `${resolverFilePath} resolve`; + + if (typeof resolution !== 'object') { // [2] throw new ERR_INVALID_RETURN_VALUE( - 'object', - 'loader resolve', + 'an object', + hookErrIdentifier, resolution, ); } - const { format, url } = resolution; + if (resolution?.shortCircuit === true) { shortCircuited = true; } + + if (!chainFinished && !shortCircuited) { + throw new ERR_LOADER_CHAIN_INCOMPLETE('resolve', resolverFilePath); + } + + const { + format, + url, + } = resolution; if ( format != null && - typeof format !== 'string' + typeof format !== 'string' // [2] ) { throw new ERR_INVALID_RETURN_PROPERTY_VALUE( - 'string', - 'loader resolve', + 'a string', + hookErrIdentifier, 'format', format, ); } - if (typeof url !== 'string') { // non-strings can be coerced to a url string + if (typeof url !== 'string') { + // non-strings can be coerced to a url string + // validateString() throws a less-specific error throw new ERR_INVALID_RETURN_PROPERTY_VALUE( - 'string', - 'loader resolve', + 'a url string', + hookErrIdentifier, 'url', url, ); } - new URL(url); // Intentionally trigger error if `url` is invalid + // Try to avoid expensive URL instantiation for known-good urls + if (!this.moduleMap.has(url)) { + try { + new URL(url); + } catch { + throw new ERR_INVALID_RETURN_PROPERTY_VALUE( + 'a url string', + hookErrIdentifier, + 'url', + url, + ); + } + } return { format, diff --git a/lib/internal/modules/run_main.js b/lib/internal/modules/run_main.js index 924c4836bb2aa2..5a50d5d6afab6e 100644 --- a/lib/internal/modules/run_main.js +++ b/lib/internal/modules/run_main.js @@ -28,8 +28,12 @@ function resolveMainPath(main) { } function shouldUseESMLoader(mainPath) { - const userLoader = getOptionValue('--experimental-loader'); - if (userLoader) + /** + * @type {string[]} userLoaders A list of custom loaders registered by the user + * (or an empty list when none have been registered). + */ + const userLoaders = getOptionValue('--experimental-loader'); + if (userLoaders.length > 0) return true; const esModuleSpecifierResolution = getOptionValue('--experimental-specifier-resolution'); diff --git a/lib/internal/process/esm_loader.js b/lib/internal/process/esm_loader.js index 20021134ce40f3..4634ff5a9f5101 100644 --- a/lib/internal/process/esm_loader.js +++ b/lib/internal/process/esm_loader.js @@ -49,11 +49,9 @@ exports.esmLoader = esmLoader; */ async function initializeLoader() { const { getOptionValue } = require('internal/options'); - // customLoaders CURRENTLY can be only 1 (a string) - // Once chaining is implemented, it will be string[] const customLoaders = getOptionValue('--experimental-loader'); - if (!customLoaders.length) return; + if (customLoaders.length === 0) return; let cwd; try { @@ -68,7 +66,7 @@ async function initializeLoader() { const internalEsmLoader = new ESMLoader(); // Importation must be handled by internal loader to avoid poluting userland - const exports = await internalEsmLoader.import( + const keyedExportsList = await internalEsmLoader.import( customLoaders, pathToFileURL(cwd).href, ObjectCreate(null), @@ -76,7 +74,7 @@ async function initializeLoader() { // Hooks must then be added to external/public loader // (so they're triggered in userland) - await esmLoader.addCustomLoaders(exports); + await esmLoader.addCustomLoaders(keyedExportsList); } exports.loadESM = async function loadESM(callback) { diff --git a/lib/internal/util/types.js b/lib/internal/util/types.js index 0811a68f82a4dd..544f4c3da49c72 100644 --- a/lib/internal/util/types.js +++ b/lib/internal/util/types.js @@ -68,7 +68,7 @@ module.exports = { isFloat32Array, isFloat64Array, isBigInt64Array, - isBigUint64Array + isBigUint64Array, }; let isCryptoKey; diff --git a/src/node_options.cc b/src/node_options.cc index fd343bdf2c7adc..6adb029a0cceb2 100644 --- a/src/node_options.cc +++ b/src/node_options.cc @@ -346,7 +346,7 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() { AddOption("--experimental-json-modules", "", NoOp{}, kAllowedInEnvironment); AddOption("--experimental-loader", "use the specified module as a custom loader", - &EnvironmentOptions::userland_loader, + &EnvironmentOptions::userland_loaders, kAllowedInEnvironment); AddAlias("--loader", "--experimental-loader"); AddOption("--experimental-modules", "", NoOp{}, kAllowedInEnvironment); diff --git a/src/node_options.h b/src/node_options.h index b07f7c527dd08e..e505d005a7de2b 100644 --- a/src/node_options.h +++ b/src/node_options.h @@ -162,7 +162,7 @@ class EnvironmentOptions : public Options { bool trace_warnings = false; bool extra_info_on_fatal_exception = true; std::string unhandled_rejections; - std::string userland_loader; + std::vector userland_loaders; bool verify_base_objects = #ifdef DEBUG true; diff --git a/test/es-module/test-esm-experimental-warnings.mjs b/test/es-module/test-esm-experimental-warnings.mjs index bf92b158e485eb..b6ef757a88302e 100644 --- a/test/es-module/test-esm-experimental-warnings.mjs +++ b/test/es-module/test-esm-experimental-warnings.mjs @@ -1,10 +1,33 @@ import { mustCall } from '../common/index.mjs'; import { fileURL } from '../common/fixtures.mjs'; -import { match, strictEqual } from 'assert'; +import { doesNotMatch, match, strictEqual } from 'assert'; import { spawn } from 'child_process'; import { execPath } from 'process'; -// Verify experimental warnings are printed +// Verify no warnings are printed when no experimental features are enabled or used +{ + const input = `import ${JSON.stringify(fileURL('es-module-loaders', 'module-named-exports.mjs'))}`; + const child = spawn(execPath, [ + '--input-type=module', + '--eval', + input, + ]); + + let stderr = ''; + child.stderr.setEncoding('utf8'); + child.stderr.on('data', (data) => { stderr += data; }); + child.on('close', mustCall((code, signal) => { + strictEqual(code, 0); + strictEqual(signal, null); + doesNotMatch( + stderr, + /ExperimentalWarning/, + new Error('No experimental warning(s) should be emitted when no experimental feature is enabled') + ); + })); +} + +// Verify experimental warning is printed when experimental feature is enabled for ( const [experiment, arg] of [ [/Custom ESM Loaders/, `--experimental-loader=${fileURL('es-module-loaders', 'hooks-custom.mjs')}`], diff --git a/test/es-module/test-esm-loader-chaining.mjs b/test/es-module/test-esm-loader-chaining.mjs new file mode 100644 index 00000000000000..1055c44a156a77 --- /dev/null +++ b/test/es-module/test-esm-loader-chaining.mjs @@ -0,0 +1,352 @@ +import '../common/index.mjs'; +import fixtures from '../common/fixtures.js'; +import assert from 'node:assert'; +import { spawnSync } from 'node:child_process'; + +const setupArgs = [ + '--no-warnings', + '--input-type=module', + '--eval', +]; +const commonInput = 'import fs from "node:fs"; console.log(fs)'; +const commonArgs = [ + ...setupArgs, + commonInput, +]; + +{ // Verify unadulterated source is loaded when there are no loaders + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + ...setupArgs, + 'import fs from "node:fs"; console.log(typeof fs?.constants?.F_OK )', + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.strictEqual(status, 0); + assert.match(stdout, /number/); // node:fs is an object +} + +{ // Verify loaded source is properly different when only load changes something + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-passthru.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /load passthru/); + assert.match(stdout, /resolve passthru/); + assert.strictEqual(status, 0); + assert.match(stdout, /foo/); +} + +{ // Verify multiple changes from hooks result in proper output + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-shortcircuit.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-foo.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /resolve 42/); // It did go thru resolve-42 + assert.strictEqual(status, 0); + assert.match(stdout, /foo/); // LIFO, so resolve-foo won +} + +{ // Verify modifying context within resolve chain is respected + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-shortcircuit.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-receiving-modified-context.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-passing-modified-context.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /bar/); + assert.strictEqual(status, 0); +} + +{ // Verify multiple changes from hooks result in proper output + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-shortcircuit.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-foo.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /resolve foo/); // It did go thru resolve-foo + assert.strictEqual(status, 0); + assert.match(stdout, /42/); // LIFO, so resolve-42 won +} + +{ // Verify error thrown for incomplete resolve chain, citing errant loader & hook + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-incomplete.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.match(stdout, /resolve passthru/); + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); + assert.match(stderr, /loader-resolve-incomplete\.mjs/); + assert.match(stderr, /"resolve"/); +} + +{ // Verify error NOT thrown when nested resolve hook signaled a short circuit + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-shortcircuit.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-next-modified.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.strictEqual(stdout.trim(), 'foo'); + assert.strictEqual(status, 0); +} + +{ // Verify error NOT thrown when nested load hook signaled a short circuit + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-shortcircuit.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-next-modified.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /421/); + assert.strictEqual(status, 0); +} + +{ // Verify chain does break and throws appropriately + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-incomplete.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.doesNotMatch(stdout, /resolve passthru/); + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); + assert.match(stderr, /loader-resolve-incomplete\.mjs/); + assert.match(stderr, /"resolve"/); +} + +{ // Verify error thrown for incomplete load chain, citing errant loader & hook + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-incomplete.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-passthru.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.match(stdout, /load passthru/); + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); + assert.match(stderr, /loader-load-incomplete\.mjs/); + assert.match(stderr, /"load"/); +} + +{ // Verify chain does break and throws appropriately + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-incomplete.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.doesNotMatch(stdout, /load passthru/); + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); + assert.match(stderr, /loader-load-incomplete\.mjs/); + assert.match(stderr, /"load"/); +} + +{ // Verify error thrown when invalid `specifier` argument passed to `resolve…next` + const { status, stderr } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-bad-next-specifier.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_INVALID_ARG_TYPE/); + assert.match(stderr, /loader-resolve-bad-next-specifier\.mjs/); + assert.match(stderr, /"resolve"/); + assert.match(stderr, /nextResolve\(specifier\)/); +} + +{ // Verify error thrown when invalid `context` argument passed to `resolve…next` + const { status, stderr } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-bad-next-context.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_INVALID_ARG_TYPE/); + assert.match(stderr, /loader-resolve-bad-next-context\.mjs/); + assert.match(stderr, /"resolve"/); + assert.match(stderr, /nextResolve\(, context\)/); +} + +{ // Verify error thrown when invalid `url` argument passed to `load…next` + const { status, stderr } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-bad-next-url.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_INVALID_ARG_TYPE/); + assert.match(stderr, /loader-load-bad-next-url\.mjs/); + assert.match(stderr, /"load"/); + assert.match(stderr, /nextLoad\(url\)/); +} + +{ // Verify error thrown when invalid `url` argument passed to `load…next` + const { status, stderr } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-impersonating-next-url.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_INVALID_ARG_VALUE/); + assert.match(stderr, /loader-load-impersonating-next-url\.mjs/); + assert.match(stderr, /"load"/); + assert.match(stderr, /nextLoad\(url\)/); +} + +{ // Verify error thrown when invalid `context` argument passed to `load…next` + const { status, stderr } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-passthru.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-bad-next-context.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(status, 1); + assert.match(stderr, /ERR_INVALID_ARG_TYPE/); + assert.match(stderr, /loader-load-bad-next-context\.mjs/); + assert.match(stderr, /"load"/); + assert.match(stderr, /nextLoad\(, context\)/); +} diff --git a/test/es-module/test-esm-loader-hooks.mjs b/test/es-module/test-esm-loader-hooks.mjs index 57a203342ac49c..d314a4d9aa0a5e 100644 --- a/test/es-module/test-esm-loader-hooks.mjs +++ b/test/es-module/test-esm-loader-hooks.mjs @@ -35,6 +35,7 @@ const { ESMLoader } = esmLoaderModule; return { format: suggestedFormat, + shortCircuit: true, url: resolvedURL, }; } @@ -54,15 +55,21 @@ const { ESMLoader } = esmLoaderModule; // This doesn't matter (just to avoid errors) return { format: 'module', + shortCircuit: true, source: '', }; } - const customLoader = { - // Ensure ESMLoader actually calls the custom hooks - resolve: mustCall(resolve), - load: mustCall(load), - }; + const customLoader = [ + { + exports: { + // Ensure ESMLoader actually calls the custom hooks + resolve: mustCall(resolve), + load: mustCall(load), + }, + url: import.meta.url, + }, + ]; esmLoader.addCustomLoaders(customLoader); diff --git a/test/es-module/test-esm-loader-invalid-url.mjs b/test/es-module/test-esm-loader-invalid-url.mjs index 6294e57404c8bb..1ba7c621f7e92a 100644 --- a/test/es-module/test-esm-loader-invalid-url.mjs +++ b/test/es-module/test-esm-loader-invalid-url.mjs @@ -4,7 +4,7 @@ import assert from 'assert'; import('../fixtures/es-modules/test-esm-ok.mjs') .then(assert.fail, (error) => { - expectsError({ code: 'ERR_INVALID_URL' })(error); - assert.strictEqual(error.input, '../fixtures/es-modules/test-esm-ok.mjs'); + expectsError({ code: 'ERR_INVALID_RETURN_PROPERTY_VALUE' })(error); + assert.match(error.message, /loader-invalid-url\.mjs/); }) .then(mustCall()); diff --git a/test/es-module/test-esm-tla-unfinished.mjs b/test/es-module/test-esm-tla-unfinished.mjs index d7658c19e98e1c..a7b6e620d0620a 100644 --- a/test/es-module/test-esm-tla-unfinished.mjs +++ b/test/es-module/test-esm-tla-unfinished.mjs @@ -3,11 +3,17 @@ import assert from 'assert'; import child_process from 'child_process'; import fixtures from '../common/fixtures.js'; +const commonArgs = [ + '--no-warnings', + '--input-type=module', + '--eval', +]; + { // Unresolved TLA promise, --eval const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - ['--input-type=module', '--eval', 'await new Promise(() => {})'], + [...commonArgs, 'await new Promise(() => {})'], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout, stderr], [13, '', '']); } @@ -16,7 +22,7 @@ import fixtures from '../common/fixtures.js'; // Rejected TLA promise, --eval const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - ['--input-type=module', '-e', 'await Promise.reject(new Error("Xyz"))'], + [...commonArgs, 'await Promise.reject(new Error("Xyz"))'], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout], [1, '']); assert.match(stderr, /Error: Xyz/); @@ -26,8 +32,10 @@ import fixtures from '../common/fixtures.js'; // Unresolved TLA promise with explicit exit code, --eval const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - ['--input-type=module', '--eval', - 'process.exitCode = 42;await new Promise(() => {})'], + [ + ...commonArgs, + 'process.exitCode = 42;await new Promise(() => {})', + ], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout, stderr], [42, '', '']); } @@ -36,8 +44,10 @@ import fixtures from '../common/fixtures.js'; // Rejected TLA promise with explicit exit code, --eval const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - ['--input-type=module', '-e', - 'process.exitCode = 42;await Promise.reject(new Error("Xyz"))'], + [ + ...commonArgs, + 'process.exitCode = 42;await Promise.reject(new Error("Xyz"))', + ], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout], [1, '']); assert.match(stderr, /Error: Xyz/); @@ -47,7 +57,7 @@ import fixtures from '../common/fixtures.js'; // Unresolved TLA promise, module file const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - [fixtures.path('es-modules/tla/unresolved.mjs')], + ['--no-warnings', fixtures.path('es-modules/tla/unresolved.mjs')], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout, stderr], [13, '', '']); } @@ -56,7 +66,7 @@ import fixtures from '../common/fixtures.js'; // Rejected TLA promise, module file const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - [fixtures.path('es-modules/tla/rejected.mjs')], + ['--no-warnings', fixtures.path('es-modules/tla/rejected.mjs')], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout], [1, '']); assert.match(stderr, /Error: Xyz/); @@ -66,7 +76,7 @@ import fixtures from '../common/fixtures.js'; // Unresolved TLA promise, module file const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - [fixtures.path('es-modules/tla/unresolved-withexitcode.mjs')], + ['--no-warnings', fixtures.path('es-modules/tla/unresolved-withexitcode.mjs')], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout, stderr], [42, '', '']); } @@ -75,7 +85,7 @@ import fixtures from '../common/fixtures.js'; // Rejected TLA promise, module file const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - [fixtures.path('es-modules/tla/rejected-withexitcode.mjs')], + ['--no-warnings', fixtures.path('es-modules/tla/rejected-withexitcode.mjs')], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout], [1, '']); assert.match(stderr, /Error: Xyz/); @@ -85,7 +95,7 @@ import fixtures from '../common/fixtures.js'; // Calling process.exit() in .mjs should return status 0 const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - [fixtures.path('es-modules/tla/process-exit.mjs')], + ['--no-warnings', fixtures.path('es-modules/tla/process-exit.mjs')], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout, stderr], [0, '', '']); } @@ -94,7 +104,7 @@ import fixtures from '../common/fixtures.js'; // Calling process.exit() in worker thread shouldn't influence main thread const { status, stdout, stderr } = child_process.spawnSync( process.execPath, - [fixtures.path('es-modules/tla/unresolved-with-worker-process-exit.mjs')], + ['--no-warnings', fixtures.path('es-modules/tla/unresolved-with-worker-process-exit.mjs')], { encoding: 'utf8' }); assert.deepStrictEqual([status, stdout, stderr], [13, '', '']); } diff --git a/test/fixtures/es-module-loaders/builtin-named-exports-loader.mjs b/test/fixtures/es-module-loaders/builtin-named-exports-loader.mjs index 8790811c7e7bd6..e303ec196f6c6d 100644 --- a/test/fixtures/es-module-loaders/builtin-named-exports-loader.mjs +++ b/test/fixtures/es-module-loaders/builtin-named-exports-loader.mjs @@ -18,6 +18,7 @@ export async function resolve(specifier, context, next) { if (def.url.startsWith('node:')) { return { + shortCircuit: true, url: `custom-${def.url}`, importAssertions: context.importAssertions, }; @@ -29,6 +30,7 @@ export function load(url, context, next) { if (url.startsWith('custom-node:')) { const urlObj = new URL(url); return { + shortCircuit: true, source: generateBuiltinModule(urlObj.pathname), format: 'module', }; diff --git a/test/fixtures/es-module-loaders/example-loader.mjs b/test/fixtures/es-module-loaders/example-loader.mjs index be4808738035f9..f87054c8b70502 100644 --- a/test/fixtures/es-module-loaders/example-loader.mjs +++ b/test/fixtures/es-module-loaders/example-loader.mjs @@ -11,6 +11,7 @@ baseURL.pathname = process.cwd() + '/'; export function resolve(specifier, { parentURL = baseURL }, defaultResolve) { if (builtinModules.includes(specifier)) { return { + shortCircuit: true, url: 'node:' + specifier }; } @@ -22,6 +23,7 @@ export function resolve(specifier, { parentURL = baseURL }, defaultResolve) { } const resolved = new URL(specifier, parentURL); return { + shortCircuit: true, url: resolved.href }; } diff --git a/test/fixtures/es-module-loaders/hooks-custom.mjs b/test/fixtures/es-module-loaders/hooks-custom.mjs index 5173b97387905a..4c4014db01ef3f 100644 --- a/test/fixtures/es-module-loaders/hooks-custom.mjs +++ b/test/fixtures/es-module-loaders/hooks-custom.mjs @@ -29,25 +29,30 @@ export function load(url, context, next) { if (url.endsWith('esmHook/badReturnFormatVal.mjs')) return { format: Array(0), + shortCircuit: true, source: '', } if (url.endsWith('esmHook/unsupportedReturnFormatVal.mjs')) return { format: 'foo', // Not one of the allowable inputs: no translator named 'foo' + shortCircuit: true, source: '', } if (url.endsWith('esmHook/badReturnSourceVal.mjs')) return { format: 'module', + shortCircuit: true, source: Array(0), } if (url.endsWith('esmHook/preknownFormat.pre')) return { format: context.format, + shortCircuit: true, source: `const msg = 'hello world'; export default msg;` }; if (url.endsWith('esmHook/virtual.mjs')) return { format: 'module', + shortCircuit: true, source: `export const message = 'Woohoo!'.toUpperCase();`, }; @@ -63,6 +68,7 @@ export function resolve(specifier, context, next) { if (specifier.startsWith('esmHook')) return { format, + shortCircuit: true, url: pathToFileURL(specifier).href, importAssertions: context.importAssertions, }; diff --git a/test/fixtures/es-module-loaders/loader-invalid-format.mjs b/test/fixtures/es-module-loaders/loader-invalid-format.mjs index 0210f73b554382..438d50dacba433 100644 --- a/test/fixtures/es-module-loaders/loader-invalid-format.mjs +++ b/test/fixtures/es-module-loaders/loader-invalid-format.mjs @@ -1,7 +1,8 @@ export async function resolve(specifier, { parentURL, importAssertions }, defaultResolve) { if (parentURL && specifier === '../fixtures/es-modules/test-esm-ok.mjs') { return { - url: 'file:///asdf' + shortCircuit: true, + url: 'file:///asdf', }; } return defaultResolve(specifier, {parentURL, importAssertions}, defaultResolve); @@ -11,6 +12,7 @@ export async function load(url, context, next) { if (url === 'file:///asdf') { return { format: 'esm', + shortCircuit: true, source: '', } } diff --git a/test/fixtures/es-module-loaders/loader-invalid-url.mjs b/test/fixtures/es-module-loaders/loader-invalid-url.mjs index a7cefeca3da37a..87d1a6a564b461 100644 --- a/test/fixtures/es-module-loaders/loader-invalid-url.mjs +++ b/test/fixtures/es-module-loaders/loader-invalid-url.mjs @@ -1,6 +1,7 @@ export async function resolve(specifier, { parentURL, importAssertions }, defaultResolve) { if (parentURL && specifier === '../fixtures/es-modules/test-esm-ok.mjs') { return { + shortCircuit: true, url: specifier, importAssertions, }; diff --git a/test/fixtures/es-module-loaders/loader-load-bad-next-context.mjs b/test/fixtures/es-module-loaders/loader-load-bad-next-context.mjs new file mode 100644 index 00000000000000..fe38da04f9ff91 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-bad-next-context.mjs @@ -0,0 +1,3 @@ +export async function load(url, context, next) { + return next(url, []); +} diff --git a/test/fixtures/es-module-loaders/loader-load-bad-next-url.mjs b/test/fixtures/es-module-loaders/loader-load-bad-next-url.mjs new file mode 100644 index 00000000000000..4f53b695327dd1 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-bad-next-url.mjs @@ -0,0 +1,3 @@ +export async function load(url, context, next) { + return next([], context); +} diff --git a/test/fixtures/es-module-loaders/loader-load-foo-or-42.mjs b/test/fixtures/es-module-loaders/loader-load-foo-or-42.mjs new file mode 100644 index 00000000000000..8d408223e66a0a --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-foo-or-42.mjs @@ -0,0 +1,11 @@ +export async function load(url) { + const val = url.includes('42') + ? '42' + : '"foo"'; + + return { + format: 'module', + shortCircuit: true, + source: `export default ${val}`, + }; +} diff --git a/test/fixtures/es-module-loaders/loader-load-impersonating-next-url.mjs b/test/fixtures/es-module-loaders/loader-load-impersonating-next-url.mjs new file mode 100644 index 00000000000000..f98b091c8b9ff5 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-impersonating-next-url.mjs @@ -0,0 +1,3 @@ +export async function load(url, context, next) { + return next('not/a/url', context); +} diff --git a/test/fixtures/es-module-loaders/loader-load-incomplete.mjs b/test/fixtures/es-module-loaders/loader-load-incomplete.mjs new file mode 100644 index 00000000000000..d6242488e5738e --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-incomplete.mjs @@ -0,0 +1,6 @@ +export async function load() { + return { + format: 'module', + source: 'export default 42', + }; +} diff --git a/test/fixtures/es-module-loaders/loader-load-next-modified.mjs b/test/fixtures/es-module-loaders/loader-load-next-modified.mjs new file mode 100644 index 00000000000000..1f2382467f7122 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-next-modified.mjs @@ -0,0 +1,11 @@ +export async function load(url, context, next) { + const { + format, + source, + } = await next(url, context); + + return { + format, + source: source + 1, + }; +} diff --git a/test/fixtures/es-module-loaders/loader-load-passing-modified-context.mjs b/test/fixtures/es-module-loaders/loader-load-passing-modified-context.mjs new file mode 100644 index 00000000000000..7676be766af575 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-passing-modified-context.mjs @@ -0,0 +1,6 @@ +export async function load(url, context, next) { + return next(url, { + ...context, + foo: 'bar', + }); +} diff --git a/test/fixtures/es-module-loaders/loader-load-passthru.mjs b/test/fixtures/es-module-loaders/loader-load-passthru.mjs new file mode 100644 index 00000000000000..8cfbcb6a3a5d0b --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-passthru.mjs @@ -0,0 +1,4 @@ +export async function load(url, context, next) { + console.log('load passthru'); // This log is deliberate + return next(url, context); +} diff --git a/test/fixtures/es-module-loaders/loader-load-receiving-modified-context.mjs b/test/fixtures/es-module-loaders/loader-load-receiving-modified-context.mjs new file mode 100644 index 00000000000000..2d7bc350bd8775 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-load-receiving-modified-context.mjs @@ -0,0 +1,4 @@ +export async function load(url, context, next) { + console.log(context.foo); // This log is deliberate + return next(url, context); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-42.mjs b/test/fixtures/es-module-loaders/loader-resolve-42.mjs new file mode 100644 index 00000000000000..f4dffd70fc94ad --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-42.mjs @@ -0,0 +1,4 @@ +export async function resolve(specifier, context, next) { + console.log('resolve 42'); // This log is deliberate + return next('file:///42.mjs', context); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-bad-next-context.mjs b/test/fixtures/es-module-loaders/loader-resolve-bad-next-context.mjs new file mode 100644 index 00000000000000..881f5875dd0206 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-bad-next-context.mjs @@ -0,0 +1,3 @@ +export async function resolve(specifier, context, next) { + return next(specifier, []); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-bad-next-specifier.mjs b/test/fixtures/es-module-loaders/loader-resolve-bad-next-specifier.mjs new file mode 100644 index 00000000000000..a23785d3d956db --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-bad-next-specifier.mjs @@ -0,0 +1,3 @@ +export async function resolve(specifier, context, next) { + return next([], context); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-foo.mjs b/test/fixtures/es-module-loaders/loader-resolve-foo.mjs new file mode 100644 index 00000000000000..595385e12a0cf7 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-foo.mjs @@ -0,0 +1,4 @@ +export async function resolve(specifier, context, next) { + console.log('resolve foo'); // This log is deliberate + return next('file:///foo.mjs', context); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-incomplete.mjs b/test/fixtures/es-module-loaders/loader-resolve-incomplete.mjs new file mode 100644 index 00000000000000..9eb1617f30130e --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-incomplete.mjs @@ -0,0 +1,5 @@ +export async function resolve() { + return { + url: 'file:///incomplete-resolve-chain.js', + }; +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-next-modified.mjs b/test/fixtures/es-module-loaders/loader-resolve-next-modified.mjs new file mode 100644 index 00000000000000..a973345a82ff21 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-next-modified.mjs @@ -0,0 +1,11 @@ +export async function resolve(url, context, next) { + const { + format, + url: nextUrl, + } = await next(url, context); + + return { + format, + url: `${nextUrl}?foo`, + }; +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-passing-modified-context.mjs b/test/fixtures/es-module-loaders/loader-resolve-passing-modified-context.mjs new file mode 100644 index 00000000000000..6a92a6cd8f6a8e --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-passing-modified-context.mjs @@ -0,0 +1,6 @@ +export async function resolve(specifier, context, next) { + return next(specifier, { + ...context, + foo: 'bar', + }); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-passthru.mjs b/test/fixtures/es-module-loaders/loader-resolve-passthru.mjs new file mode 100644 index 00000000000000..1a373bab90ba57 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-passthru.mjs @@ -0,0 +1,4 @@ +export async function resolve(specifier, context, next) { + console.log('resolve passthru'); // This log is deliberate + return next(specifier, context); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-receiving-modified-context.mjs b/test/fixtures/es-module-loaders/loader-resolve-receiving-modified-context.mjs new file mode 100644 index 00000000000000..83aa83104e96e4 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-receiving-modified-context.mjs @@ -0,0 +1,4 @@ +export async function resolve(specifier, context, next) { + console.log(context.foo); // This log is deliberate + return next(specifier, context); +} diff --git a/test/fixtures/es-module-loaders/loader-resolve-shortcircuit.mjs b/test/fixtures/es-module-loaders/loader-resolve-shortcircuit.mjs new file mode 100644 index 00000000000000..d886b3dfcbf237 --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-shortcircuit.mjs @@ -0,0 +1,6 @@ +export async function resolve(specifier) { + return { + shortCircuit: true, + url: specifier, + } +} diff --git a/test/fixtures/es-module-loaders/mock-loader.mjs b/test/fixtures/es-module-loaders/mock-loader.mjs index 7c4592aca96834..062be39603e851 100644 --- a/test/fixtures/es-module-loaders/mock-loader.mjs +++ b/test/fixtures/es-module-loaders/mock-loader.mjs @@ -171,6 +171,7 @@ export function globalPreload({port}) { export async function resolve(specifier, context, defaultResolve) { if (specifier === 'node:mock') { return { + shortCircuit: true, url: specifier }; } @@ -180,10 +181,12 @@ export async function resolve(specifier, context, defaultResolve) { // Do nothing, let it get the "real" module } else if (mockedModuleExports.has(def.url)) { return { + shortCircuit: true, url: `mock-facade:${currentMockVersion}:${encodeURIComponent(def.url)}` }; }; return { + shortCircuit: true, url: def.url, }; } @@ -196,6 +199,7 @@ export async function load(url, context, defaultLoad) { * channel with preloadCode */ return { + shortCircuit: true, source: 'export default import.meta.doMock', format: 'module' }; @@ -210,6 +214,7 @@ export async function load(url, context, defaultLoad) { decodeURIComponent(encodedTargetURL) )); return { + shortCircuit: true, source: ret, format: 'module' }; diff --git a/test/fixtures/es-module-loaders/string-sources.mjs b/test/fixtures/es-module-loaders/string-sources.mjs index 384098d6d9e822..1fc2b7a8d6f7e3 100644 --- a/test/fixtures/es-module-loaders/string-sources.mjs +++ b/test/fixtures/es-module-loaders/string-sources.mjs @@ -22,7 +22,11 @@ const SOURCES = { } export function resolve(specifier, context, next) { if (specifier.startsWith('test:')) { - return { url: specifier, importAssertions: context.importAssertions }; + return { + importAssertions: context.importAssertions, + shortCircuit: true, + url: specifier, + }; } return next(specifier, context); } @@ -31,6 +35,7 @@ export function load(href, context, next) { if (href.startsWith('test:')) { return { format: 'module', + shortCircuit: true, source: SOURCES[href], }; } diff --git a/test/parallel/test-module-main-fail.js b/test/parallel/test-module-main-fail.js index c66b6f2f7a843f..2b6f188dd4cbee 100644 --- a/test/parallel/test-module-main-fail.js +++ b/test/parallel/test-module-main-fail.js @@ -10,7 +10,10 @@ for (const entryPoint of entryPoints) { try { execFileSync(node, [entryPoint], { stdio: 'pipe' }); } catch (e) { - assert(e.toString().match(/Error: Cannot find module/)); + const error = e.toString(); + assert.match(error, /MODULE_NOT_FOUND/); + assert.match(error, /Cannot find module/); + assert(error.includes(entryPoint)); continue; } assert.fail('Executing node with inexistent entry point should ' + From 254efd9e3ba654629cb07f451c92337c1d0c3d84 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Wed, 25 May 2022 16:40:28 +0200 Subject: [PATCH 002/175] esm: fix http(s) import via custom loader PR-URL: https://github.com/nodejs/node/pull/43130 Reviewed-By: Geoffrey Booth Reviewed-By: Guy Bedford Reviewed-By: Antoine du Hamel --- lib/internal/modules/esm/fetch_module.js | 13 +++- lib/internal/modules/esm/loader.js | 37 ++++++---- lib/internal/modules/esm/module_job.js | 6 +- .../test-esm-loader-http-imports.mjs | 72 +++++++++++++++++++ .../es-module-loaders/http-loader.mjs | 40 +++++++++++ 5 files changed, 154 insertions(+), 14 deletions(-) create mode 100644 test/es-module/test-esm-loader-http-imports.mjs create mode 100644 test/fixtures/es-module-loaders/http-loader.mjs diff --git a/lib/internal/modules/esm/fetch_module.js b/lib/internal/modules/esm/fetch_module.js index f6c2fc8827aa73..eeca8fc5e8edcc 100644 --- a/lib/internal/modules/esm/fetch_module.js +++ b/lib/internal/modules/esm/fetch_module.js @@ -238,6 +238,17 @@ function fetchModule(parsed, { parentURL }) { return fetchWithRedirects(parsed); } +/** + * Checks if the given canonical URL exists in the fetch cache + * + * @param {string} key + * @returns {boolean} + */ +function inFetchCache(key) { + return cacheForGET.has(key); +} + module.exports = { - fetchModule: fetchModule, + fetchModule, + inFetchCache, }; diff --git a/lib/internal/modules/esm/loader.js b/lib/internal/modules/esm/loader.js index 8bc22ef697db3e..c867595bccc9e2 100644 --- a/lib/internal/modules/esm/loader.js +++ b/lib/internal/modules/esm/loader.js @@ -57,6 +57,7 @@ const { translators } = require( const { getOptionValue } = require('internal/options'); const { fetchModule, + inFetchCache, } = require('internal/modules/esm/fetch_module'); @@ -338,23 +339,35 @@ class ESMLoader { * would have a cache key of https://example.com/foo and baseURL * of https://example.com/bar * - * MUST BE SYNCHRONOUS for import.meta initialization - * MUST BE CALLED AFTER receiving the url body due to I/O - * @param {string} url - * @returns {string} + * ! MUST BE SYNCHRONOUS for import.meta initialization + * ! MUST BE CALLED AFTER receiving the url body due to I/O + * @param {URL['href']} url + * @returns {string|Promise} */ getBaseURL(url) { - if ( + if (getOptionValue('--experimental-network-imports') && ( StringPrototypeStartsWith(url, 'http:') || StringPrototypeStartsWith(url, 'https:') - ) { - // The request & response have already settled, so they are in - // fetchModule's cache, in which case, fetchModule returns + )) { + // When using network-imports, the request & response have already settled + // so they are in fetchModule's cache, in which case, fetchModule returns // immediately and synchronously - url = fetchModule(new URL(url), { parentURL: url }).resolvedHREF; - // This should only occur if the module hasn't been fetched yet - if (typeof url !== 'string') { // [2] - throw new ERR_INTERNAL_ASSERTION(`Base url for module ${url} not loaded.`); + // Unless a custom loader bypassed the fetch cache, in which case we just + // use the original url + if (inFetchCache(url)) { + const module = fetchModule(new URL(url), { parentURL: url }); + if (typeof module?.resolvedHREF === 'string') { + return module.resolvedHREF; + } + // Internal error + throw new ERR_INTERNAL_ASSERTION( + `Base url for module ${url} not loaded.` + ); + } else { + // A custom loader was used instead of network-imports. + // Adding support for a response URL resolve return in custom loaders is + // pending. + return url; } } return url; diff --git a/lib/internal/modules/esm/module_job.js b/lib/internal/modules/esm/module_job.js index e012eebc4ac971..d654958ad14cfd 100644 --- a/lib/internal/modules/esm/module_job.js +++ b/lib/internal/modules/esm/module_job.js @@ -76,7 +76,11 @@ class ModuleJob { // these `link` callbacks depending on each other. const dependencyJobs = []; const promises = this.module.link(async (specifier, assertions) => { - const baseURL = this.loader.getBaseURL(url); + const base = await this.loader.getBaseURL(url); + const baseURL = typeof base === 'string' ? + base : + base.resolvedHREF; + const jobPromise = this.loader.getModuleJob(specifier, baseURL, assertions); ArrayPrototypePush(dependencyJobs, jobPromise); const job = await jobPromise; diff --git a/test/es-module/test-esm-loader-http-imports.mjs b/test/es-module/test-esm-loader-http-imports.mjs new file mode 100644 index 00000000000000..5f6cc47f388271 --- /dev/null +++ b/test/es-module/test-esm-loader-http-imports.mjs @@ -0,0 +1,72 @@ +import { mustCall } from '../common/index.mjs'; +import fixtures from '../common/fixtures.js'; +import { strictEqual } from 'node:assert'; +import { spawn } from 'node:child_process'; +import http from 'node:http'; +import path from 'node:path'; +import { promisify } from 'node:util'; + + +const files = { + 'main.mjs': 'export * from "./lib.mjs";', + 'lib.mjs': 'export { sum } from "./sum.mjs";', + 'sum.mjs': 'export function sum(a, b) { return a + b }', +}; + +const requestListener = ({ url }, rsp) => { + const filename = path.basename(url); + const content = files[filename]; + + if (content) { + return rsp + .writeHead(200, { 'Content-Type': 'application/javascript' }) + .end(content); + } + + return rsp + .writeHead(404) + .end(); +}; + +const server = http.createServer(requestListener); + +await promisify(server.listen.bind(server))({ + host: '127.0.0.1', + port: 0, +}); + +const { + address: host, + port, +} = server.address(); + +{ // Verify nested HTTP imports work + const child = spawn( // ! `spawn` MUST be used (vs `spawnSync`) to avoid blocking the event loop + process.execPath, + [ + '--no-warnings', + '--loader', + fixtures.fileURL('es-module-loaders', 'http-loader.mjs'), + '--input-type=module', + '--eval', + `import * as main from 'http://${host}:${port}/main.mjs'; console.log(main)`, + ] + ); + + let stderr = ''; + let stdout = ''; + + child.stderr.setEncoding('utf8'); + child.stderr.on('data', (data) => stderr += data); + child.stdout.setEncoding('utf8'); + child.stdout.on('data', (data) => stdout += data); + + child.on('close', mustCall((code, signal) => { + strictEqual(stderr, ''); + strictEqual(stdout, '[Module: null prototype] { sum: [Function: sum] }\n'); + strictEqual(code, 0); + strictEqual(signal, null); + + server.close(); + })); +} diff --git a/test/fixtures/es-module-loaders/http-loader.mjs b/test/fixtures/es-module-loaders/http-loader.mjs new file mode 100644 index 00000000000000..f0add5d5b419f8 --- /dev/null +++ b/test/fixtures/es-module-loaders/http-loader.mjs @@ -0,0 +1,40 @@ +import { get } from 'http'; + +export function resolve(specifier, context, nextResolve) { + const { parentURL = null } = context; + + if (specifier.startsWith('http://')) { + return { + shortCircuit: true, + url: specifier, + }; + } else if (parentURL?.startsWith('http://')) { + return { + shortCircuit: true, + url: new URL(specifier, parentURL).href, + }; + } + + return nextResolve(specifier, context); +} + +export function load(url, context, nextLoad) { + if (url.startsWith('http://')) { + return new Promise((resolve, reject) => { + get(url, (rsp) => { + let data = ''; + rsp.on('data', (chunk) => data += chunk); + rsp.on('end', () => { + resolve({ + format: 'module', + shortCircuit: true, + source: data, + }); + }); + }) + .on('error', reject); + }); + } + + return nextLoad(url, context); +} From 50d64edd49805a0a26414511e165aad179cd488c Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Fri, 20 May 2022 17:52:16 -0700 Subject: [PATCH 003/175] esm: refactor responseURL handling PR-URL: https://github.com/nodejs/node/pull/43164 Reviewed-By: Antoine du Hamel Reviewed-By: Minwoo Jung Reviewed-By: Jacob Smith --- lib/internal/modules/cjs/loader.js | 6 +- lib/internal/modules/esm/fetch_module.js | 11 --- lib/internal/modules/esm/get_source.js | 60 ------------- .../modules/esm/initialize_import_meta.js | 4 +- lib/internal/modules/esm/load.js | 65 +++++++++++++- lib/internal/modules/esm/loader.js | 89 ++++++------------- lib/internal/modules/esm/module_job.js | 7 +- lib/internal/modules/esm/translators.js | 8 +- test/parallel/test-bootstrap-modules.js | 1 - 9 files changed, 97 insertions(+), 154 deletions(-) delete mode 100644 lib/internal/modules/esm/get_source.js diff --git a/lib/internal/modules/cjs/loader.js b/lib/internal/modules/cjs/loader.js index 66f8e5f98ca891..34327a70045fca 100644 --- a/lib/internal/modules/cjs/loader.js +++ b/lib/internal/modules/cjs/loader.js @@ -1030,8 +1030,7 @@ function wrapSafe(filename, content, cjsModuleInstance) { displayErrors: true, importModuleDynamically: async (specifier, _, importAssertions) => { const loader = asyncESM.esmLoader; - return loader.import(specifier, - loader.getBaseURL(normalizeReferrerURL(filename)), + return loader.import(specifier, normalizeReferrerURL(filename), importAssertions); }, }); @@ -1047,8 +1046,7 @@ function wrapSafe(filename, content, cjsModuleInstance) { filename, importModuleDynamically(specifier, _, importAssertions) { const loader = asyncESM.esmLoader; - return loader.import(specifier, - loader.getBaseURL(normalizeReferrerURL(filename)), + return loader.import(specifier, normalizeReferrerURL(filename), importAssertions); }, }); diff --git a/lib/internal/modules/esm/fetch_module.js b/lib/internal/modules/esm/fetch_module.js index eeca8fc5e8edcc..c65587e34c488f 100644 --- a/lib/internal/modules/esm/fetch_module.js +++ b/lib/internal/modules/esm/fetch_module.js @@ -238,17 +238,6 @@ function fetchModule(parsed, { parentURL }) { return fetchWithRedirects(parsed); } -/** - * Checks if the given canonical URL exists in the fetch cache - * - * @param {string} key - * @returns {boolean} - */ -function inFetchCache(key) { - return cacheForGET.has(key); -} - module.exports = { fetchModule, - inFetchCache, }; diff --git a/lib/internal/modules/esm/get_source.js b/lib/internal/modules/esm/get_source.js deleted file mode 100644 index ab2a9888f76fe7..00000000000000 --- a/lib/internal/modules/esm/get_source.js +++ /dev/null @@ -1,60 +0,0 @@ -'use strict'; - -const { - ArrayPrototypeConcat, - RegExpPrototypeExec, - decodeURIComponent, -} = primordials; -const { getOptionValue } = require('internal/options'); -const { fetchModule } = require('internal/modules/esm/fetch_module'); - -// Do not eagerly grab .manifest, it may be in TDZ -const policy = getOptionValue('--experimental-policy') ? - require('internal/process/policy') : - null; -const experimentalNetworkImports = - getOptionValue('--experimental-network-imports'); - -const { Buffer: { from: BufferFrom } } = require('buffer'); - -const fs = require('internal/fs/promises').exports; -const { URL } = require('internal/url'); -const { - ERR_INVALID_URL, - ERR_UNSUPPORTED_ESM_URL_SCHEME, -} = require('internal/errors').codes; -const readFileAsync = fs.readFile; - -const DATA_URL_PATTERN = /^[^/]+\/[^,;]+(?:[^,]*?)(;base64)?,([\s\S]*)$/; - -async function defaultGetSource(url, context, defaultGetSource) { - const parsed = new URL(url); - let source; - if (parsed.protocol === 'file:') { - source = await readFileAsync(parsed); - } else if (parsed.protocol === 'data:') { - const match = RegExpPrototypeExec(DATA_URL_PATTERN, parsed.pathname); - if (!match) { - throw new ERR_INVALID_URL(url); - } - const { 1: base64, 2: body } = match; - source = BufferFrom(decodeURIComponent(body), base64 ? 'base64' : 'utf8'); - } else if (experimentalNetworkImports && ( - parsed.protocol === 'https:' || - parsed.protocol === 'http:' - )) { - const res = await fetchModule(parsed, context); - source = await res.body; - } else { - throw new ERR_UNSUPPORTED_ESM_URL_SCHEME(parsed, ArrayPrototypeConcat([ - 'file', - 'data', - experimentalNetworkImports ? ['https', 'http'] : [], - ])); - } - if (policy?.manifest) { - policy.manifest.assertIntegrity(parsed, source); - } - return source; -} -exports.defaultGetSource = defaultGetSource; diff --git a/lib/internal/modules/esm/initialize_import_meta.js b/lib/internal/modules/esm/initialize_import_meta.js index f1daabbb6425aa..d6be06f23e1493 100644 --- a/lib/internal/modules/esm/initialize_import_meta.js +++ b/lib/internal/modules/esm/initialize_import_meta.js @@ -26,15 +26,13 @@ function createImportMetaResolve(defaultParentUrl) { * @param {{url: string}} context */ function initializeImportMeta(meta, context) { - let url = context.url; + const { url } = context; // Alphabetical if (experimentalImportMetaResolve) { meta.resolve = createImportMetaResolve(url); } - url = asyncESM.esmLoader.getBaseURL(url); - meta.url = url; } diff --git a/lib/internal/modules/esm/load.js b/lib/internal/modules/esm/load.js index 6defb598a2abf7..86b31830457240 100644 --- a/lib/internal/modules/esm/load.js +++ b/lib/internal/modules/esm/load.js @@ -1,8 +1,67 @@ 'use strict'; +const { + ArrayPrototypePush, + RegExpPrototypeExec, + decodeURIComponent, +} = primordials; + const { defaultGetFormat } = require('internal/modules/esm/get_format'); -const { defaultGetSource } = require('internal/modules/esm/get_source'); const { validateAssertions } = require('internal/modules/esm/assert'); +const { getOptionValue } = require('internal/options'); +const { fetchModule } = require('internal/modules/esm/fetch_module'); + +// Do not eagerly grab .manifest, it may be in TDZ +const policy = getOptionValue('--experimental-policy') ? + require('internal/process/policy') : + null; +const experimentalNetworkImports = + getOptionValue('--experimental-network-imports'); + +const { Buffer: { from: BufferFrom } } = require('buffer'); + +const { readFile: readFileAsync } = require('internal/fs/promises').exports; +const { URL } = require('internal/url'); +const { + ERR_INVALID_URL, + ERR_UNSUPPORTED_ESM_URL_SCHEME, +} = require('internal/errors').codes; + +const DATA_URL_PATTERN = /^[^/]+\/[^,;]+(?:[^,]*?)(;base64)?,([\s\S]*)$/; + +async function getSource(url, context) { + const parsed = new URL(url); + let responseURL = url; + let source; + if (parsed.protocol === 'file:') { + source = await readFileAsync(parsed); + } else if (parsed.protocol === 'data:') { + const match = RegExpPrototypeExec(DATA_URL_PATTERN, parsed.pathname); + if (!match) { + throw new ERR_INVALID_URL(url); + } + const { 1: base64, 2: body } = match; + source = BufferFrom(decodeURIComponent(body), base64 ? 'base64' : 'utf8'); + } else if (experimentalNetworkImports && ( + parsed.protocol === 'https:' || + parsed.protocol === 'http:' + )) { + const res = await fetchModule(parsed, context); + source = await res.body; + responseURL = res.resolvedHREF; + } else { + const supportedSchemes = ['file', 'data']; + if (experimentalNetworkImports) { + ArrayPrototypePush(supportedSchemes, 'http', 'https'); + } + throw new ERR_UNSUPPORTED_ESM_URL_SCHEME(parsed, supportedSchemes); + } + if (policy?.manifest) { + policy.manifest.assertIntegrity(parsed, source); + } + return { responseURL, source }; +} + /** * Node.js default load hook. @@ -11,6 +70,7 @@ const { validateAssertions } = require('internal/modules/esm/assert'); * @returns {object} */ async function defaultLoad(url, context) { + let responseURL = url; const { importAssertions } = context; let { format, @@ -29,11 +89,12 @@ async function defaultLoad(url, context) { ) { source = null; } else if (source == null) { - source = await defaultGetSource(url, context); + ({ responseURL, source } = await getSource(url, context)); } return { format, + responseURL, source, }; } diff --git a/lib/internal/modules/esm/loader.js b/lib/internal/modules/esm/loader.js index c867595bccc9e2..c16f9122f1d0e6 100644 --- a/lib/internal/modules/esm/loader.js +++ b/lib/internal/modules/esm/loader.js @@ -17,14 +17,12 @@ const { RegExpPrototypeExec, SafeArrayIterator, SafeWeakMap, - StringPrototypeStartsWith, globalThis, } = primordials; const { MessageChannel } = require('internal/worker/io'); const { ERR_LOADER_CHAIN_INCOMPLETE, - ERR_INTERNAL_ASSERTION, ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, ERR_INVALID_RETURN_PROPERTY_VALUE, @@ -55,11 +53,6 @@ const { defaultLoad } = require('internal/modules/esm/load'); const { translators } = require( 'internal/modules/esm/translators'); const { getOptionValue } = require('internal/options'); -const { - fetchModule, - inFetchCache, -} = require('internal/modules/esm/fetch_module'); - /** * @typedef {object} ExportedHooks @@ -306,9 +299,7 @@ class ESMLoader { const module = new ModuleWrap(url, undefined, source, 0, 0); callbackMap.set(module, { importModuleDynamically: (specifier, { url }, importAssertions) => { - return this.import(specifier, - this.getBaseURL(url), - importAssertions); + return this.import(specifier, url, importAssertions); } }); @@ -324,55 +315,6 @@ class ESMLoader { }; } - /** - * Returns the url to use for the resolution of a given cache key url - * These are not guaranteed to be the same. - * - * In WHATWG HTTP spec for ESM the cache key is the non-I/O bound - * synchronous resolution using only string operations - * ~= resolveImportMap(new URL(specifier, importerHREF)) - * - * The url used for subsequent resolution is the response URL after - * all redirects have been resolved. - * - * https://example.com/foo redirecting to https://example.com/bar - * would have a cache key of https://example.com/foo and baseURL - * of https://example.com/bar - * - * ! MUST BE SYNCHRONOUS for import.meta initialization - * ! MUST BE CALLED AFTER receiving the url body due to I/O - * @param {URL['href']} url - * @returns {string|Promise} - */ - getBaseURL(url) { - if (getOptionValue('--experimental-network-imports') && ( - StringPrototypeStartsWith(url, 'http:') || - StringPrototypeStartsWith(url, 'https:') - )) { - // When using network-imports, the request & response have already settled - // so they are in fetchModule's cache, in which case, fetchModule returns - // immediately and synchronously - // Unless a custom loader bypassed the fetch cache, in which case we just - // use the original url - if (inFetchCache(url)) { - const module = fetchModule(new URL(url), { parentURL: url }); - if (typeof module?.resolvedHREF === 'string') { - return module.resolvedHREF; - } - // Internal error - throw new ERR_INTERNAL_ASSERTION( - `Base url for module ${url} not loaded.` - ); - } else { - // A custom loader was used instead of network-imports. - // Adding support for a response URL resolve return in custom loaders is - // pending. - return url; - } - } - return url; - } - /** * Get a (possibly still pending) module job from the cache, * or create one and return its Promise. @@ -431,6 +373,7 @@ class ESMLoader { const moduleProvider = async (url, isMain) => { const { format: finalFormat, + responseURL, source, } = await this.load(url, { format, @@ -440,10 +383,10 @@ class ESMLoader { const translator = translators.get(finalFormat); if (!translator) { - throw new ERR_UNKNOWN_MODULE_FORMAT(finalFormat, url); + throw new ERR_UNKNOWN_MODULE_FORMAT(finalFormat, responseURL); } - return FunctionPrototypeCall(translator, this, url, source, isMain); + return FunctionPrototypeCall(translator, this, responseURL, source, isMain); }; const inspectBrk = ( @@ -607,6 +550,29 @@ class ESMLoader { format, source, } = loaded; + let responseURL = loaded.responseURL; + + if (responseURL === undefined) { + responseURL = url; + } + + let responseURLObj; + if (typeof responseURL === 'string') { + try { + responseURLObj = new URL(responseURL); + } catch { + // responseURLObj not defined will throw in next branch. + } + } + + if (responseURLObj?.href !== responseURL) { + throw new ERR_INVALID_RETURN_PROPERTY_VALUE( + 'undefined or a fully resolved URL string', + hookErrIdentifier, + 'responseURL', + responseURL, + ); + } if (format == null) { const dataUrl = RegExpPrototypeExec( @@ -644,6 +610,7 @@ class ESMLoader { return { format, + responseURL, source, }; } diff --git a/lib/internal/modules/esm/module_job.js b/lib/internal/modules/esm/module_job.js index d654958ad14cfd..fd1c6166330e76 100644 --- a/lib/internal/modules/esm/module_job.js +++ b/lib/internal/modules/esm/module_job.js @@ -76,12 +76,7 @@ class ModuleJob { // these `link` callbacks depending on each other. const dependencyJobs = []; const promises = this.module.link(async (specifier, assertions) => { - const base = await this.loader.getBaseURL(url); - const baseURL = typeof base === 'string' ? - base : - base.resolvedHREF; - - const jobPromise = this.loader.getModuleJob(specifier, baseURL, assertions); + const jobPromise = this.loader.getModuleJob(specifier, url, assertions); ArrayPrototypePush(dependencyJobs, jobPromise); const job = await jobPromise; return job.modulePromise; diff --git a/lib/internal/modules/esm/translators.js b/lib/internal/modules/esm/translators.js index d7f4c7edec63d3..bcd1775bac898e 100644 --- a/lib/internal/modules/esm/translators.js +++ b/lib/internal/modules/esm/translators.js @@ -103,9 +103,7 @@ function errPath(url) { } async function importModuleDynamically(specifier, { url }, assertions) { - return asyncESM.esmLoader.import(specifier, - asyncESM.esmLoader.getBaseURL(url), - assertions); + return asyncESM.esmLoader.import(specifier, url, assertions); } // Strategy for loading a standard JavaScript module. @@ -116,9 +114,7 @@ translators.set('module', async function moduleStrategy(url, source, isMain) { debug(`Translating StandardModule ${url}`); const module = new ModuleWrap(url, undefined, source, 0, 0); moduleWrap.callbackMap.set(module, { - initializeImportMeta: (meta, wrap) => this.importMetaInitialize(meta, { - url: wrap.url - }), + initializeImportMeta: (meta, wrap) => this.importMetaInitialize(meta, { url }), importModuleDynamically, }); return module; diff --git a/test/parallel/test-bootstrap-modules.js b/test/parallel/test-bootstrap-modules.js index 9b9dc5c18590cd..703fbc6f10af3a 100644 --- a/test/parallel/test-bootstrap-modules.js +++ b/test/parallel/test-bootstrap-modules.js @@ -78,7 +78,6 @@ const expectedModules = new Set([ 'NativeModule internal/modules/esm/fetch_module', 'NativeModule internal/modules/esm/formats', 'NativeModule internal/modules/esm/get_format', - 'NativeModule internal/modules/esm/get_source', 'NativeModule internal/modules/esm/handle_process_exit', 'NativeModule internal/modules/esm/initialize_import_meta', 'NativeModule internal/modules/esm/load', From 10bcad5c6e5e0b17fd8f7492335cbb3378a871c5 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Sun, 5 Jun 2022 19:33:46 +0200 Subject: [PATCH 004/175] esm: fix chain advances when loader calls next multiple times PR-URL: https://github.com/nodejs/node/pull/43303 Reviewed-By: Geoffrey Booth Reviewed-By: Antoine du Hamel --- lib/internal/errors.js | 2 +- lib/internal/modules/esm/loader.js | 191 +++++++++++------- lib/internal/modules/esm/resolve.js | 2 +- test/es-module/test-esm-loader-chaining.mjs | 101 ++++++--- .../es-module-loaders/loader-resolve-42.mjs | 2 + .../loader-resolve-multiple-next-calls.mjs | 9 + 6 files changed, 198 insertions(+), 109 deletions(-) create mode 100644 test/fixtures/es-module-loaders/loader-resolve-multiple-next-calls.mjs diff --git a/lib/internal/errors.js b/lib/internal/errors.js index cf54bbe6fb35e1..306dcbad998134 100644 --- a/lib/internal/errors.js +++ b/lib/internal/errors.js @@ -1372,7 +1372,7 @@ E('ERR_IPC_ONE_PIPE', 'Child process can have only one IPC pipe', Error); E('ERR_IPC_SYNC_FORK', 'IPC cannot be used with synchronous forks', Error); E( 'ERR_LOADER_CHAIN_INCOMPLETE', - 'The "%s" hook from %s did not call the next hook in its chain and did not' + + '"%s" did not call the next hook in its chain and did not' + ' explicitly signal a short circuit. If this is intentional, include' + ' `shortCircuit: true` in the hook\'s return.', Error diff --git a/lib/internal/modules/esm/loader.js b/lib/internal/modules/esm/loader.js index c16f9122f1d0e6..f81ffa8e31cf22 100644 --- a/lib/internal/modules/esm/loader.js +++ b/lib/internal/modules/esm/loader.js @@ -12,17 +12,22 @@ const { FunctionPrototypeCall, ObjectAssign, ObjectCreate, + ObjectDefineProperty, ObjectSetPrototypeOf, PromiseAll, + ReflectApply, RegExpPrototypeExec, SafeArrayIterator, SafeWeakMap, + StringPrototypeSlice, + StringPrototypeToUpperCase, globalThis, } = primordials; const { MessageChannel } = require('internal/worker/io'); const { ERR_LOADER_CHAIN_INCOMPLETE, + ERR_INTERNAL_ASSERTION, ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, ERR_INVALID_RETURN_PROPERTY_VALUE, @@ -89,6 +94,81 @@ const { getOptionValue } = require('internal/options'); let emittedSpecifierResolutionWarning = false; +/** + * A utility function to iterate through a hook chain, track advancement in the + * chain, and generate and supply the `next` argument to the custom + * hook. + * @param {KeyedHook[]} chain The whole hook chain. + * @param {object} meta Properties that change as the current hook advances + * along the chain. + * @param {boolean} meta.chainFinished Whether the end of the chain has been + * reached AND invoked. + * @param {string} meta.hookErrIdentifier A user-facing identifier to help + * pinpoint where an error occurred. Ex "file:///foo.mjs 'resolve'". + * @param {number} meta.hookIndex A non-negative integer tracking the current + * position in the hook chain. + * @param {string} meta.hookName The kind of hook the chain is (ex 'resolve') + * @param {boolean} meta.shortCircuited Whether a hook signaled a short-circuit. + * @param {(hookErrIdentifier, hookArgs) => void} validate A wrapper function + * containing all validation of a custom loader hook's intermediary output. Any + * validation within MUST throw. + * @returns {function next(...hookArgs)} The next hook in the chain. + */ +function nextHookFactory(chain, meta, validate) { + // First, prepare the current + const { hookName } = meta; + const { + fn: hook, + url: hookFilePath, + } = chain[meta.hookIndex]; + + // ex 'nextResolve' + const nextHookName = `next${ + StringPrototypeToUpperCase(hookName[0]) + + StringPrototypeSlice(hookName, 1) + }`; + + // When hookIndex is 0, it's reached the default, which does not call next() + // so feed it a noop that blows up if called, so the problem is obvious. + const generatedHookIndex = meta.hookIndex; + let nextNextHook; + if (meta.hookIndex > 0) { + // Now, prepare the next: decrement the pointer so the next call to the + // factory generates the next link in the chain. + meta.hookIndex--; + + nextNextHook = nextHookFactory(chain, meta, validate); + } else { + // eslint-disable-next-line func-name-matching + nextNextHook = function chainAdvancedTooFar() { + throw new ERR_INTERNAL_ASSERTION( + `ESM custom loader '${hookName}' advanced beyond the end of the chain.` + ); + }; + } + + return ObjectDefineProperty( + async (...args) => { + // Update only when hook is invoked to avoid fingering the wrong filePath + meta.hookErrIdentifier = `${hookFilePath} '${hookName}'`; + + validate(`${meta.hookErrIdentifier} hook's ${nextHookName}()`, args); + + // Set when next is actually called, not just generated. + if (generatedHookIndex === 0) { meta.chainFinished = true; } + + ArrayPrototypePush(args, nextNextHook); + const output = await ReflectApply(hook, undefined, args); + + if (output?.shortCircuit === true) { meta.shortCircuited = true; } + return output; + + }, + 'name', + { __proto__: null, value: nextHookName }, + ); +} + /** * An ESMLoader instance is used as the main entry point for loading ES modules. * Currently, this is a singleton -- there is only one used for loading @@ -471,32 +551,21 @@ class ESMLoader { * @returns {{ format: ModuleFormat, source: ModuleSource }} */ async load(url, context = {}) { - const loaders = this.#loaders; - let hookIndex = loaders.length - 1; - let { - fn: loader, - url: loaderFilePath, - } = loaders[hookIndex]; - let chainFinished = hookIndex === 0; - let shortCircuited = false; - - const nextLoad = async (nextUrl, ctx = context) => { - --hookIndex; // `nextLoad` has been called, so decrement our pointer. - - ({ - fn: loader, - url: loaderFilePath, - } = loaders[hookIndex]); - - if (hookIndex === 0) { chainFinished = true; } - - const hookErrIdentifier = `${loaderFilePath} "load"`; + const chain = this.#loaders; + const meta = { + chainFinished: null, + hookErrIdentifier: '', + hookIndex: chain.length - 1, + hookName: 'load', + shortCircuited: false, + }; + const validate = (hookErrIdentifier, { 0: nextUrl, 1: ctx }) => { if (typeof nextUrl !== 'string') { // non-strings can be coerced to a url string // validateString() throws a less-specific error throw new ERR_INVALID_ARG_TYPE( - `${hookErrIdentifier} nextLoad(url)`, + `${hookErrIdentifier} url`, 'a url string', nextUrl, ); @@ -508,29 +577,20 @@ class ESMLoader { new URL(nextUrl); } catch { throw new ERR_INVALID_ARG_VALUE( - `${hookErrIdentifier} nextLoad(url)`, + `${hookErrIdentifier} url`, nextUrl, 'should be a url string', ); } } - validateObject(ctx, `${hookErrIdentifier} nextLoad(, context)`); - - const output = await loader(nextUrl, ctx, nextLoad); - - if (output?.shortCircuit === true) { shortCircuited = true; } - - return output; + validateObject(ctx, `${hookErrIdentifier} context`); }; - const loaded = await loader( - url, - context, - nextLoad, - ); + const nextLoad = nextHookFactory(chain, meta, validate); - const hookErrIdentifier = `${loaderFilePath} load`; + const loaded = await nextLoad(url, context); + const { hookErrIdentifier } = meta; // Retrieve the value after all settled if (typeof loaded !== 'object') { // [2] throw new ERR_INVALID_RETURN_VALUE( @@ -540,10 +600,10 @@ class ESMLoader { ); } - if (loaded?.shortCircuit === true) { shortCircuited = true; } + if (loaded?.shortCircuit === true) { meta.shortCircuited = true; } - if (!chainFinished && !shortCircuited) { - throw new ERR_LOADER_CHAIN_INCOMPLETE('load', loaderFilePath); + if (!meta.chainFinished && !meta.shortCircuited) { + throw new ERR_LOADER_CHAIN_INCOMPLETE(hookErrIdentifier); } const { @@ -736,55 +796,34 @@ class ESMLoader { parentURL, ); } - const resolvers = this.#resolvers; - - let hookIndex = resolvers.length - 1; - let { - fn: resolver, - url: resolverFilePath, - } = resolvers[hookIndex]; - let chainFinished = hookIndex === 0; - let shortCircuited = false; + const chain = this.#resolvers; + const meta = { + chainFinished: null, + hookErrIdentifier: '', + hookIndex: chain.length - 1, + hookName: 'resolve', + shortCircuited: false, + }; const context = { conditions: DEFAULT_CONDITIONS, importAssertions, parentURL, }; - - const nextResolve = async (suppliedSpecifier, ctx = context) => { - --hookIndex; // `nextResolve` has been called, so decrement our pointer. - - ({ - fn: resolver, - url: resolverFilePath, - } = resolvers[hookIndex]); - - if (hookIndex === 0) { chainFinished = true; } - - const hookErrIdentifier = `${resolverFilePath} "resolve"`; + const validate = (hookErrIdentifier, { 0: suppliedSpecifier, 1: ctx }) => { validateString( suppliedSpecifier, - `${hookErrIdentifier} nextResolve(specifier)`, + `${hookErrIdentifier} specifier`, ); // non-strings can be coerced to a url string - validateObject(ctx, `${hookErrIdentifier} nextResolve(, context)`); - - const output = await resolver(suppliedSpecifier, ctx, nextResolve); - - if (output?.shortCircuit === true) { shortCircuited = true; } - - return output; + validateObject(ctx, `${hookErrIdentifier} context`); }; - const resolution = await resolver( - originalSpecifier, - context, - nextResolve, - ); + const nextResolve = nextHookFactory(chain, meta, validate); - const hookErrIdentifier = `${resolverFilePath} resolve`; + const resolution = await nextResolve(originalSpecifier, context); + const { hookErrIdentifier } = meta; // Retrieve the value after all settled if (typeof resolution !== 'object') { // [2] throw new ERR_INVALID_RETURN_VALUE( @@ -794,10 +833,10 @@ class ESMLoader { ); } - if (resolution?.shortCircuit === true) { shortCircuited = true; } + if (resolution?.shortCircuit === true) { meta.shortCircuited = true; } - if (!chainFinished && !shortCircuited) { - throw new ERR_LOADER_CHAIN_INCOMPLETE('resolve', resolverFilePath); + if (!meta.chainFinished && !meta.shortCircuited) { + throw new ERR_LOADER_CHAIN_INCOMPLETE(hookErrIdentifier); } const { diff --git a/lib/internal/modules/esm/resolve.js b/lib/internal/modules/esm/resolve.js index 8767109d7c4177..79ea42233b66a0 100644 --- a/lib/internal/modules/esm/resolve.js +++ b/lib/internal/modules/esm/resolve.js @@ -1081,7 +1081,7 @@ function throwIfUnsupportedURLScheme(parsed, experimentalNetworkImports) { } } -async function defaultResolve(specifier, context = {}, defaultResolveUnused) { +async function defaultResolve(specifier, context = {}) { let { parentURL, conditions } = context; if (parentURL && policy?.manifest) { const redirects = policy.manifest.getDependencyMapper(parentURL); diff --git a/test/es-module/test-esm-loader-chaining.mjs b/test/es-module/test-esm-loader-chaining.mjs index 1055c44a156a77..977c20dbbbab37 100644 --- a/test/es-module/test-esm-loader-chaining.mjs +++ b/test/es-module/test-esm-loader-chaining.mjs @@ -25,8 +25,8 @@ const commonArgs = [ ); assert.strictEqual(stderr, ''); - assert.strictEqual(status, 0); assert.match(stdout, /number/); // node:fs is an object + assert.strictEqual(status, 0); } { // Verify loaded source is properly different when only load changes something @@ -47,8 +47,8 @@ const commonArgs = [ assert.strictEqual(stderr, ''); assert.match(stdout, /load passthru/); assert.match(stdout, /resolve passthru/); - assert.strictEqual(status, 0); assert.match(stdout, /foo/); + assert.strictEqual(status, 0); } { // Verify multiple changes from hooks result in proper output @@ -70,8 +70,8 @@ const commonArgs = [ assert.strictEqual(stderr, ''); assert.match(stdout, /resolve 42/); // It did go thru resolve-42 - assert.strictEqual(status, 0); assert.match(stdout, /foo/); // LIFO, so resolve-foo won + assert.strictEqual(status, 0); } { // Verify modifying context within resolve chain is respected @@ -117,8 +117,52 @@ const commonArgs = [ assert.strictEqual(stderr, ''); assert.match(stdout, /resolve foo/); // It did go thru resolve-foo - assert.strictEqual(status, 0); assert.match(stdout, /42/); // LIFO, so resolve-42 won + assert.strictEqual(status, 0); +} + +{ // Verify multiple calls to next within same loader receive correct "next" fn + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-shortcircuit.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-foo.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-multiple-next-calls.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + const countFoos = stdout.match(/resolve foo/g)?.length; + + assert.strictEqual(stderr, ''); + assert.strictEqual(countFoos, 2); + assert.strictEqual(status, 0); +} + +{ // Verify next function's `name` is correct + const { status, stderr, stdout } = spawnSync( + process.execPath, + [ + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-shortcircuit.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-resolve-42.mjs'), + '--loader', + fixtures.fileURL('es-module-loaders', 'loader-load-foo-or-42.mjs'), + ...commonArgs, + ], + { encoding: 'utf8' }, + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /next: nextResolve/); + assert.strictEqual(status, 0); } { // Verify error thrown for incomplete resolve chain, citing errant loader & hook @@ -137,10 +181,10 @@ const commonArgs = [ ); assert.match(stdout, /resolve passthru/); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); assert.match(stderr, /loader-resolve-incomplete\.mjs/); - assert.match(stderr, /"resolve"/); + assert.match(stderr, /'resolve'/); + assert.strictEqual(status, 1); } { // Verify error NOT thrown when nested resolve hook signaled a short circuit @@ -201,10 +245,10 @@ const commonArgs = [ ); assert.doesNotMatch(stdout, /resolve passthru/); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); assert.match(stderr, /loader-resolve-incomplete\.mjs/); - assert.match(stderr, /"resolve"/); + assert.match(stderr, /'resolve'/); + assert.strictEqual(status, 1); } { // Verify error thrown for incomplete load chain, citing errant loader & hook @@ -223,10 +267,10 @@ const commonArgs = [ ); assert.match(stdout, /load passthru/); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); assert.match(stderr, /loader-load-incomplete\.mjs/); - assert.match(stderr, /"load"/); + assert.match(stderr, /'load'/); + assert.strictEqual(status, 1); } { // Verify chain does break and throws appropriately @@ -245,13 +289,13 @@ const commonArgs = [ ); assert.doesNotMatch(stdout, /load passthru/); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_LOADER_CHAIN_INCOMPLETE/); assert.match(stderr, /loader-load-incomplete\.mjs/); - assert.match(stderr, /"load"/); + assert.match(stderr, /'load'/); + assert.strictEqual(status, 1); } -{ // Verify error thrown when invalid `specifier` argument passed to `resolve…next` +{ // Verify error thrown when invalid `specifier` argument passed to `nextResolve` const { status, stderr } = spawnSync( process.execPath, [ @@ -267,11 +311,10 @@ const commonArgs = [ assert.strictEqual(status, 1); assert.match(stderr, /ERR_INVALID_ARG_TYPE/); assert.match(stderr, /loader-resolve-bad-next-specifier\.mjs/); - assert.match(stderr, /"resolve"/); - assert.match(stderr, /nextResolve\(specifier\)/); + assert.match(stderr, /'resolve' hook's nextResolve\(\) specifier/); } -{ // Verify error thrown when invalid `context` argument passed to `resolve…next` +{ // Verify error thrown when invalid `context` argument passed to `nextResolve` const { status, stderr } = spawnSync( process.execPath, [ @@ -284,14 +327,13 @@ const commonArgs = [ { encoding: 'utf8' }, ); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_INVALID_ARG_TYPE/); assert.match(stderr, /loader-resolve-bad-next-context\.mjs/); - assert.match(stderr, /"resolve"/); - assert.match(stderr, /nextResolve\(, context\)/); + assert.match(stderr, /'resolve' hook's nextResolve\(\) context/); + assert.strictEqual(status, 1); } -{ // Verify error thrown when invalid `url` argument passed to `load…next` +{ // Verify error thrown when invalid `url` argument passed to `nextLoad` const { status, stderr } = spawnSync( process.execPath, [ @@ -304,14 +346,13 @@ const commonArgs = [ { encoding: 'utf8' }, ); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_INVALID_ARG_TYPE/); assert.match(stderr, /loader-load-bad-next-url\.mjs/); - assert.match(stderr, /"load"/); - assert.match(stderr, /nextLoad\(url\)/); + assert.match(stderr, /'load' hook's nextLoad\(\) url/); + assert.strictEqual(status, 1); } -{ // Verify error thrown when invalid `url` argument passed to `load…next` +{ // Verify error thrown when invalid `url` argument passed to `nextLoad` const { status, stderr } = spawnSync( process.execPath, [ @@ -324,14 +365,13 @@ const commonArgs = [ { encoding: 'utf8' }, ); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_INVALID_ARG_VALUE/); assert.match(stderr, /loader-load-impersonating-next-url\.mjs/); - assert.match(stderr, /"load"/); - assert.match(stderr, /nextLoad\(url\)/); + assert.match(stderr, /'load' hook's nextLoad\(\) url/); + assert.strictEqual(status, 1); } -{ // Verify error thrown when invalid `context` argument passed to `load…next` +{ // Verify error thrown when invalid `context` argument passed to `nextLoad` const { status, stderr } = spawnSync( process.execPath, [ @@ -344,9 +384,8 @@ const commonArgs = [ { encoding: 'utf8' }, ); - assert.strictEqual(status, 1); assert.match(stderr, /ERR_INVALID_ARG_TYPE/); assert.match(stderr, /loader-load-bad-next-context\.mjs/); - assert.match(stderr, /"load"/); - assert.match(stderr, /nextLoad\(, context\)/); + assert.match(stderr, /'load' hook's nextLoad\(\) context/); + assert.strictEqual(status, 1); } diff --git a/test/fixtures/es-module-loaders/loader-resolve-42.mjs b/test/fixtures/es-module-loaders/loader-resolve-42.mjs index f4dffd70fc94ad..5c90bceed2b07e 100644 --- a/test/fixtures/es-module-loaders/loader-resolve-42.mjs +++ b/test/fixtures/es-module-loaders/loader-resolve-42.mjs @@ -1,4 +1,6 @@ export async function resolve(specifier, context, next) { console.log('resolve 42'); // This log is deliberate + console.log('next:', next.name); // This log is deliberate + return next('file:///42.mjs', context); } diff --git a/test/fixtures/es-module-loaders/loader-resolve-multiple-next-calls.mjs b/test/fixtures/es-module-loaders/loader-resolve-multiple-next-calls.mjs new file mode 100644 index 00000000000000..88d333c2404a3c --- /dev/null +++ b/test/fixtures/es-module-loaders/loader-resolve-multiple-next-calls.mjs @@ -0,0 +1,9 @@ +export async function resolve(specifier, context, next) { + const { url: first } = await next(specifier, context); + const { url: second } = await next(specifier, context); + + return { + format: 'module', + url: first, + }; +} From 06c367ef8bee05b5730f2ebf6fc509496bdf06d2 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Thu, 16 Jun 2022 06:02:05 +0200 Subject: [PATCH 005/175] tools: update lint-md-dependencies to rollup@2.75.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43386 Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Mestery Reviewed-By: Tobias Nießen Reviewed-By: James M Snell --- tools/lint-md/package-lock.json | 62 ++++++++++++++++----------------- tools/lint-md/package.json | 2 +- 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/tools/lint-md/package-lock.json b/tools/lint-md/package-lock.json index 64f8c6e3ad5e33..7b9f7076fbd4b4 100644 --- a/tools/lint-md/package-lock.json +++ b/tools/lint-md/package-lock.json @@ -18,7 +18,7 @@ "devDependencies": { "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "rollup-plugin-cleanup": "^3.2.1" } }, @@ -129,9 +129,9 @@ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "node_modules/@types/node": { - "version": "17.0.39", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.39.tgz", - "integrity": "sha512-JDU3YLlnPK3WDao6/DlXLOgSNpG13ct+CwIO17V8q0/9fWJyeMJJ/VyZ1lv8kDprihvZMydzVwf0tQOqGiY2Nw==", + "version": "17.0.42", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.42.tgz", + "integrity": "sha512-Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ==", "dev": true }, "node_modules/@types/resolve": { @@ -692,9 +692,9 @@ } }, "node_modules/mdast-util-mdx-expression": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.2.0.tgz", - "integrity": "sha512-wb36oi09XxqO9RVqgfD+xo8a7xaNgS+01+k3v0GKW0X0bYbeBmUZz22Z/IJ8SuphVlG+DNgNo9VoEaUJ3PKfJQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.2.1.tgz", + "integrity": "sha512-BtQwyalaq6jRjx0pagtuAwGrmzL1yInrfA4EJv7GOoiPOUbR4gr6h65I+G3WTh1/Cag2Eda4ip400Ch6CFmWiA==", "dependencies": { "@types/estree-jsx": "^0.0.1", "@types/hast": "^2.0.0", @@ -2209,9 +2209,9 @@ } }, "node_modules/rollup": { - "version": "2.75.5", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.75.5.tgz", - "integrity": "sha512-JzNlJZDison3o2mOxVmb44Oz7t74EfSd1SQrplQk0wSaXV7uLQXtVdHbxlcT3w+8tZ1TL4r/eLfc7nAbz38BBA==", + "version": "2.75.6", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.75.6.tgz", + "integrity": "sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==", "dev": true, "bin": { "rollup": "dist/bin/rollup" @@ -2291,7 +2291,7 @@ "node_modules/sliced": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz", - "integrity": "sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E=" + "integrity": "sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==" }, "node_modules/sourcemap-codec": { "version": "1.4.8", @@ -2538,9 +2538,9 @@ } }, "node_modules/vfile": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.2.tgz", - "integrity": "sha512-w0PLIugRY3Crkgw89TeMvHCzqCs/zpreR31hl4D92y6SOE07+bfJe+dK5Q2akwS+i/c801kzjoOr9gMcTe6IAA==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.3.tgz", + "integrity": "sha512-xwALvwUKmXzHOri5dGXqXNN8JDEvxPhf8avC+E+pJEl32e4/grLdRdsgx23HpK7QI0cwgR4+QfaM8D5KUnki3g==", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -2622,7 +2622,7 @@ "node_modules/wrapped": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wrapped/-/wrapped-1.0.1.tgz", - "integrity": "sha1-x4PZ2Aeyc+mwHoUWgKk4yHyQckI=", + "integrity": "sha512-ZTKuqiTu3WXtL72UKCCnQLRax2IScKH7oQ+mvjbpvNE+NJxIWIemDqqM2GxNr4N16NCjOYpIgpin5pStM7kM5g==", "dependencies": { "co": "3.1.0", "sliced": "^1.0.1" @@ -2631,7 +2631,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, "node_modules/yallist": { @@ -2741,9 +2741,9 @@ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "@types/node": { - "version": "17.0.39", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.39.tgz", - "integrity": "sha512-JDU3YLlnPK3WDao6/DlXLOgSNpG13ct+CwIO17V8q0/9fWJyeMJJ/VyZ1lv8kDprihvZMydzVwf0tQOqGiY2Nw==", + "version": "17.0.42", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.42.tgz", + "integrity": "sha512-Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ==", "dev": true }, "@types/resolve": { @@ -3148,9 +3148,9 @@ } }, "mdast-util-mdx-expression": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.2.0.tgz", - "integrity": "sha512-wb36oi09XxqO9RVqgfD+xo8a7xaNgS+01+k3v0GKW0X0bYbeBmUZz22Z/IJ8SuphVlG+DNgNo9VoEaUJ3PKfJQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.2.1.tgz", + "integrity": "sha512-BtQwyalaq6jRjx0pagtuAwGrmzL1yInrfA4EJv7GOoiPOUbR4gr6h65I+G3WTh1/Cag2Eda4ip400Ch6CFmWiA==", "requires": { "@types/estree-jsx": "^0.0.1", "@types/hast": "^2.0.0", @@ -4199,9 +4199,9 @@ } }, "rollup": { - "version": "2.75.5", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.75.5.tgz", - "integrity": "sha512-JzNlJZDison3o2mOxVmb44Oz7t74EfSd1SQrplQk0wSaXV7uLQXtVdHbxlcT3w+8tZ1TL4r/eLfc7nAbz38BBA==", + "version": "2.75.6", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.75.6.tgz", + "integrity": "sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==", "dev": true, "requires": { "fsevents": "~2.3.2" @@ -4259,7 +4259,7 @@ "sliced": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz", - "integrity": "sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E=" + "integrity": "sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==" }, "sourcemap-codec": { "version": "1.4.8", @@ -4426,9 +4426,9 @@ } }, "vfile": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.2.tgz", - "integrity": "sha512-w0PLIugRY3Crkgw89TeMvHCzqCs/zpreR31hl4D92y6SOE07+bfJe+dK5Q2akwS+i/c801kzjoOr9gMcTe6IAA==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.3.tgz", + "integrity": "sha512-xwALvwUKmXzHOri5dGXqXNN8JDEvxPhf8avC+E+pJEl32e4/grLdRdsgx23HpK7QI0cwgR4+QfaM8D5KUnki3g==", "requires": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -4486,7 +4486,7 @@ "wrapped": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wrapped/-/wrapped-1.0.1.tgz", - "integrity": "sha1-x4PZ2Aeyc+mwHoUWgKk4yHyQckI=", + "integrity": "sha512-ZTKuqiTu3WXtL72UKCCnQLRax2IScKH7oQ+mvjbpvNE+NJxIWIemDqqM2GxNr4N16NCjOYpIgpin5pStM7kM5g==", "requires": { "co": "3.1.0", "sliced": "^1.0.1" @@ -4495,7 +4495,7 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, "yallist": { diff --git a/tools/lint-md/package.json b/tools/lint-md/package.json index 3e6edf9b65cbd3..3db7e3d473dea1 100644 --- a/tools/lint-md/package.json +++ b/tools/lint-md/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "rollup-plugin-cleanup": "^3.2.1" } } From cbaf1207f4f8b5db558da3d1d5634f9644e9e915 Mon Sep 17 00:00:00 2001 From: Wassim Chegham Date: Thu, 9 Jun 2022 12:23:40 +0200 Subject: [PATCH 006/175] doc: add code examples to node test runner PR-URL: https://github.com/nodejs/node/pull/43359 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Colin Ihrig Reviewed-By: Akhil Marsonya Reviewed-By: Harshitha K P Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Franziska Hinkelmann Reviewed-By: Rich Trott Co-authored-by: Antoine du Hamel --- doc/api/test.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/doc/api/test.md b/doc/api/test.md index 7513dc24e26afd..52620899191142 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -357,6 +357,12 @@ This function is used to write TAP diagnostics to the output. Any diagnostic information is included at the end of the test's results. This function does not return a value. +```js +test('top level test', (t) => { + t.diagnostic('A diagnostic message'); +}); +``` + ### `context.runOnly(shouldRunOnlyTests)` + +> Stability: 1 - Experimental + +The `v8.startupSnapshot` interface can be used to add serialization and +deserialization hooks for custom startup snapshots. Currently the startup +snapshots can only be built into the Node.js binary from source. + +```console +$ cd /path/to/node +$ ./configure --node-snapshot-main=entry.js +$ make node +# This binary contains the result of the execution of entry.js +$ out/Release/node +``` + +In the example above, `entry.js` can use methods from the `v8.startupSnapshot` +interface to specify how to save information for custom objects in the snapshot +during serialization and how the information can be used to synchronize these +objects during deserialization of the snapshot. For example, if the `entry.js` +contains the following script: + +```cjs +'use strict'; + +const fs = require('fs'); +const zlib = require('zlib'); +const path = require('path'); +const assert = require('assert'); + +const { + isBuildingSnapshot, + addSerializeCallback, + addDeserializeCallback, + setDeserializeMainFunction +} = require('v8').startupSnapshot; + +const filePath = path.resolve(__dirname, '../x1024.txt'); +const storage = {}; + +assert(isBuildingSnapshot()); + +addSerializeCallback(({ filePath }) => { + storage[filePath] = zlib.gzipSync(fs.readFileSync(filePath)); +}, { filePath }); + +addDeserializeCallback(({ filePath }) => { + storage[filePath] = zlib.gunzipSync(storage[filePath]); +}, { filePath }); + +setDeserializeMainFunction(({ filePath }) => { + console.log(storage[filePath].toString()); +}, { filePath }); +``` + +The resulted binary will simply print the data deserialized from the snapshot +during start up: + +```console +$ out/Release/node +# Prints content of ./test/fixtures/x1024.txt +``` + +Currently the API is only available to a Node.js instance launched from the +default snapshot, that is, the application deserialized from a user-land +snapshot cannot use these APIs again. + +### `v8.startupSnapshot.addSerializeCallback(callback[, data])` + + + +* `callback` {Function} Callback to be invoked before serialization. +* `data` {any} Optional data that will be passed to the `callback` when it + gets called. + +Add a callback that will be called when the Node.js instance is about to +get serialized into a snapshot and exit. This can be used to release +resources that should not or cannot be serialized or to convert user data +into a form more suitable for serialization. + +### `v8.startupSnapshot.addDeserializeCallback(callback[, data])` + + + +* `callback` {Function} Callback to be invoked after the snapshot is + deserialized. +* `data` {any} Optional data that will be passed to the `callback` when it + gets called. + +Add a callback that will be called when the Node.js instance is deserialized +from a snapshot. The `callback` and the `data` (if provided) will be +serialized into the snapshot, they can be used to re-initialize the state +of the application or to re-acquire resources that the application needs +when the application is restarted from the snapshot. + +### `v8.startupSnapshot.setDeserializeMainFunction(callback[, data])` + + + +* `callback` {Function} Callback to be invoked as the entry point after the + snapshot is deserialized. +* `data` {any} Optional data that will be passed to the `callback` when it + gets called. + +This sets the entry point of the Node.js application when it is deserialized +from a snapshot. This can be called only once in the snapshot building +script. If called, the deserialized application no longer needs an additional +entry point script to start up and will simply invoke the callback along with +the deserialized data (if provided), otherwise an entry point script still +needs to be provided to the deserialized application. + +### `v8.startupSnapshot.isBuildingSnapshot()` + + + +* Returns: {boolean} + +Returns true if the Node.js instance is run to build a snapshot. + [HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm [Hook Callbacks]: #hook-callbacks [V8]: https://developers.google.com/v8/ diff --git a/lib/internal/bootstrap/pre_execution.js b/lib/internal/bootstrap/pre_execution.js index d00c1fbd7864de..80092bf74e1676 100644 --- a/lib/internal/bootstrap/pre_execution.js +++ b/lib/internal/bootstrap/pre_execution.js @@ -53,7 +53,6 @@ function prepareMainThreadExecution(expandArgv1 = false, setupCoverageHooks(process.env.NODE_V8_COVERAGE); } - setupDebugEnv(); // Print stack trace on `SIGINT` if option `--trace-sigint` presents. @@ -84,6 +83,8 @@ function prepareMainThreadExecution(expandArgv1 = false, initializeDeprecations(); initializeWASI(); + require('internal/v8/startup_snapshot').runDeserializeCallbacks(); + if (!initialzeModules) { return; } diff --git a/lib/internal/bootstrap/switches/is_main_thread.js b/lib/internal/bootstrap/switches/is_main_thread.js index 0b2ca03192dcb1..e4042ebe88212b 100644 --- a/lib/internal/bootstrap/switches/is_main_thread.js +++ b/lib/internal/bootstrap/switches/is_main_thread.js @@ -2,7 +2,10 @@ const { ObjectDefineProperty } = primordials; const rawMethods = internalBinding('process_methods'); - +const { + addSerializeCallback, + isBuildingSnapshot +} = require('v8').startupSnapshot; // TODO(joyeecheung): deprecate and remove these underscore methods process._debugProcess = rawMethods._debugProcess; process._debugEnd = rawMethods._debugEnd; @@ -134,6 +137,12 @@ function refreshStderrOnSigWinch() { stderr._refreshSize(); } +function addCleanup(fn) { + if (isBuildingSnapshot()) { + addSerializeCallback(fn); + } +} + function getStdout() { if (stdout) return stdout; stdout = createWritableStdioStream(1); @@ -145,12 +154,14 @@ function getStdout() { process.on('SIGWINCH', refreshStdoutOnSigWinch); } - internalBinding('mksnapshot').cleanups.push(function cleanupStdout() { + addCleanup(function cleanupStdout() { stdout._destroy = stdoutDestroy; stdout.destroy(); process.removeListener('SIGWINCH', refreshStdoutOnSigWinch); stdout = undefined; }); + // No need to add deserialize callback because stdout = undefined above + // causes the stream to be lazily initialized again later. return stdout; } @@ -164,12 +175,14 @@ function getStderr() { if (stderr.isTTY) { process.on('SIGWINCH', refreshStderrOnSigWinch); } - internalBinding('mksnapshot').cleanups.push(function cleanupStderr() { + addCleanup(function cleanupStderr() { stderr._destroy = stderrDestroy; stderr.destroy(); process.removeListener('SIGWINCH', refreshStderrOnSigWinch); stderr = undefined; }); + // No need to add deserialize callback because stderr = undefined above + // causes the stream to be lazily initialized again later. return stderr; } @@ -256,10 +269,12 @@ function getStdin() { } } - internalBinding('mksnapshot').cleanups.push(function cleanupStdin() { + addCleanup(function cleanupStdin() { stdin.destroy(); stdin = undefined; }); + // No need to add deserialize callback because stdin = undefined above + // causes the stream to be lazily initialized again later. return stdin; } diff --git a/lib/internal/errors.js b/lib/internal/errors.js index 306dcbad998134..7570315abe54d6 100644 --- a/lib/internal/errors.js +++ b/lib/internal/errors.js @@ -978,6 +978,8 @@ E('ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE', 'The `domain` module is in use, which is mutually exclusive with calling ' + 'process.setUncaughtExceptionCaptureCallback()', Error); +E('ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION', + 'Deserialize main function is already configured.', Error); E('ERR_ENCODING_INVALID_ENCODED_DATA', function(encoding, ret) { this.errno = ret; return `The encoded data was not valid for encoding ${encoding}`; @@ -1456,6 +1458,8 @@ E('ERR_NETWORK_IMPORT_BAD_RESPONSE', "import '%s' received a bad response: %s", Error); E('ERR_NETWORK_IMPORT_DISALLOWED', "import of '%s' by %s is not supported: %s", Error); +E('ERR_NOT_BUILDING_SNAPSHOT', + 'Operation cannot be invoked when not building startup snapshot', Error); E('ERR_NO_CRYPTO', 'Node.js is not compiled with OpenSSL crypto support', Error); E('ERR_NO_ICU', diff --git a/lib/internal/main/mksnapshot.js b/lib/internal/main/mksnapshot.js index 3e1515a2d2e05e..616a436e0a9483 100644 --- a/lib/internal/main/mksnapshot.js +++ b/lib/internal/main/mksnapshot.js @@ -9,7 +9,7 @@ const { const binding = internalBinding('mksnapshot'); const { NativeModule } = require('internal/bootstrap/loaders'); const { - compileSnapshotMain, + compileSerializeMain, } = binding; const { @@ -83,7 +83,7 @@ const supportedModules = new SafeSet(new SafeArrayIterator([ 'v8', // 'vm', // 'worker_threads', - // 'zlib', + 'zlib', ])); const warnedModules = new SafeSet(); @@ -117,25 +117,22 @@ function main() { } = require('internal/bootstrap/pre_execution'); prepareMainThreadExecution(true, false); - process.once('beforeExit', function runCleanups() { - for (const cleanup of binding.cleanups) { - cleanup(); - } - }); const file = process.argv[1]; const path = require('path'); const filename = path.resolve(file); const dirname = path.dirname(filename); const source = readFileSync(file, 'utf-8'); - const snapshotMainFunction = compileSnapshotMain(filename, source); + const serializeMainFunction = compileSerializeMain(filename, source); + + require('internal/v8/startup_snapshot').initializeCallbacks(); if (getOptionValue('--inspect-brk')) { internalBinding('inspector').callAndPauseOnStart( - snapshotMainFunction, undefined, + serializeMainFunction, undefined, requireForUserSnapshot, filename, dirname); } else { - snapshotMainFunction(requireForUserSnapshot, filename, dirname); + serializeMainFunction(requireForUserSnapshot, filename, dirname); } } diff --git a/lib/internal/v8/startup_snapshot.js b/lib/internal/v8/startup_snapshot.js new file mode 100644 index 00000000000000..6a6a6c47e85708 --- /dev/null +++ b/lib/internal/v8/startup_snapshot.js @@ -0,0 +1,111 @@ +'use strict'; + +const { + validateFunction, +} = require('internal/validators'); +const { + ERR_NOT_BUILDING_SNAPSHOT, + ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION +} = require('internal/errors'); + +const { + setSerializeCallback, + setDeserializeCallback, + setDeserializeMainFunction: _setDeserializeMainFunction, + markBootstrapComplete +} = internalBinding('mksnapshot'); + +function isBuildingSnapshot() { + // For now this is the only way to build a snapshot. + return require('internal/options').getOptionValue('--build-snapshot'); +} + +function throwIfNotBuildingSnapshot() { + if (!isBuildingSnapshot()) { + throw new ERR_NOT_BUILDING_SNAPSHOT(); + } +} + +const deserializeCallbacks = []; +let deserializeCallbackIsSet = false; +function runDeserializeCallbacks() { + while (deserializeCallbacks.length > 0) { + const { 0: callback, 1: data } = deserializeCallbacks.shift(); + callback(data); + } +} + +function addDeserializeCallback(callback, data) { + throwIfNotBuildingSnapshot(); + validateFunction(callback, 'callback'); + if (!deserializeCallbackIsSet) { + // TODO(joyeecheung): when the main function handling is done in JS, + // the deserialize callbacks can always be invoked. For now only + // store it in C++ when it's actually used to avoid unnecessary + // C++ -> JS costs. + setDeserializeCallback(runDeserializeCallbacks); + deserializeCallbackIsSet = true; + } + deserializeCallbacks.push([callback, data]); +} + +const serializeCallbacks = []; +function runSerializeCallbacks() { + while (serializeCallbacks.length > 0) { + const { 0: callback, 1: data } = serializeCallbacks.shift(); + callback(data); + } + // Remove the hooks from the snapshot. + require('v8').startupSnapshot = undefined; +} + +function addSerializeCallback(callback, data) { + throwIfNotBuildingSnapshot(); + validateFunction(callback, 'callback'); + serializeCallbacks.push([callback, data]); +} + +function initializeCallbacks() { + // Only run the serialize callbacks in snapshot building mode, otherwise + // they throw. + if (isBuildingSnapshot()) { + setSerializeCallback(runSerializeCallbacks); + } +} + +let deserializeMainIsSet = false; +function setDeserializeMainFunction(callback, data) { + throwIfNotBuildingSnapshot(); + // TODO(joyeecheung): In lib/internal/bootstrap/node.js, create a default + // main function to run the lib/internal/main scripts and make sure that + // the main function set in the snapshot building process takes precedence. + validateFunction(callback, 'callback'); + if (deserializeMainIsSet) { + throw new ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION(); + } + deserializeMainIsSet = true; + + _setDeserializeMainFunction(function deserializeMain() { + const { + prepareMainThreadExecution + } = require('internal/bootstrap/pre_execution'); + + // This should be in sync with run_main_module.js until we make that + // a built-in main function. + prepareMainThreadExecution(true); + markBootstrapComplete(); + callback(data); + }); +} + +module.exports = { + initializeCallbacks, + runDeserializeCallbacks, + // Exposed to require('v8').startupSnapshot + namespace: { + addDeserializeCallback, + addSerializeCallback, + setDeserializeMainFunction, + isBuildingSnapshot + } +}; diff --git a/lib/v8.js b/lib/v8.js index 40db7808fcd611..1a8b4bce2fccd6 100644 --- a/lib/v8.js +++ b/lib/v8.js @@ -40,6 +40,9 @@ const { Serializer, Deserializer } = internalBinding('serdes'); +const { + namespace: startupSnapshot +} = require('internal/v8/startup_snapshot'); let profiler = {}; if (internalBinding('config').hasInspector) { @@ -372,4 +375,5 @@ module.exports = { serialize, writeHeapSnapshot, promiseHooks, + startupSnapshot }; diff --git a/src/api/embed_helpers.cc b/src/api/embed_helpers.cc index 8e2fc67695b875..bd0459f20b1b3e 100644 --- a/src/api/embed_helpers.cc +++ b/src/api/embed_helpers.cc @@ -3,6 +3,7 @@ #include "debug_utils-inl.h" using v8::Context; +using v8::Function; using v8::Global; using v8::HandleScope; using v8::Isolate; @@ -44,6 +45,13 @@ Maybe SpinEventLoop(Environment* env) { if (EmitProcessBeforeExit(env).IsNothing()) break; + { + HandleScope handle_scope(isolate); + if (env->RunSnapshotSerializeCallback().IsEmpty()) { + break; + } + } + // Emit `beforeExit` if the loop became alive either after emitting // event, or after running some callbacks. more = uv_loop_alive(env->event_loop()); @@ -54,6 +62,11 @@ Maybe SpinEventLoop(Environment* env) { if (env->is_stopping()) return Nothing(); env->set_trace_sync_io(false); + // Clear the serialize callback even though the JS-land queue should + // be empty this point so that the deserialized instance won't + // attempt to call into JS again. + env->set_snapshot_serialize_callback(Local()); + env->PrintInfoForSnapshotIfDebug(); env->VerifyNoStrongBaseObjects(); return EmitProcessExit(env); diff --git a/src/env.cc b/src/env.cc index e21ee5efab1d19..65467587ffcdd8 100644 --- a/src/env.cc +++ b/src/env.cc @@ -34,6 +34,7 @@ using v8::Array; using v8::Boolean; using v8::Context; using v8::EmbedderGraph; +using v8::EscapableHandleScope; using v8::Function; using v8::FunctionTemplate; using v8::HandleScope; @@ -671,6 +672,26 @@ void Environment::PrintSyncTrace() const { isolate(), stack_trace_limit(), StackTrace::kDetailed)); } +MaybeLocal Environment::RunSnapshotSerializeCallback() const { + EscapableHandleScope handle_scope(isolate()); + if (!snapshot_serialize_callback().IsEmpty()) { + Context::Scope context_scope(context()); + return handle_scope.EscapeMaybe(snapshot_serialize_callback()->Call( + context(), v8::Undefined(isolate()), 0, nullptr)); + } + return handle_scope.Escape(Undefined(isolate())); +} + +MaybeLocal Environment::RunSnapshotDeserializeMain() const { + EscapableHandleScope handle_scope(isolate()); + if (!snapshot_deserialize_main().IsEmpty()) { + Context::Scope context_scope(context()); + return handle_scope.EscapeMaybe(snapshot_deserialize_main()->Call( + context(), v8::Undefined(isolate()), 0, nullptr)); + } + return handle_scope.Escape(Undefined(isolate())); +} + void Environment::RunCleanup() { started_cleanup_ = true; TRACE_EVENT0(TRACING_CATEGORY_NODE1(environment), "RunCleanup"); diff --git a/src/env.h b/src/env.h index e59abdd9cb265b..921b6758ac5b6c 100644 --- a/src/env.h +++ b/src/env.h @@ -558,6 +558,9 @@ class NoArrayBufferZeroFillScope { V(promise_hook_handler, v8::Function) \ V(promise_reject_callback, v8::Function) \ V(script_data_constructor_function, v8::Function) \ + V(snapshot_serialize_callback, v8::Function) \ + V(snapshot_deserialize_callback, v8::Function) \ + V(snapshot_deserialize_main, v8::Function) \ V(source_map_cache_getter, v8::Function) \ V(tick_callback_function, v8::Function) \ V(timers_callback_function, v8::Function) \ @@ -1333,6 +1336,10 @@ class Environment : public MemoryRetainer { void RunWeakRefCleanup(); + v8::MaybeLocal RunSnapshotSerializeCallback() const; + v8::MaybeLocal RunSnapshotDeserializeCallback() const; + v8::MaybeLocal RunSnapshotDeserializeMain() const; + // Strings and private symbols are shared across shared contexts // The getters simply proxy to the per-isolate primitive. #define VP(PropertyName, StringValue) V(v8::Private, PropertyName) diff --git a/src/node.cc b/src/node.cc index 31c3e14846343f..78e93c74d3c3c4 100644 --- a/src/node.cc +++ b/src/node.cc @@ -485,6 +485,14 @@ MaybeLocal StartExecution(Environment* env, StartExecutionCallback cb) { return scope.EscapeMaybe(cb(info)); } + // TODO(joyeecheung): move these conditions into JS land and let the + // deserialize main function take precedence. For workers, we need to + // move the pre-execution part into a different file that can be + // reused when dealing with user-defined main functions. + if (!env->snapshot_deserialize_main().IsEmpty()) { + return env->RunSnapshotDeserializeMain(); + } + if (env->worker_context() != nullptr) { return StartExecution(env, "internal/main/worker_thread"); } diff --git a/src/node_snapshotable.cc b/src/node_snapshotable.cc index 1fc374842ff5c6..2bc30b20bcdeac 100644 --- a/src/node_snapshotable.cc +++ b/src/node_snapshotable.cc @@ -457,7 +457,7 @@ void SerializeBindingData(Environment* env, namespace mksnapshot { -static void CompileSnapshotMain(const FunctionCallbackInfo& args) { +void CompileSerializeMain(const FunctionCallbackInfo& args) { CHECK(args[0]->IsString()); Local filename = args[0].As(); Local source = args[1].As(); @@ -485,23 +485,46 @@ static void CompileSnapshotMain(const FunctionCallbackInfo& args) { } } -static void Initialize(Local target, - Local unused, - Local context, - void* priv) { +void SetSerializeCallback(const FunctionCallbackInfo& args) { + Environment* env = Environment::GetCurrent(args); + CHECK(env->snapshot_serialize_callback().IsEmpty()); + CHECK(args[0]->IsFunction()); + env->set_snapshot_serialize_callback(args[0].As()); +} + +void SetDeserializeCallback(const FunctionCallbackInfo& args) { + Environment* env = Environment::GetCurrent(args); + CHECK(env->snapshot_deserialize_callback().IsEmpty()); + CHECK(args[0]->IsFunction()); + env->set_snapshot_deserialize_callback(args[0].As()); +} + +void SetDeserializeMainFunction(const FunctionCallbackInfo& args) { + Environment* env = Environment::GetCurrent(args); + CHECK(env->snapshot_deserialize_main().IsEmpty()); + CHECK(args[0]->IsFunction()); + env->set_snapshot_deserialize_main(args[0].As()); +} + +void Initialize(Local target, + Local unused, + Local context, + void* priv) { Environment* env = Environment::GetCurrent(context); - Isolate* isolate = context->GetIsolate(); - env->SetMethod(target, "compileSnapshotMain", CompileSnapshotMain); - target - ->Set(context, - FIXED_ONE_BYTE_STRING(isolate, "cleanups"), - v8::Array::New(isolate)) - .Check(); + env->SetMethod(target, "compileSerializeMain", CompileSerializeMain); + env->SetMethod(target, "markBootstrapComplete", MarkBootstrapComplete); + env->SetMethod(target, "setSerializeCallback", SetSerializeCallback); + env->SetMethod(target, "setDeserializeCallback", SetDeserializeCallback); + env->SetMethod( + target, "setDeserializeMainFunction", SetDeserializeMainFunction); } -static void RegisterExternalReferences(ExternalReferenceRegistry* registry) { - registry->Register(CompileSnapshotMain); +void RegisterExternalReferences(ExternalReferenceRegistry* registry) { + registry->Register(CompileSerializeMain); registry->Register(MarkBootstrapComplete); + registry->Register(SetSerializeCallback); + registry->Register(SetDeserializeCallback); + registry->Register(SetDeserializeMainFunction); } } // namespace mksnapshot } // namespace node diff --git a/test/fixtures/snapshot/v8-startup-snapshot-api.js b/test/fixtures/snapshot/v8-startup-snapshot-api.js new file mode 100644 index 00000000000000..f41f519755f45e --- /dev/null +++ b/test/fixtures/snapshot/v8-startup-snapshot-api.js @@ -0,0 +1,32 @@ +'use strict'; + +const fs = require('fs'); +const zlib = require('zlib'); +const path = require('path'); +const assert = require('assert'); + +const { + isBuildingSnapshot, + addSerializeCallback, + addDeserializeCallback, + setDeserializeMainFunction +} = require('v8').startupSnapshot; + +const filePath = path.resolve(__dirname, '../x1024.txt'); +const storage = {}; + +assert(isBuildingSnapshot()); + +addSerializeCallback(({ filePath }) => { + console.error('serializing', filePath); + storage[filePath] = zlib.gzipSync(fs.readFileSync(filePath)); +}, { filePath }); + +addDeserializeCallback(({ filePath }) => { + console.error('deserializing', filePath); + storage[filePath] = zlib.gunzipSync(storage[filePath]); +}, { filePath }); + +setDeserializeMainFunction(({ filePath }) => { + console.log(storage[filePath].toString()); +}, { filePath }); diff --git a/test/parallel/test-bootstrap-modules.js b/test/parallel/test-bootstrap-modules.js index 703fbc6f10af3a..495f08f716f573 100644 --- a/test/parallel/test-bootstrap-modules.js +++ b/test/parallel/test-bootstrap-modules.js @@ -21,6 +21,7 @@ const expectedModules = new Set([ 'Internal Binding fs_event_wrap', 'Internal Binding fs', 'Internal Binding heap_utils', + 'Internal Binding mksnapshot', 'Internal Binding messaging', 'Internal Binding module_wrap', 'Internal Binding native_module', @@ -167,6 +168,7 @@ const expectedModules = new Set([ 'NativeModule url', 'NativeModule util', 'NativeModule v8', + 'NativeModule internal/v8/startup_snapshot', 'NativeModule vm', ]); From 48ae00c0b13a23cab264c18724d2158b48dd97cb Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 18 Jun 2022 01:27:13 +0100 Subject: [PATCH 028/175] test: improve coverage for load hooks Refs: https://github.com/nodejs/node/pull/43363#discussion_r894366025 PR-URL: https://github.com/nodejs/node/pull/43374 Reviewed-By: James M Snell Reviewed-By: Jacob Smith Reviewed-By: Geoffrey Booth Reviewed-By: Akhil Marsonya --- test/es-module/test-esm-loader-thenable.mjs | 65 +++++++++++++++++++ ...enable-load-hook-rejected-no-arguments.mjs | 10 +++ .../thenable-load-hook-rejected.mjs | 10 +++ .../es-module-loaders/thenable-load-hook.mjs | 10 +++ 4 files changed, 95 insertions(+) create mode 100644 test/es-module/test-esm-loader-thenable.mjs create mode 100644 test/fixtures/es-module-loaders/thenable-load-hook-rejected-no-arguments.mjs create mode 100644 test/fixtures/es-module-loaders/thenable-load-hook-rejected.mjs create mode 100644 test/fixtures/es-module-loaders/thenable-load-hook.mjs diff --git a/test/es-module/test-esm-loader-thenable.mjs b/test/es-module/test-esm-loader-thenable.mjs new file mode 100644 index 00000000000000..c8c3ec2778e7e9 --- /dev/null +++ b/test/es-module/test-esm-loader-thenable.mjs @@ -0,0 +1,65 @@ +import { mustCall } from '../common/index.mjs'; +import { fileURL, path } from '../common/fixtures.mjs'; +import { match, ok, notStrictEqual, strictEqual } from 'assert'; +import { spawn } from 'child_process'; +import { execPath } from 'process'; + +{ + const child = spawn(execPath, [ + '--experimental-loader', + fileURL('es-module-loaders', 'thenable-load-hook.mjs').href, + path('es-modules', 'test-esm-ok.mjs'), + ]); + + let stderr = ''; + child.stderr.setEncoding('utf8'); + child.stderr.on('data', (data) => { + stderr += data; + }); + child.on('close', mustCall((code, _signal) => { + strictEqual(code, 0); + ok(!stderr.includes('must not call')); + })); +} + +{ + const child = spawn(execPath, [ + '--experimental-loader', + fileURL('es-module-loaders', 'thenable-load-hook-rejected.mjs').href, + path('es-modules', 'test-esm-ok.mjs'), + ]); + + let stderr = ''; + child.stderr.setEncoding('utf8'); + child.stderr.on('data', (data) => { + stderr += data; + }); + child.on('close', mustCall((code, _signal) => { + notStrictEqual(code, 0); + + match(stderr, /\sError: must crash the process\r?\n/); + + ok(!stderr.includes('must not call')); + })); +} + +{ + const child = spawn(execPath, [ + '--experimental-loader', + fileURL('es-module-loaders', 'thenable-load-hook-rejected-no-arguments.mjs').href, + path('es-modules', 'test-esm-ok.mjs'), + ]); + + let stderr = ''; + child.stderr.setEncoding('utf8'); + child.stderr.on('data', (data) => { + stderr += data; + }); + child.on('close', mustCall((code, _signal) => { + notStrictEqual(code, 0); + + match(stderr, /\sundefined\r?\n/); + + ok(!stderr.includes('must not call')); + })); +} diff --git a/test/fixtures/es-module-loaders/thenable-load-hook-rejected-no-arguments.mjs b/test/fixtures/es-module-loaders/thenable-load-hook-rejected-no-arguments.mjs new file mode 100644 index 00000000000000..5e008edecf7cf3 --- /dev/null +++ b/test/fixtures/es-module-loaders/thenable-load-hook-rejected-no-arguments.mjs @@ -0,0 +1,10 @@ +export function load () { + let thenAlreadyAccessed = false; + return { + get then() { + if (thenAlreadyAccessed) throw new Error('must not call'); + thenAlreadyAccessed = true; + return (_, reject) => reject(); + } + }; +} diff --git a/test/fixtures/es-module-loaders/thenable-load-hook-rejected.mjs b/test/fixtures/es-module-loaders/thenable-load-hook-rejected.mjs new file mode 100644 index 00000000000000..926f6d0bebd653 --- /dev/null +++ b/test/fixtures/es-module-loaders/thenable-load-hook-rejected.mjs @@ -0,0 +1,10 @@ +export function load () { + let thenAlreadyAccessed = false; + return { + get then() { + if (thenAlreadyAccessed) throw new Error('must not call'); + thenAlreadyAccessed = true; + return (_, reject) => reject(new Error('must crash the process')); + } + }; +} diff --git a/test/fixtures/es-module-loaders/thenable-load-hook.mjs b/test/fixtures/es-module-loaders/thenable-load-hook.mjs new file mode 100644 index 00000000000000..661f6e21ac69d3 --- /dev/null +++ b/test/fixtures/es-module-loaders/thenable-load-hook.mjs @@ -0,0 +1,10 @@ +export function load(url, context, next) { + let thenAlreadyAccessed = false; + return { + get then() { + if (thenAlreadyAccessed) throw new Error('must not call'); + thenAlreadyAccessed = true; + return (resolve) => resolve(next(url, context)); + } + }; +} From 5c0a24d5bec7e5a1802d75b98c7be6aaf9bc91f7 Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Sat, 18 Jun 2022 06:19:44 +0530 Subject: [PATCH 029/175] test: mark test-worker-http2-stream-terminate flaky on Windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test is causing a lot of CI failures, so I'd say that we should mark this test flaky until someone comes up with a proper fix. Refs: https://github.com/nodejs/node/issues/43084 Signed-off-by: Darshan Sen PR-URL: https://github.com/nodejs/node/pull/43425 Reviewed-By: James M Snell Reviewed-By: Tobias Nießen --- test/parallel/parallel.status | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index 26d1010d2545c8..00214aad81712d 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -15,6 +15,8 @@ test-timers-immediate-queue: PASS,FLAKY test-crypto-keygen: PASS,FLAKY # https://github.com/nodejs/node/issues/41201 test-fs-rmdir-recursive: PASS, FLAKY +# https://github.com/nodejs/node/issues/43084 +test-worker-http2-stream-terminate: PASS, FLAKY [$system==linux] # https://github.com/nodejs/node/issues/39368 From df501316c138387044262bb70f7225951185f324 Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Sat, 18 Jun 2022 11:20:40 +0200 Subject: [PATCH 030/175] fs: don't end fs promises on Isolate termination This is specially prevalent in the case of having in-progress FileHandle operations in a worker thread while the Worker is exiting. Fixes: https://github.com/nodejs/node/issues/42829 PR-URL: https://github.com/nodejs/node/pull/42910 Reviewed-By: Antoine du Hamel Reviewed-By: Darshan Sen --- src/node_file-inl.h | 6 ++- src/node_file.cc | 5 ++ ...t-worker-fshandles-error-on-termination.js | 51 +++++++++++++++++++ ...ker-fshandles-open-close-on-termination.js | 46 +++++++++++++++++ 4 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 test/parallel/test-worker-fshandles-error-on-termination.js create mode 100644 test/parallel/test-worker-fshandles-open-close-on-termination.js diff --git a/src/node_file-inl.h b/src/node_file-inl.h index 0188261b7dcbb4..28d4d9ab8c8903 100644 --- a/src/node_file-inl.h +++ b/src/node_file-inl.h @@ -156,8 +156,10 @@ FSReqPromise::New(BindingData* binding_data, template FSReqPromise::~FSReqPromise() { - // Validate that the promise was explicitly resolved or rejected. - CHECK(finished_); + // Validate that the promise was explicitly resolved or rejected but only if + // the Isolate is not terminating because in this case the promise might have + // not finished. + if (!env()->is_stopping()) CHECK(finished_); } template diff --git a/src/node_file.cc b/src/node_file.cc index f4238e7d68cce0..5a3e54669049fb 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -377,6 +377,7 @@ MaybeLocal FileHandle::ClosePromise() { std::unique_ptr close(CloseReq::from_req(req)); CHECK_NOT_NULL(close); close->file_handle()->AfterClose(); + if (!close->env()->can_call_into_js()) return; Isolate* isolate = close->env()->isolate(); if (req->result < 0) { HandleScope handle_scope(isolate); @@ -650,6 +651,10 @@ void FSReqAfterScope::Reject(uv_fs_t* req) { } bool FSReqAfterScope::Proceed() { + if (!wrap_->env()->can_call_into_js()) { + return false; + } + if (req_->result < 0) { Reject(req_); return false; diff --git a/test/parallel/test-worker-fshandles-error-on-termination.js b/test/parallel/test-worker-fshandles-error-on-termination.js new file mode 100644 index 00000000000000..72fb969963a2b0 --- /dev/null +++ b/test/parallel/test-worker-fshandles-error-on-termination.js @@ -0,0 +1,51 @@ +'use strict'; + +const common = require('../common'); +const assert = require('assert'); +const fs = require('fs/promises'); +const { scheduler } = require('timers/promises'); +const { parentPort, Worker } = require('worker_threads'); + +const MAX_ITERATIONS = 20; +const MAX_THREADS = 10; + +// Do not use isMainThread so that this test itself can be run inside a Worker. +if (!process.env.HAS_STARTED_WORKER) { + process.env.HAS_STARTED_WORKER = 1; + + function spinWorker(iter) { + const w = new Worker(__filename); + w.on('message', common.mustCall((msg) => { + assert.strictEqual(msg, 'terminate'); + w.terminate(); + })); + + w.on('exit', common.mustCall(() => { + if (iter < MAX_ITERATIONS) + spinWorker(++iter); + })); + } + + for (let i = 0; i < MAX_THREADS; i++) { + spinWorker(0); + } +} else { + async function open_nok() { + await assert.rejects( + fs.open('this file does not exist'), + { + code: 'ENOENT', + syscall: 'open' + } + ); + await scheduler.yield(); + await open_nok(); + } + + // These async function calls never return as they are meant to continually + // open nonexistent files until the worker is terminated. + open_nok(); + open_nok(); + + parentPort.postMessage('terminate'); +} diff --git a/test/parallel/test-worker-fshandles-open-close-on-termination.js b/test/parallel/test-worker-fshandles-open-close-on-termination.js new file mode 100644 index 00000000000000..2cbd886b15fe4e --- /dev/null +++ b/test/parallel/test-worker-fshandles-open-close-on-termination.js @@ -0,0 +1,46 @@ +'use strict'; + +const common = require('../common'); +const assert = require('assert'); +const fs = require('fs/promises'); +const { scheduler } = require('timers/promises'); +const { parentPort, Worker } = require('worker_threads'); + +const MAX_ITERATIONS = 20; +const MAX_THREADS = 10; + +// Do not use isMainThread so that this test itself can be run inside a Worker. +if (!process.env.HAS_STARTED_WORKER) { + process.env.HAS_STARTED_WORKER = 1; + + function spinWorker(iter) { + const w = new Worker(__filename); + w.on('message', common.mustCall((msg) => { + assert.strictEqual(msg, 'terminate'); + w.terminate(); + })); + + w.on('exit', common.mustCall(() => { + if (iter < MAX_ITERATIONS) + spinWorker(++iter); + })); + } + + for (let i = 0; i < MAX_THREADS; i++) { + spinWorker(0); + } +} else { + async function open_close() { + const fh = await fs.open(__filename); + await fh.close(); + await scheduler.yield(); + await open_close(); + } + + // These async function calls never return as they are meant to continually + // open and close files until the worker is terminated. + open_close(); + open_close(); + + parentPort.postMessage('terminate'); +} From d71ba322b08b3b6a73f98594f14d3f5a48f722de Mon Sep 17 00:00:00 2001 From: theanarkh <2923878201@qq.com> Date: Sat, 18 Jun 2022 17:30:04 +0800 Subject: [PATCH 031/175] http: fix http agent keep alive PR-URL: https://github.com/nodejs/node/pull/43380 Reviewed-By: Paolo Insogna Reviewed-By: Matteo Collina Reviewed-By: Ricky Zhou <0x19951125@gmail.com> Reviewed-By: Trivikram Kamat --- lib/_http_agent.js | 6 +++- .../test-http-agent-keepalive-delay.js | 36 +++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 test/parallel/test-http-agent-keepalive-delay.js diff --git a/lib/_http_agent.js b/lib/_http_agent.js index 6784e884859986..791a43c8d5d029 100644 --- a/lib/_http_agent.js +++ b/lib/_http_agent.js @@ -342,7 +342,11 @@ Agent.prototype.createSocket = function createSocket(req, options, cb) { installListeners(this, s, options); cb(null, s); }); - + // When keepAlive is true, pass the related options to createConnection + if (this.keepAlive) { + options.keepAlive = this.keepAlive; + options.keepAliveInitialDelay = this.keepAliveMsecs; + } const newSocket = this.createConnection(options, oncreate); if (newSocket) oncreate(null, newSocket); diff --git a/test/parallel/test-http-agent-keepalive-delay.js b/test/parallel/test-http-agent-keepalive-delay.js new file mode 100644 index 00000000000000..b5edd78b662709 --- /dev/null +++ b/test/parallel/test-http-agent-keepalive-delay.js @@ -0,0 +1,36 @@ +'use strict'; + +const common = require('../common'); +const assert = require('assert'); +const http = require('http'); +const { Agent } = require('_http_agent'); + +const agent = new Agent({ + keepAlive: true, + keepAliveMsecs: 1000, +}); + +const server = http.createServer(common.mustCall((req, res) => { + res.end('ok'); +})); + +server.listen(0, common.mustCall(() => { + const createConnection = agent.createConnection; + agent.createConnection = (options, ...args) => { + assert.strictEqual(options.keepAlive, true); + assert.strictEqual(options.keepAliveInitialDelay, agent.keepAliveMsecs); + return createConnection.call(agent, options, ...args); + }; + http.get({ + host: 'localhost', + port: server.address().port, + agent: agent, + path: '/' + }, common.mustCall((res) => { + // for emit end event + res.on('data', () => {}); + res.on('end', () => { + server.close(); + }); + })); +})); From 0bca7b722e49210bfe067c628a14f127f8fffe37 Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Sat, 18 Jun 2022 20:54:31 +0800 Subject: [PATCH 032/175] dns: export error code constants from `dns/promises` PR-URL: https://github.com/nodejs/node/pull/43176 Reviewed-By: Matteo Collina Reviewed-By: Minwoo Jung Reviewed-By: James M Snell --- doc/api/dns.md | 2 + lib/dns.js | 75 +++++++++++++++-------- lib/internal/dns/promises.js | 59 +++++++++++++++++- lib/internal/dns/utils.js | 29 +++++++++ test/parallel/test-dns-promises-exists.js | 29 ++++++++- 5 files changed, 168 insertions(+), 26 deletions(-) diff --git a/doc/api/dns.md b/doc/api/dns.md index 297cda2efcd027..dc2f578fa05336 100644 --- a/doc/api/dns.md +++ b/doc/api/dns.md @@ -1405,6 +1405,8 @@ Each DNS query can return one of the following error codes: * `dns.ADDRGETNETWORKPARAMS`: Could not find `GetNetworkParams` function. * `dns.CANCELLED`: DNS query cancelled. +The above error codes are also exported by the `dnsPromises` API, e.g., `dnsPromises.NODATA`. + ## Implementation considerations Although [`dns.lookup()`][] and the various `dns.resolve*()/dns.reverse()` diff --git a/lib/dns.js b/lib/dns.js index 284032202a24d4..351fa43f357f4d 100644 --- a/lib/dns.js +++ b/lib/dns.js @@ -44,7 +44,34 @@ const { emitInvalidHostnameWarning, getDefaultVerbatim, setDefaultResultOrder, + errorCodes: dnsErrorCodes, } = require('internal/dns/utils'); +const { + NODATA, + FORMERR, + SERVFAIL, + NOTFOUND, + NOTIMP, + REFUSED, + BADQUERY, + BADNAME, + BADFAMILY, + BADRESP, + CONNREFUSED, + TIMEOUT, + EOF, + FILE, + NOMEM, + DESTRUCTION, + BADSTR, + BADFLAGS, + NONAME, + BADHINTS, + NOTINITIALIZED, + LOADIPHLPAPI, + ADDRGETNETWORKPARAMS, + CANCELLED, +} = dnsErrorCodes; const { ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, @@ -376,30 +403,30 @@ module.exports = { V4MAPPED: cares.AI_V4MAPPED, // ERROR CODES - NODATA: 'ENODATA', - FORMERR: 'EFORMERR', - SERVFAIL: 'ESERVFAIL', - NOTFOUND: 'ENOTFOUND', - NOTIMP: 'ENOTIMP', - REFUSED: 'EREFUSED', - BADQUERY: 'EBADQUERY', - BADNAME: 'EBADNAME', - BADFAMILY: 'EBADFAMILY', - BADRESP: 'EBADRESP', - CONNREFUSED: 'ECONNREFUSED', - TIMEOUT: 'ETIMEOUT', - EOF: 'EOF', - FILE: 'EFILE', - NOMEM: 'ENOMEM', - DESTRUCTION: 'EDESTRUCTION', - BADSTR: 'EBADSTR', - BADFLAGS: 'EBADFLAGS', - NONAME: 'ENONAME', - BADHINTS: 'EBADHINTS', - NOTINITIALIZED: 'ENOTINITIALIZED', - LOADIPHLPAPI: 'ELOADIPHLPAPI', - ADDRGETNETWORKPARAMS: 'EADDRGETNETWORKPARAMS', - CANCELLED: 'ECANCELLED' + NODATA, + FORMERR, + SERVFAIL, + NOTFOUND, + NOTIMP, + REFUSED, + BADQUERY, + BADNAME, + BADFAMILY, + BADRESP, + CONNREFUSED, + TIMEOUT, + EOF, + FILE, + NOMEM, + DESTRUCTION, + BADSTR, + BADFLAGS, + NONAME, + BADHINTS, + NOTINITIALIZED, + LOADIPHLPAPI, + ADDRGETNETWORKPARAMS, + CANCELLED, }; bindDefaultResolver(module.exports, getDefaultResolver()); diff --git a/lib/internal/dns/promises.js b/lib/internal/dns/promises.js index 58493134221913..395b059758f36f 100644 --- a/lib/internal/dns/promises.js +++ b/lib/internal/dns/promises.js @@ -16,7 +16,34 @@ const { validateTries, emitInvalidHostnameWarning, getDefaultVerbatim, + errorCodes: dnsErrorCodes, } = require('internal/dns/utils'); +const { + NODATA, + FORMERR, + SERVFAIL, + NOTFOUND, + NOTIMP, + REFUSED, + BADQUERY, + BADNAME, + BADFAMILY, + BADRESP, + CONNREFUSED, + TIMEOUT, + EOF, + FILE, + NOMEM, + DESTRUCTION, + BADSTR, + BADFLAGS, + NONAME, + BADHINTS, + NOTINITIALIZED, + LOADIPHLPAPI, + ADDRGETNETWORKPARAMS, + CANCELLED, +} = dnsErrorCodes; const { codes, dnsException } = require('internal/errors'); const { toASCII } = require('internal/idna'); const { isIP } = require('internal/net'); @@ -323,5 +350,35 @@ Resolver.prototype.resolve = function resolve(hostname, rrtype) { }; -module.exports = { lookup, lookupService, Resolver }; +module.exports = { + lookup, + lookupService, + Resolver, + + // ERROR CODES + NODATA, + FORMERR, + SERVFAIL, + NOTFOUND, + NOTIMP, + REFUSED, + BADQUERY, + BADNAME, + BADFAMILY, + BADRESP, + CONNREFUSED, + TIMEOUT, + EOF, + FILE, + NOMEM, + DESTRUCTION, + BADSTR, + BADFLAGS, + NONAME, + BADHINTS, + NOTINITIALIZED, + LOADIPHLPAPI, + ADDRGETNETWORKPARAMS, + CANCELLED, +}; bindDefaultResolver(module.exports, Resolver.prototype); diff --git a/lib/internal/dns/utils.js b/lib/internal/dns/utils.js index 81bbe5329f5a38..3a18db94ce30e8 100644 --- a/lib/internal/dns/utils.js +++ b/lib/internal/dns/utils.js @@ -201,6 +201,34 @@ function setDefaultResultOrder(value) { dnsOrder = value; } +// ERROR CODES +const errorCodes = { + NODATA: 'ENODATA', + FORMERR: 'EFORMERR', + SERVFAIL: 'ESERVFAIL', + NOTFOUND: 'ENOTFOUND', + NOTIMP: 'ENOTIMP', + REFUSED: 'EREFUSED', + BADQUERY: 'EBADQUERY', + BADNAME: 'EBADNAME', + BADFAMILY: 'EBADFAMILY', + BADRESP: 'EBADRESP', + CONNREFUSED: 'ECONNREFUSED', + TIMEOUT: 'ETIMEOUT', + EOF: 'EOF', + FILE: 'EFILE', + NOMEM: 'ENOMEM', + DESTRUCTION: 'EDESTRUCTION', + BADSTR: 'EBADSTR', + BADFLAGS: 'EBADFLAGS', + NONAME: 'ENONAME', + BADHINTS: 'EBADHINTS', + NOTINITIALIZED: 'ENOTINITIALIZED', + LOADIPHLPAPI: 'ELOADIPHLPAPI', + ADDRGETNETWORKPARAMS: 'EADDRGETNETWORKPARAMS', + CANCELLED: 'ECANCELLED', +}; + module.exports = { bindDefaultResolver, getDefaultResolver, @@ -212,4 +240,5 @@ module.exports = { emitInvalidHostnameWarning, getDefaultVerbatim, setDefaultResultOrder, + errorCodes, }; diff --git a/test/parallel/test-dns-promises-exists.js b/test/parallel/test-dns-promises-exists.js index 5fd20dff2c12d2..d88ecefaa985ca 100644 --- a/test/parallel/test-dns-promises-exists.js +++ b/test/parallel/test-dns-promises-exists.js @@ -2,5 +2,32 @@ require('../common'); const assert = require('assert'); +const dnsPromises = require('dns/promises'); +const dns = require('dns'); -assert.strictEqual(require('dns/promises'), require('dns').promises); +assert.strictEqual(dnsPromises, dns.promises); + +assert.strictEqual(dnsPromises.NODATA, dns.NODATA); +assert.strictEqual(dnsPromises.FORMERR, dns.FORMERR); +assert.strictEqual(dnsPromises.SERVFAIL, dns.SERVFAIL); +assert.strictEqual(dnsPromises.NOTFOUND, dns.NOTFOUND); +assert.strictEqual(dnsPromises.NOTIMP, dns.NOTIMP); +assert.strictEqual(dnsPromises.REFUSED, dns.REFUSED); +assert.strictEqual(dnsPromises.BADQUERY, dns.BADQUERY); +assert.strictEqual(dnsPromises.BADNAME, dns.BADNAME); +assert.strictEqual(dnsPromises.BADFAMILY, dns.BADFAMILY); +assert.strictEqual(dnsPromises.BADRESP, dns.BADRESP); +assert.strictEqual(dnsPromises.CONNREFUSED, dns.CONNREFUSED); +assert.strictEqual(dnsPromises.TIMEOUT, dns.TIMEOUT); +assert.strictEqual(dnsPromises.EOF, dns.EOF); +assert.strictEqual(dnsPromises.FILE, dns.FILE); +assert.strictEqual(dnsPromises.NOMEM, dns.NOMEM); +assert.strictEqual(dnsPromises.DESTRUCTION, dns.DESTRUCTION); +assert.strictEqual(dnsPromises.BADSTR, dns.BADSTR); +assert.strictEqual(dnsPromises.BADFLAGS, dns.BADFLAGS); +assert.strictEqual(dnsPromises.NONAME, dns.NONAME); +assert.strictEqual(dnsPromises.BADHINTS, dns.BADHINTS); +assert.strictEqual(dnsPromises.NOTINITIALIZED, dns.NOTINITIALIZED); +assert.strictEqual(dnsPromises.LOADIPHLPAPI, dns.LOADIPHLPAPI); +assert.strictEqual(dnsPromises.ADDRGETNETWORKPARAMS, dns.ADDRGETNETWORKPARAMS); +assert.strictEqual(dnsPromises.CANCELLED, dns.CANCELLED); From b111331c9cafc09f73403bef956bcaa2d9acb7cd Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Sat, 28 May 2022 11:50:20 +0800 Subject: [PATCH 033/175] doc: add ESM version examples to events api doc PR-URL: https://github.com/nodejs/node/pull/43226 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- doc/api/events.md | 363 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 345 insertions(+), 18 deletions(-) diff --git a/doc/api/events.md b/doc/api/events.md index 3dfbd28e7d3108..d68f1759395610 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -30,7 +30,19 @@ The following example shows a simple `EventEmitter` instance with a single listener. The `eventEmitter.on()` method is used to register listeners, while the `eventEmitter.emit()` method is used to trigger the event. -```js +```mjs +import { EventEmitter } from 'node:events'; + +class MyEmitter extends EventEmitter {} + +const myEmitter = new MyEmitter(); +myEmitter.on('event', () => { + console.log('an event occurred!'); +}); +myEmitter.emit('event'); +``` + +```cjs const EventEmitter = require('node:events'); class MyEmitter extends EventEmitter {} @@ -160,7 +172,18 @@ myEmitter.emit('error', new Error('whoops!')); It is possible to monitor `'error'` events without consuming the emitted error by installing a listener using the symbol `events.errorMonitor`. -```js +```mjs +import { EventEmitter, errorMonitor } from 'node:events'; + +const myEmitter = new EventEmitter(); +myEmitter.on(errorMonitor, (err) => { + MyMonitoringTool.log(err); +}); +myEmitter.emit('error', new Error('whoops!')); +// Still throws and crashes Node.js +``` + +```cjs const { EventEmitter, errorMonitor } = require('node:events'); const myEmitter = new EventEmitter(); @@ -208,7 +231,19 @@ ee2[Symbol.for('nodejs.rejection')] = console.log; Setting `events.captureRejections = true` will change the default for all new instances of `EventEmitter`. -```js +```mjs +import { EventEmitter } from 'node:events'; + +EventEmitter.captureRejections = true; +const ee1 = new EventEmitter(); +ee1.on('something', async (value) => { + throw new Error('kaboom'); +}); + +ee1.on('error', console.log); +``` + +```cjs const events = require('node:events'); events.captureRejections = true; const ee1 = new events.EventEmitter(); @@ -237,7 +272,11 @@ changes: The `EventEmitter` class is defined and exposed by the `node:events` module: -```js +```mjs +import { EventEmitter } from 'node:events'; +``` + +```cjs const EventEmitter = require('node:events'); ``` @@ -337,7 +376,40 @@ to each. Returns `true` if the event had listeners, `false` otherwise. -```js +```mjs +import { EventEmitter } from 'node:events'; +const myEmitter = new EventEmitter(); + +// First listener +myEmitter.on('event', function firstListener() { + console.log('Helloooo! first listener'); +}); +// Second listener +myEmitter.on('event', function secondListener(arg1, arg2) { + console.log(`event with parameters ${arg1}, ${arg2} in second listener`); +}); +// Third listener +myEmitter.on('event', function thirdListener(...args) { + const parameters = args.join(', '); + console.log(`event with parameters ${parameters} in third listener`); +}); + +console.log(myEmitter.listeners('event')); + +myEmitter.emit('event', 1, 2, 3, 4, 5); + +// Prints: +// [ +// [Function: firstListener], +// [Function: secondListener], +// [Function: thirdListener] +// ] +// Helloooo! first listener +// event with parameters 1, 2 in second listener +// event with parameters 1, 2, 3, 4, 5 in third listener +``` + +```cjs const EventEmitter = require('node:events'); const myEmitter = new EventEmitter(); @@ -381,8 +453,23 @@ added: v6.0.0 Returns an array listing the events for which the emitter has registered listeners. The values in the array are strings or `Symbol`s. -```js +```mjs +import { EventEmitter } from 'node:events'; + +const myEE = new EventEmitter(); +myEE.on('foo', () => {}); +myEE.on('bar', () => {}); + +const sym = Symbol('symbol'); +myEE.on(sym, () => {}); + +console.log(myEE.eventNames()); +// Prints: [ 'foo', 'bar', Symbol(symbol) ] +``` + +```cjs const EventEmitter = require('node:events'); + const myEE = new EventEmitter(); myEE.on('foo', () => {}); myEE.on('bar', () => {}); @@ -757,7 +844,26 @@ promise rejection happens when emitting an event and It is possible to use [`events.captureRejectionSymbol`][rejectionsymbol] in place of `Symbol.for('nodejs.rejection')`. -```js +```mjs +import { EventEmitter, captureRejectionSymbol } from 'node:events'; + +class MyClass extends EventEmitter { + constructor() { + super({ captureRejections: true }); + } + + [captureRejectionSymbol](err, event, ...args) { + console.log('rejection happened for', event, 'with', err, ...args); + this.destroy(err); + } + + destroy(err) { + // Tear the resource down here. + } +} +``` + +```cjs const { EventEmitter, captureRejectionSymbol } = require('node:events'); class MyClass extends EventEmitter { @@ -853,7 +959,24 @@ the emitter. For `EventTarget`s this is the only way to get the event listeners for the event target. This is useful for debugging and diagnostic purposes. -```js +```mjs +import { getEventListeners, EventEmitter } from 'node:events'; + +{ + const ee = new EventEmitter(); + const listener = () => console.log('Events are fun'); + ee.on('foo', listener); + getEventListeners(ee, 'foo'); // [listener] +} +{ + const et = new EventTarget(); + const listener = () => console.log('Events are fun'); + et.addEventListener('foo', listener); + getEventListeners(et, 'foo'); // [listener] +} +``` + +```cjs const { getEventListeners, EventEmitter } = require('node:events'); { @@ -897,7 +1020,32 @@ This method is intentionally generic and works with the web platform [EventTarget][WHATWG-EventTarget] interface, which has no special `'error'` event semantics and does not listen to the `'error'` event. -```js +```mjs +import { once, EventEmitter } from 'node:events'; +import process from 'node:process'; + +const ee = new EventEmitter(); + +process.nextTick(() => { + ee.emit('myevent', 42); +}); + +const [value] = await once(ee, 'myevent'); +console.log(value); + +const err = new Error('kaboom'); +process.nextTick(() => { + ee.emit('error', err); +}); + +try { + await once(ee, 'myevent'); +} catch (err) { + console.log('error happened', err); +} +``` + +```cjs const { once, EventEmitter } = require('node:events'); async function run() { @@ -930,7 +1078,21 @@ is used to wait for another event. If `events.once()` is used to wait for the '`error'` event itself, then it is treated as any other kind of event without special handling: -```js +```mjs +import { EventEmitter, once } from 'node:events'; + +const ee = new EventEmitter(); + +once(ee, 'error') + .then(([err]) => console.log('ok', err.message)) + .catch((err) => console.log('error', err.message)); + +ee.emit('error', new Error('boom')); + +// Prints: ok boom +``` + +```cjs const { EventEmitter, once } = require('node:events'); const ee = new EventEmitter(); @@ -946,7 +1108,31 @@ ee.emit('error', new Error('boom')); An {AbortSignal} can be used to cancel waiting for the event: -```js +```mjs +import { EventEmitter, once } from 'node:events'; + +const ee = new EventEmitter(); +const ac = new AbortController(); + +async function foo(emitter, event, signal) { + try { + await once(emitter, event, { signal }); + console.log('event emitted!'); + } catch (error) { + if (error.name === 'AbortError') { + console.error('Waiting for the event was canceled!'); + } else { + console.error('There was an error', error.message); + } + } +} + +foo(ee, 'foo', ac.signal); +ac.abort(); // Abort waiting for the event +ee.emit('foo'); // Prints: Waiting for the event was canceled! +``` + +```cjs const { EventEmitter, once } = require('node:events'); const ee = new EventEmitter(); @@ -979,7 +1165,31 @@ because the `process.nextTick()` queue is drained before the `Promise` microtask queue, and because `EventEmitter` emits all events synchronously, it is possible for `events.once()` to miss an event. -```js +```mjs +import { EventEmitter, once } from 'node:events'; +import process from 'node:process'; + +const myEE = new EventEmitter(); + +async function foo() { + await once(myEE, 'bar'); + console.log('bar'); + + // This Promise will never resolve because the 'foo' event will + // have already been emitted before the Promise is created. + await once(myEE, 'foo'); + console.log('foo'); +} + +process.nextTick(() => { + myEE.emit('bar'); + myEE.emit('foo'); +}); + +foo().then(() => console.log('done')); +``` + +```cjs const { EventEmitter, once } = require('node:events'); const myEE = new EventEmitter(); @@ -1006,7 +1216,26 @@ To catch both events, create each of the Promises _before_ awaiting either of them, then it becomes possible to use `Promise.all()`, `Promise.race()`, or `Promise.allSettled()`: -```js +```mjs +import { EventEmitter, once } from 'node:events'; +import process from 'node:process'; + +const myEE = new EventEmitter(); + +async function foo() { + await Promise.all([once(myEE, 'bar'), once(myEE, 'foo')]); + console.log('foo', 'bar'); +} + +process.nextTick(() => { + myEE.emit('bar'); + myEE.emit('foo'); +}); + +foo().then(() => console.log('done')); +``` + +```cjs const { EventEmitter, once } = require('node:events'); const myEE = new EventEmitter(); @@ -1075,8 +1304,19 @@ deprecated: v3.2.0 A class method that returns the number of listeners for the given `eventName` registered on the given `emitter`. -```js +```mjs +import { EventEmitter, listenerCount } from 'node:events'; + +const myEmitter = new EventEmitter(); +myEmitter.on('event', () => {}); +myEmitter.on('event', () => {}); +console.log(listenerCount(myEmitter, 'event')); +// Prints: 2 +``` + +```cjs const { EventEmitter, listenerCount } = require('node:events'); + const myEmitter = new EventEmitter(); myEmitter.on('event', () => {}); myEmitter.on('event', () => {}); @@ -1098,7 +1338,28 @@ added: * `signal` {AbortSignal} Can be used to cancel awaiting events. * Returns: {AsyncIterator} that iterates `eventName` events emitted by the `emitter` -```js +```mjs +import { on, EventEmitter } from 'node:events'; +import process from 'node:process'; + +const ee = new EventEmitter(); + +// Emit later on +process.nextTick(() => { + ee.emit('foo', 'bar'); + ee.emit('foo', 42); +}); + +for await (const event of on(ee, 'foo')) { + // The execution of this inner block is synchronous and it + // processes one event at a time (even with await). Do not use + // if concurrent execution is required. + console.log(event); // prints ['bar'] [42] +} +// Unreachable here +``` + +```cjs const { on, EventEmitter } = require('node:events'); (async () => { @@ -1127,8 +1388,36 @@ composed of the emitted event arguments. An {AbortSignal} can be used to cancel waiting on events: -```js +```mjs +import { on, EventEmitter } from 'node:events'; +import process from 'node:process'; + +const ac = new AbortController(); + +(async () => { + const ee = new EventEmitter(); + + // Emit later on + process.nextTick(() => { + ee.emit('foo', 'bar'); + ee.emit('foo', 42); + }); + + for await (const event of on(ee, 'foo', { signal: ac.signal })) { + // The execution of this inner block is synchronous and it + // processes one event at a time (even with await). Do not use + // if concurrent execution is required. + console.log(event); // prints ['bar'] [42] + } + // Unreachable here +})(); + +process.nextTick(() => ac.abort()); +``` + +```cjs const { on, EventEmitter } = require('node:events'); + const ac = new AbortController(); (async () => { @@ -1164,7 +1453,16 @@ added: v15.4.0 or {EventEmitter} instances. If none are specified, `n` is set as the default max for all newly created {EventTarget} and {EventEmitter} objects. -```js +```mjs +import { setMaxListeners, EventEmitter } from 'node:events'; + +const target = new EventTarget(); +const emitter = new EventEmitter(); + +setMaxListeners(5, target, emitter); +``` + +```cjs const { setMaxListeners, EventEmitter @@ -1188,7 +1486,36 @@ Integrates `EventEmitter` with {AsyncResource} for `EventEmitter`s that require manual async tracking. Specifically, all events emitted by instances of `events.EventEmitterAsyncResource` will run within its [async context][]. -```js +```mjs +import { EventEmitterAsyncResource } from 'node:events'; +import { notStrictEqual, strictEqual } from 'node:assert'; +import { executionAsyncId } from 'node:async_hooks'; + +// Async tracking tooling will identify this as 'Q'. +const ee1 = new EventEmitterAsyncResource({ name: 'Q' }); + +// 'foo' listeners will run in the EventEmitters async context. +ee1.on('foo', () => { + strictEqual(executionAsyncId(), ee1.asyncId); + strictEqual(triggerAsyncId(), ee1.triggerAsyncId); +}); + +const ee2 = new EventEmitter(); + +// 'foo' listeners on ordinary EventEmitters that do not track async +// context, however, run in the same async context as the emit(). +ee2.on('foo', () => { + notStrictEqual(executionAsyncId(), ee2.asyncId); + notStrictEqual(triggerAsyncId(), ee2.triggerAsyncId); +}); + +Promise.resolve().then(() => { + ee1.emit('foo'); + ee2.emit('foo'); +}); +``` + +```cjs const { EventEmitterAsyncResource } = require('node:events'); const { notStrictEqual, strictEqual } = require('node:assert'); const { executionAsyncId } = require('node:async_hooks'); From 3b0703fd0dc65e64ecd85ee4a9bcc7ace32a5fe7 Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Sun, 19 Jun 2022 07:19:48 +0900 Subject: [PATCH 034/175] test: rename `test-eventtarget-whatwg-*.js` This renames some test filenames to align with the existing `parallel/test-whatwg-*.js` for consistency. According to the comment in each file, they are seemingly manually ported from the `wpt@dom/events` tests. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: https://github.com/nodejs/node/pull/43467 Refs: https://github.com/nodejs/node/pull/43461 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel --- ...e.js => test-whatwg-events-add-event-listener-options-once.js} | 0 ...s => test-whatwg-events-add-event-listener-options-passive.js} | 0 ...js => test-whatwg-events-add-event-listener-options-signal.js} | 0 ...et-whatwg-customevent.js => test-whatwg-events-customevent.js} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename test/parallel/{test-eventtarget-whatwg-once.js => test-whatwg-events-add-event-listener-options-once.js} (100%) rename test/parallel/{test-eventtarget-whatwg-passive.js => test-whatwg-events-add-event-listener-options-passive.js} (100%) rename test/parallel/{test-eventtarget-whatwg-signal.js => test-whatwg-events-add-event-listener-options-signal.js} (100%) rename test/parallel/{test-eventtarget-whatwg-customevent.js => test-whatwg-events-customevent.js} (100%) diff --git a/test/parallel/test-eventtarget-whatwg-once.js b/test/parallel/test-whatwg-events-add-event-listener-options-once.js similarity index 100% rename from test/parallel/test-eventtarget-whatwg-once.js rename to test/parallel/test-whatwg-events-add-event-listener-options-once.js diff --git a/test/parallel/test-eventtarget-whatwg-passive.js b/test/parallel/test-whatwg-events-add-event-listener-options-passive.js similarity index 100% rename from test/parallel/test-eventtarget-whatwg-passive.js rename to test/parallel/test-whatwg-events-add-event-listener-options-passive.js diff --git a/test/parallel/test-eventtarget-whatwg-signal.js b/test/parallel/test-whatwg-events-add-event-listener-options-signal.js similarity index 100% rename from test/parallel/test-eventtarget-whatwg-signal.js rename to test/parallel/test-whatwg-events-add-event-listener-options-signal.js diff --git a/test/parallel/test-eventtarget-whatwg-customevent.js b/test/parallel/test-whatwg-events-customevent.js similarity index 100% rename from test/parallel/test-eventtarget-whatwg-customevent.js rename to test/parallel/test-whatwg-events-customevent.js From 324728094c1c892d8ce2577cbb716bec0f6b6822 Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Sun, 19 Jun 2022 15:43:59 +0800 Subject: [PATCH 035/175] doc: update v8 doc link to v8.dev PR-URL: https://github.com/nodejs/node/pull/43482 Reviewed-By: Luigi Pinca Reviewed-By: Harshitha K P Reviewed-By: Antoine du Hamel --- doc/api/errors.md | 2 +- doc/contributing/maintaining-V8.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/errors.md b/doc/api/errors.md index e9a5a8230dd38b..cdd57ceafac249 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -3449,7 +3449,7 @@ The native call from `process.cpuUsage` could not be processed. [Node.js error codes]: #nodejs-error-codes [RFC 7230 Section 3]: https://tools.ietf.org/html/rfc7230#section-3 [Subresource Integrity specification]: https://www.w3.org/TR/SRI/#the-integrity-attribute -[V8's stack trace API]: https://github.com/v8/v8/wiki/Stack-Trace-API +[V8's stack trace API]: https://v8.dev/docs/stack-trace-api [WHATWG Supported Encodings]: util.md#whatwg-supported-encodings [WHATWG URL API]: url.md#the-whatwg-url-api [`"exports"`]: packages.md#exports diff --git a/doc/contributing/maintaining-V8.md b/doc/contributing/maintaining-V8.md index 18f63f9cdca0ff..fde030b2e95712 100644 --- a/doc/contributing/maintaining-V8.md +++ b/doc/contributing/maintaining-V8.md @@ -423,8 +423,8 @@ This would require some tooling to: [NodeJS-Backport-Review-V8]: https://bugs.chromium.org/p/v8/issues/list?can=1&q=label%3ANodeJS-Backport-Review [V8 CI]: https://ci.nodejs.org/job/node-test-commit-v8-linux/ [V8ActiveBranches]: https://build.chromium.org/p/client.v8.branches/console -[V8Contributing]: https://github.com/v8/v8/wiki/Contributing -[V8MergingPatching]: https://github.com/v8/v8/wiki/Merging%20&%20Patching +[V8Contributing]: https://v8.dev/docs/contribute +[V8MergingPatching]: https://v8.dev/docs/merge-patch [V8TemplateMergeRequest]: https://bugs.chromium.org/p/v8/issues/entry?template=Node.js%20merge%20request [V8TemplateUpstreamBug]: https://bugs.chromium.org/p/v8/issues/entry?template=Node.js%20upstream%20bug [`git-node`]: https://github.com/nodejs/node-core-utils/blob/HEAD/docs/git-node.md#git-node-v8 From dda64ddfbd93a589e1dbd6f719d510908d0d0cb5 Mon Sep 17 00:00:00 2001 From: Moshe Atlow Date: Sun, 19 Jun 2022 10:58:48 +0300 Subject: [PATCH 036/175] test_runner: add Subtest to tap protocol output PR-URL: https://github.com/nodejs/node/pull/43417 Reviewed-By: Benjamin Gruenbaum Reviewed-By: James M Snell Reviewed-By: Colin Ihrig --- lib/internal/test_runner/tap_stream.js | 4 ++ lib/internal/test_runner/test.js | 6 ++ test/message/test_runner_no_refs.out | 2 + test/message/test_runner_only_tests.out | 23 ++++++ test/message/test_runner_output.out | 71 +++++++++++++++++++ .../test_runner_unresolved_promise.out | 3 + 6 files changed, 109 insertions(+) diff --git a/lib/internal/test_runner/tap_stream.js b/lib/internal/test_runner/tap_stream.js index a6bfbb3367cd79..ca0c101aa9260c 100644 --- a/lib/internal/test_runner/tap_stream.js +++ b/lib/internal/test_runner/tap_stream.js @@ -71,6 +71,10 @@ class TapStream extends Readable { return `TODO${reason ? ` ${tapEscape(reason)}` : ''}`; } + subtest(indent, name) { + this.#tryPush(`${indent}# Subtest: ${tapEscape(name)}\n`); + } + details(indent, duration, error) { let details = `${indent} ---\n`; diff --git a/lib/internal/test_runner/test.js b/lib/internal/test_runner/test.js index cac379b32582a4..2876b3d66640cd 100644 --- a/lib/internal/test_runner/test.js +++ b/lib/internal/test_runner/test.js @@ -183,6 +183,10 @@ class Test extends AsyncResource { return; } + if (i === 1 && this.parent !== null) { + this.reporter.subtest(this.indent, this.name); + } + // Report the subtest's results and remove it from the ready map. subtest.finalize(); this.readySubtests.delete(i); @@ -416,6 +420,8 @@ class Test extends AsyncResource { // Output this test's results and update the parent's waiting counter. if (this.subtests.length > 0) { this.reporter.plan(this.subtests[0].indent, this.subtests.length); + } else { + this.reporter.subtest(this.indent, this.name); } this.report(); diff --git a/test/message/test_runner_no_refs.out b/test/message/test_runner_no_refs.out index c5407e3bd330c0..078ab7c390e488 100644 --- a/test/message/test_runner_no_refs.out +++ b/test/message/test_runner_no_refs.out @@ -1,4 +1,6 @@ TAP version 13 +# Subtest: does not keep event loop alive + # Subtest: +does not keep event loop alive not ok 1 - +does not keep event loop alive --- duration_ms: * diff --git a/test/message/test_runner_only_tests.out b/test/message/test_runner_only_tests.out index 76e6337bb8953d..b65958b010f8ad 100644 --- a/test/message/test_runner_only_tests.out +++ b/test/message/test_runner_only_tests.out @@ -1,76 +1,97 @@ TAP version 13 +# Subtest: only = undefined ok 1 - only = undefined # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = undefined, skip = string ok 2 - only = undefined, skip = string # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = undefined, skip = true ok 3 - only = undefined, skip = true # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = undefined, skip = false ok 4 - only = undefined, skip = false # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = false ok 5 - only = false # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = false, skip = string ok 6 - only = false, skip = string # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = false, skip = true ok 7 - only = false, skip = true # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = false, skip = false ok 8 - only = false, skip = false # SKIP 'only' option not set --- duration_ms: * ... +# Subtest: only = true, skip = string ok 9 - only = true, skip = string # SKIP skip message --- duration_ms: * ... +# Subtest: only = true, skip = true ok 10 - only = true, skip = true # SKIP --- duration_ms: * ... +# Subtest: only = true, with subtests + # Subtest: running subtest 1 ok 1 - running subtest 1 --- duration_ms: * ... + # Subtest: running subtest 2 ok 2 - running subtest 2 --- duration_ms: * ... + # Subtest: skipped subtest 1 ok 3 - skipped subtest 1 # SKIP 'only' option not set --- duration_ms: * ... + # Subtest: skipped subtest 2 ok 4 - skipped subtest 2 # SKIP 'only' option not set --- duration_ms: * ... + # Subtest: running subtest 3 ok 5 - running subtest 3 --- duration_ms: * ... + # Subtest: running subtest 4 + # Subtest: running sub-subtest 1 ok 1 - running sub-subtest 1 --- duration_ms: * ... + # Subtest: running sub-subtest 2 ok 2 - running sub-subtest 2 --- duration_ms: * ... + # Subtest: skipped sub-subtest 1 ok 3 - skipped sub-subtest 1 # SKIP 'only' option not set --- duration_ms: * ... + # Subtest: skipped sub-subtest 2 ok 4 - skipped sub-subtest 2 # SKIP 'only' option not set --- duration_ms: * @@ -80,10 +101,12 @@ ok 10 - only = true, skip = true # SKIP --- duration_ms: * ... + # Subtest: skipped subtest 3 ok 7 - skipped subtest 3 # SKIP 'only' option not set --- duration_ms: * ... + # Subtest: skipped subtest 4 ok 8 - skipped subtest 4 # SKIP --- duration_ms: * diff --git a/test/message/test_runner_output.out b/test/message/test_runner_output.out index 6c2fa7eb14cc72..2f6e2502749068 100644 --- a/test/message/test_runner_output.out +++ b/test/message/test_runner_output.out @@ -1,12 +1,15 @@ TAP version 13 +# Subtest: sync pass todo ok 1 - sync pass todo # TODO --- duration_ms: * ... +# Subtest: sync pass todo with message ok 2 - sync pass todo with message # TODO this is a passing todo --- duration_ms: * ... +# Subtest: sync fail todo not ok 3 - sync fail todo # TODO --- duration_ms: * @@ -23,6 +26,7 @@ not ok 3 - sync fail todo # TODO * * ... +# Subtest: sync fail todo with message not ok 4 - sync fail todo with message # TODO this is a failing todo --- duration_ms: * @@ -41,19 +45,23 @@ not ok 4 - sync fail todo with message # TODO this is a failing todo * * ... +# Subtest: sync skip pass ok 5 - sync skip pass # SKIP --- duration_ms: * ... +# Subtest: sync skip pass with message ok 6 - sync skip pass with message # SKIP this is skipped --- duration_ms: * ... +# Subtest: sync pass ok 7 - sync pass --- duration_ms: * ... # this test should pass +# Subtest: sync throw fail not ok 8 - sync throw fail --- duration_ms: * @@ -70,14 +78,17 @@ not ok 8 - sync throw fail * * ... +# Subtest: async skip pass ok 9 - async skip pass # SKIP --- duration_ms: * ... +# Subtest: async pass ok 10 - async pass --- duration_ms: * ... +# Subtest: async throw fail not ok 11 - async throw fail --- duration_ms: * @@ -94,6 +105,7 @@ not ok 11 - async throw fail * * ... +# Subtest: async skip fail not ok 12 - async skip fail # SKIP --- duration_ms: * @@ -110,6 +122,7 @@ not ok 12 - async skip fail # SKIP * * ... +# Subtest: async assertion fail not ok 13 - async assertion fail --- duration_ms: * @@ -130,10 +143,12 @@ not ok 13 - async assertion fail * * ... +# Subtest: resolve pass ok 14 - resolve pass --- duration_ms: * ... +# Subtest: reject fail not ok 15 - reject fail --- duration_ms: * @@ -150,26 +165,33 @@ not ok 15 - reject fail * * ... +# Subtest: unhandled rejection - passes but warns ok 16 - unhandled rejection - passes but warns --- duration_ms: * ... +# Subtest: async unhandled rejection - passes but warns ok 17 - async unhandled rejection - passes but warns --- duration_ms: * ... +# Subtest: immediate throw - passes but warns ok 18 - immediate throw - passes but warns --- duration_ms: * ... +# Subtest: immediate reject - passes but warns ok 19 - immediate reject - passes but warns --- duration_ms: * ... +# Subtest: immediate resolve pass ok 20 - immediate resolve pass --- duration_ms: * ... +# Subtest: subtest sync throw fail + # Subtest: +sync throw fail not ok 1 - +sync throw fail --- duration_ms: * @@ -197,6 +219,7 @@ not ok 21 - subtest sync throw fail error: '1 subtest failed' code: 'ERR_TEST_FAILURE' ... +# Subtest: sync throw non-error fail not ok 22 - sync throw non-error fail --- duration_ms: * @@ -204,18 +227,23 @@ not ok 22 - sync throw non-error fail error: 'Symbol(thrown symbol from sync throw non-error fail)' code: 'ERR_TEST_FAILURE' ... +# Subtest: level 0a + # Subtest: level 1a ok 1 - level 1a --- duration_ms: * ... + # Subtest: level 1b ok 2 - level 1b --- duration_ms: * ... + # Subtest: level 1c ok 3 - level 1c --- duration_ms: * ... + # Subtest: level 1d ok 4 - level 1d --- duration_ms: * @@ -225,6 +253,8 @@ ok 23 - level 0a --- duration_ms: * ... +# Subtest: top level + # Subtest: +long running not ok 1 - +long running --- duration_ms: * @@ -232,6 +262,8 @@ ok 23 - level 0a error: 'test did not finish before its parent and was cancelled' code: 'ERR_TEST_FAILURE' ... + # Subtest: +short running + # Subtest: ++short running ok 1 - ++short running --- duration_ms: * @@ -249,18 +281,22 @@ not ok 24 - top level error: '1 subtest failed' code: 'ERR_TEST_FAILURE' ... +# Subtest: invalid subtest - pass but subtest fails ok 25 - invalid subtest - pass but subtest fails --- duration_ms: * ... +# Subtest: sync skip option ok 26 - sync skip option # SKIP --- duration_ms: * ... +# Subtest: sync skip option with message ok 27 - sync skip option with message # SKIP this is skipped --- duration_ms: * ... +# Subtest: sync skip option is false fail not ok 28 - sync skip option is false fail --- duration_ms: * @@ -276,59 +312,73 @@ not ok 28 - sync skip option is false fail * * ... +# Subtest: ok 29 - --- duration_ms: * ... +# Subtest: functionOnly ok 30 - functionOnly --- duration_ms: * ... +# Subtest: ok 31 - --- duration_ms: * ... +# Subtest: test with only a name provided ok 32 - test with only a name provided --- duration_ms: * ... +# Subtest: ok 33 - --- duration_ms: * ... +# Subtest: ok 34 - # SKIP --- duration_ms: * ... +# Subtest: test with a name and options provided ok 35 - test with a name and options provided # SKIP --- duration_ms: * ... +# Subtest: functionAndOptions ok 36 - functionAndOptions # SKIP --- duration_ms: * ... +# Subtest: escaped description \\ \# \\\#\\ ok 37 - escaped description \\ \# \\\#\\ --- duration_ms: * ... +# Subtest: escaped skip message ok 38 - escaped skip message # SKIP \#skip --- duration_ms: * ... +# Subtest: escaped todo message ok 39 - escaped todo message # TODO \#todo --- duration_ms: * ... +# Subtest: escaped diagnostic ok 40 - escaped diagnostic --- duration_ms: * ... # \#diagnostic +# Subtest: callback pass ok 41 - callback pass --- duration_ms: * ... +# Subtest: callback fail not ok 42 - callback fail --- duration_ms: * @@ -339,18 +389,22 @@ not ok 42 - callback fail * * ... +# Subtest: sync t is this in test ok 43 - sync t is this in test --- duration_ms: * ... +# Subtest: async t is this in test ok 44 - async t is this in test --- duration_ms: * ... +# Subtest: callback t is this in test ok 45 - callback t is this in test --- duration_ms: * ... +# Subtest: callback also returns a Promise not ok 46 - callback also returns a Promise --- duration_ms: * @@ -358,6 +412,7 @@ not ok 46 - callback also returns a Promise error: 'passed a callback but also returned a Promise' code: 'ERR_TEST_FAILURE' ... +# Subtest: callback throw not ok 47 - callback throw --- duration_ms: * @@ -373,6 +428,7 @@ not ok 47 - callback throw * * ... +# Subtest: callback called twice not ok 48 - callback called twice --- duration_ms: * @@ -383,10 +439,12 @@ not ok 48 - callback called twice * * ... +# Subtest: callback called twice in different ticks ok 49 - callback called twice in different ticks --- duration_ms: * ... +# Subtest: callback called twice in future tick not ok 50 - callback called twice in future tick --- duration_ms: * @@ -396,6 +454,7 @@ not ok 50 - callback called twice in future tick stack: |- * ... +# Subtest: callback async throw not ok 51 - callback async throw --- duration_ms: * @@ -405,22 +464,28 @@ not ok 51 - callback async throw stack: |- * ... +# Subtest: callback async throw after done ok 52 - callback async throw after done --- duration_ms: * ... +# Subtest: only is set but not in only mode + # Subtest: running subtest 1 ok 1 - running subtest 1 --- duration_ms: * ... + # Subtest: running subtest 2 ok 2 - running subtest 2 --- duration_ms: * ... + # Subtest: running subtest 3 ok 3 - running subtest 3 --- duration_ms: * ... + # Subtest: running subtest 4 ok 4 - running subtest 4 --- duration_ms: * @@ -430,6 +495,7 @@ ok 53 - only is set but not in only mode --- duration_ms: * ... +# Subtest: custom inspect symbol fail not ok 54 - custom inspect symbol fail --- duration_ms: * @@ -437,6 +503,7 @@ not ok 54 - custom inspect symbol fail error: 'customized' code: 'ERR_TEST_FAILURE' ... +# Subtest: custom inspect symbol that throws fail not ok 55 - custom inspect symbol that throws fail --- duration_ms: * @@ -448,6 +515,8 @@ not ok 55 - custom inspect symbol that throws fail } code: 'ERR_TEST_FAILURE' ... +# Subtest: subtest sync throw fails + # Subtest: sync throw fails at first not ok 1 - sync throw fails at first --- duration_ms: * @@ -466,6 +535,7 @@ not ok 55 - custom inspect symbol that throws fail * * ... + # Subtest: sync throw fails at second not ok 2 - sync throw fails at second --- duration_ms: * @@ -492,6 +562,7 @@ not ok 56 - subtest sync throw fails error: '2 subtests failed' code: 'ERR_TEST_FAILURE' ... +# Subtest: invalid subtest fail not ok 57 - invalid subtest fail --- duration_ms: * diff --git a/test/message/test_runner_unresolved_promise.out b/test/message/test_runner_unresolved_promise.out index 98f52966c33bcb..58b3a4ed89a616 100644 --- a/test/message/test_runner_unresolved_promise.out +++ b/test/message/test_runner_unresolved_promise.out @@ -1,8 +1,10 @@ TAP version 13 +# Subtest: pass ok 1 - pass --- duration_ms: * ... +# Subtest: never resolving promise not ok 2 - never resolving promise --- duration_ms: * @@ -12,6 +14,7 @@ not ok 2 - never resolving promise stack: |- * ... +# Subtest: fail not ok 3 - fail --- duration_ms: * From b1a77988215b6ae1e41a5d0029edd8a2e6a75407 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Sun, 19 Jun 2022 11:02:50 +0200 Subject: [PATCH 037/175] test: skip test-net-connect-reset-until-connected on SmartOS Refs: #43446 PR-URL: https://github.com/nodejs/node/pull/43449 Refs: https://github.com/nodejs/node/issues/43446 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel --- test/parallel/parallel.status | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index 00214aad81712d..3aa8d4592d62af 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -37,6 +37,8 @@ test-crypto-keygen: SKIP test-net-socket-connect-without-cb: SKIP test-net-socket-ready-without-cb: SKIP test-tcp-wrap-listen: SKIP +# https://github.com/nodejs/node/issues/43446 +test-net-connect-reset-until-connected: PASS, FLAKY [$system==freebsd] # https://github.com/nodejs/node/issues/31727 From a9ab41cb38c96d0bcd3bb39f3b18e9cbf2638e63 Mon Sep 17 00:00:00 2001 From: Meek Simbule <55823259+meekdenzo@users.noreply.github.com> Date: Sun, 19 Jun 2022 05:04:48 -0500 Subject: [PATCH 038/175] test: refactor to top-level await PR-URL: https://github.com/nodejs/node/pull/43366 Reviewed-By: James M Snell Reviewed-By: Rich Trott --- ...> test-debugger-extract-function-name.mjs} | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) rename test/parallel/{test-debugger-extract-function-name.js => test-debugger-extract-function-name.mjs} (72%) diff --git a/test/parallel/test-debugger-extract-function-name.js b/test/parallel/test-debugger-extract-function-name.mjs similarity index 72% rename from test/parallel/test-debugger-extract-function-name.js rename to test/parallel/test-debugger-extract-function-name.mjs index 0f43ae65837831..e457fc7f521521 100644 --- a/test/parallel/test-debugger-extract-function-name.js +++ b/test/parallel/test-debugger-extract-function-name.mjs @@ -1,16 +1,15 @@ -'use strict'; -const common = require('../common'); +import { skipIfInspectorDisabled } from '../common/index.mjs'; -common.skipIfInspectorDisabled(); +skipIfInspectorDisabled(); -const fixtures = require('../common/fixtures'); -const startCLI = require('../common/debugger'); +import { path } from '../common/fixtures.mjs'; +import startCLI from '../common/debugger.js'; -const assert = require('assert'); +import assert from 'assert'; -const cli = startCLI([fixtures.path('debugger', 'three-lines.js')]); +const cli = startCLI([path('debugger', 'three-lines.js')]); -(async () => { +try { await cli.waitForInitialBreak(); await cli.waitForPrompt(); await cli.command('exec a = function func() {}; a;'); @@ -29,6 +28,6 @@ const cli = startCLI([fixtures.path('debugger', 'three-lines.js')]); assert.match(cli.output, /\[GeneratorFunction: function\*func\]/); await cli.command('exec a = function * func() {}; a;'); assert.match(cli.output, /\[GeneratorFunction\]/); -})() -.finally(() => cli.quit()) -.then(common.mustCall()); +} finally { + cli.quit(); +} From cad6d990eccb3b44be5066dbb5b74939bc434893 Mon Sep 17 00:00:00 2001 From: rubikscraft Date: Sat, 30 Apr 2022 23:00:33 +0200 Subject: [PATCH 039/175] child_process: speed up 'advanced' ipc receiving PR-URL: https://github.com/nodejs/node/pull/42931 Reviewed-By: Ruben Bridgewater Reviewed-By: Luigi Pinca Reviewed-By: Zeyu "Alex" Yang --- lib/internal/child_process/serialization.js | 44 +++++++++++++++------ 1 file changed, 33 insertions(+), 11 deletions(-) diff --git a/lib/internal/child_process/serialization.js b/lib/internal/child_process/serialization.js index ec858f401bea9e..f8b919ba300179 100644 --- a/lib/internal/child_process/serialization.js +++ b/lib/internal/child_process/serialization.js @@ -4,6 +4,8 @@ const { JSONParse, JSONStringify, StringPrototypeSplit, + ArrayPrototypePush, + ReflectApply, Symbol, TypedArrayPrototypeSubarray, } = primordials; @@ -13,8 +15,10 @@ const v8 = require('v8'); const { isArrayBufferView } = require('internal/util/types'); const assert = require('internal/assert'); const { streamBaseState, kLastWriteWasAsync } = internalBinding('stream_wrap'); +const { readUInt32BE } = require('internal/buffer'); const kMessageBuffer = Symbol('kMessageBuffer'); +const kMessageBufferSize = Symbol('kMessageBufferSize'); const kJSONBuffer = Symbol('kJSONBuffer'); const kStringDecoder = Symbol('kStringDecoder'); @@ -51,29 +55,47 @@ class ChildProcessDeserializer extends v8.DefaultDeserializer { // (aka 'advanced') const advanced = { initMessageChannel(channel) { - channel[kMessageBuffer] = Buffer.alloc(0); + channel[kMessageBuffer] = []; + channel[kMessageBufferSize] = 0; channel.buffering = false; }, *parseChannelMessages(channel, readData) { if (readData.length === 0) return; - let messageBuffer = Buffer.concat([channel[kMessageBuffer], readData]); - while (messageBuffer.length > 4) { - const size = messageBuffer.readUInt32BE(); - if (messageBuffer.length < 4 + size) { - break; - } + ArrayPrototypePush(channel[kMessageBuffer], readData); + channel[kMessageBufferSize] += readData.length; + + // Index 0 should always be present because we just pushed data into it. + let messageBufferHead = channel[kMessageBuffer][0]; + while (messageBufferHead.length >= 4) { + // We call `readUInt32BE` manually here, because this is faster than first converting + // it to a buffer and using `readUInt32BE` on that. + const fullMessageSize = ReflectApply(readUInt32BE, messageBufferHead, [0]) + 4; + + if (channel[kMessageBufferSize] < fullMessageSize) break; + + const concatenatedBuffer = channel[kMessageBuffer].length === 1 ? + channel[kMessageBuffer][0] : + Buffer.concat( + channel[kMessageBuffer], + channel[kMessageBufferSize] + ); const deserializer = new ChildProcessDeserializer( - TypedArrayPrototypeSubarray(messageBuffer, 4, 4 + size)); - messageBuffer = TypedArrayPrototypeSubarray(messageBuffer, 4 + size); + TypedArrayPrototypeSubarray(concatenatedBuffer, 4, fullMessageSize) + ); + + messageBufferHead = TypedArrayPrototypeSubarray(concatenatedBuffer, fullMessageSize); + channel[kMessageBufferSize] = messageBufferHead.length; + channel[kMessageBuffer] = + channel[kMessageBufferSize] !== 0 ? [messageBufferHead] : []; deserializer.readHeader(); yield deserializer.readValue(); } - channel[kMessageBuffer] = messageBuffer; - channel.buffering = messageBuffer.length > 0; + + channel.buffering = channel[kMessageBufferSize] > 0; }, writeChannelMessage(channel, req, message, handle) { From 3ca9e653a6641c3bd9b065e38275533567fdfa87 Mon Sep 17 00:00:00 2001 From: rubikscraft Date: Wed, 15 Jun 2022 17:41:43 +0200 Subject: [PATCH 040/175] child_process: improve ipc write performance PR-URL: https://github.com/nodejs/node/pull/42931 Reviewed-By: Ruben Bridgewater Reviewed-By: Luigi Pinca Reviewed-By: Zeyu "Alex" Yang --- lib/internal/child_process/serialization.js | 34 +++++++++++++-------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/lib/internal/child_process/serialization.js b/lib/internal/child_process/serialization.js index f8b919ba300179..497bf233d77897 100644 --- a/lib/internal/child_process/serialization.js +++ b/lib/internal/child_process/serialization.js @@ -5,7 +5,6 @@ const { JSONStringify, StringPrototypeSplit, ArrayPrototypePush, - ReflectApply, Symbol, TypedArrayPrototypeSubarray, } = primordials; @@ -15,7 +14,6 @@ const v8 = require('v8'); const { isArrayBufferView } = require('internal/util/types'); const assert = require('internal/assert'); const { streamBaseState, kLastWriteWasAsync } = internalBinding('stream_wrap'); -const { readUInt32BE } = require('internal/buffer'); const kMessageBuffer = Symbol('kMessageBuffer'); const kMessageBufferSize = Symbol('kMessageBufferSize'); @@ -71,7 +69,12 @@ const advanced = { while (messageBufferHead.length >= 4) { // We call `readUInt32BE` manually here, because this is faster than first converting // it to a buffer and using `readUInt32BE` on that. - const fullMessageSize = ReflectApply(readUInt32BE, messageBufferHead, [0]) + 4; + const fullMessageSize = ( + messageBufferHead[0] << 24 | + messageBufferHead[1] << 16 | + messageBufferHead[2] << 8 | + messageBufferHead[3] + ) + 4; if (channel[kMessageBufferSize] < fullMessageSize) break; @@ -100,20 +103,27 @@ const advanced = { writeChannelMessage(channel, req, message, handle) { const ser = new ChildProcessSerializer(); + // Add 4 bytes, to later populate with message length + ser.writeRawBytes(Buffer.allocUnsafe(4)); ser.writeHeader(); ser.writeValue(message); + const serializedMessage = ser.releaseBuffer(); - const sizeBuffer = Buffer.allocUnsafe(4); - sizeBuffer.writeUInt32BE(serializedMessage.length); - - const buffer = Buffer.concat([ - sizeBuffer, - serializedMessage, - ]); - const result = channel.writeBuffer(req, buffer, handle); + const serializedMessageLength = serializedMessage.length - 4; + + serializedMessage.set([ + serializedMessageLength >> 24 & 0xFF, + serializedMessageLength >> 16 & 0xFF, + serializedMessageLength >> 8 & 0xFF, + serializedMessageLength & 0xFF, + ], 0); + + const result = channel.writeBuffer(req, serializedMessage, handle); + // Mirror what stream_base_commons.js does for Buffer retention. if (streamBaseState[kLastWriteWasAsync]) - req.buffer = buffer; + req.buffer = serializedMessage; + return result; }, }; From 1022c0d0d4729e9e9e0b880fba83aa9ee3589da1 Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Sun, 19 Jun 2022 18:19:52 +0200 Subject: [PATCH 041/175] test: fix flaky test-https-server-close- tests Don't initiate the second connection until the first has been established. Refs: https://github.com/nodejs/reliability/issues/289 PR-URL: https://github.com/nodejs/node/pull/43216 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- test/parallel/test-http-server-close-all.js | 40 ++++++------- test/parallel/test-http-server-close-idle.js | 56 ++++++++++--------- test/parallel/test-https-server-close-all.js | 40 ++++++------- test/parallel/test-https-server-close-idle.js | 56 ++++++++++--------- 4 files changed, 100 insertions(+), 92 deletions(-) diff --git a/test/parallel/test-http-server-close-all.js b/test/parallel/test-http-server-close-all.js index 79fc5c75b70daf..cf7d90b868162d 100644 --- a/test/parallel/test-http-server-close-all.js +++ b/test/parallel/test-http-server-close-all.js @@ -26,32 +26,34 @@ server.listen(0, function() { // Create a first request but never finish it const client1 = connect(port); - client1.on('close', common.mustCall()); - - client1.on('error', () => {}); + client1.on('connect', common.mustCall(() => { + // Create a second request, let it finish but leave the connection opened using HTTP keep-alive + const client2 = connect(port); + let response = ''; - client1.write('GET / HTTP/1.1'); + client2.on('data', common.mustCall((chunk) => { + response += chunk.toString('utf-8'); - // Create a second request, let it finish but leave the connection opened using HTTP keep-alive - const client2 = connect(port); - let response = ''; + if (response.endsWith('0\r\n\r\n')) { + assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); + assert.strictEqual(connections, 2); - client2.on('data', common.mustCall((chunk) => { - response += chunk.toString('utf-8'); + server.closeAllConnections(); + server.close(common.mustCall()); - if (response.endsWith('0\r\n\r\n')) { - assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); - assert.strictEqual(connections, 2); + // This timer should never go off as the server.close should shut everything down + setTimeout(common.mustNotCall(), common.platformTimeout(1500)).unref(); + } + })); - server.closeAllConnections(); - server.close(common.mustCall()); + client2.on('close', common.mustCall()); - // This timer should never go off as the server.close should shut everything down - setTimeout(common.mustNotCall(), common.platformTimeout(1500)).unref(); - } + client2.write('GET / HTTP/1.1\r\n\r\n'); })); - client2.on('close', common.mustCall()); + client1.on('close', common.mustCall()); + + client1.on('error', () => {}); - client2.write('GET / HTTP/1.1\r\n\r\n'); + client1.write('GET / HTTP/1.1'); }); diff --git a/test/parallel/test-http-server-close-idle.js b/test/parallel/test-http-server-close-idle.js index b9389f1e599c72..5218212996b159 100644 --- a/test/parallel/test-http-server-close-idle.js +++ b/test/parallel/test-http-server-close-idle.js @@ -28,42 +28,44 @@ server.listen(0, function() { // Create a first request but never finish it const client1 = connect(port); - client1.on('close', common.mustCall(() => { - client1Closed = true; - })); + client1.on('connect', common.mustCall(() => { + // Create a second request, let it finish but leave the connection opened using HTTP keep-alive + const client2 = connect(port); + let response = ''; - client1.on('error', () => {}); + client2.on('data', common.mustCall((chunk) => { + response += chunk.toString('utf-8'); - client1.write('GET / HTTP/1.1'); - - // Create a second request, let it finish but leave the connection opened using HTTP keep-alive - const client2 = connect(port); - let response = ''; + if (response.endsWith('0\r\n\r\n')) { + assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); + assert.strictEqual(connections, 2); - client2.on('data', common.mustCall((chunk) => { - response += chunk.toString('utf-8'); + server.closeIdleConnections(); + server.close(common.mustCall()); - if (response.endsWith('0\r\n\r\n')) { - assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); - assert.strictEqual(connections, 2); + // Check that only the idle connection got closed + setTimeout(common.mustCall(() => { + assert(!client1Closed); + assert(client2Closed); - server.closeIdleConnections(); - server.close(common.mustCall()); + server.closeAllConnections(); + server.close(common.mustCall()); + }), common.platformTimeout(500)).unref(); + } + })); - // Check that only the idle connection got closed - setTimeout(common.mustCall(() => { - assert(!client1Closed); - assert(client2Closed); + client2.on('close', common.mustCall(() => { + client2Closed = true; + })); - server.closeAllConnections(); - server.close(common.mustCall()); - }), common.platformTimeout(500)).unref(); - } + client2.write('GET / HTTP/1.1\r\n\r\n'); })); - client2.on('close', common.mustCall(() => { - client2Closed = true; + client1.on('close', common.mustCall(() => { + client1Closed = true; })); - client2.write('GET / HTTP/1.1\r\n\r\n'); + client1.on('error', () => {}); + + client1.write('GET / HTTP/1.1'); }); diff --git a/test/parallel/test-https-server-close-all.js b/test/parallel/test-https-server-close-all.js index 408af625d1f773..c388260db3b484 100644 --- a/test/parallel/test-https-server-close-all.js +++ b/test/parallel/test-https-server-close-all.js @@ -37,32 +37,34 @@ server.listen(0, function() { // Create a first request but never finish it const client1 = connect({ port, rejectUnauthorized: false }); - client1.on('close', common.mustCall()); - - client1.on('error', () => {}); + client1.on('connect', common.mustCall(() => { + // Create a second request, let it finish but leave the connection opened using HTTP keep-alive + const client2 = connect({ port, rejectUnauthorized: false }); + let response = ''; - client1.write('GET / HTTP/1.1'); + client2.on('data', common.mustCall((chunk) => { + response += chunk.toString('utf-8'); - // Create a second request, let it finish but leave the connection opened using HTTP keep-alive - const client2 = connect({ port, rejectUnauthorized: false }); - let response = ''; + if (response.endsWith('0\r\n\r\n')) { + assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); + assert.strictEqual(connections, 2); - client2.on('data', common.mustCall((chunk) => { - response += chunk.toString('utf-8'); + server.closeAllConnections(); + server.close(common.mustCall()); - if (response.endsWith('0\r\n\r\n')) { - assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); - assert.strictEqual(connections, 2); + // This timer should never go off as the server.close should shut everything down + setTimeout(common.mustNotCall(), common.platformTimeout(1500)).unref(); + } + })); - server.closeAllConnections(); - server.close(common.mustCall()); + client2.on('close', common.mustCall()); - // This timer should never go off as the server.close should shut everything down - setTimeout(common.mustNotCall(), common.platformTimeout(1500)).unref(); - } + client2.write('GET / HTTP/1.1\r\n\r\n'); })); - client2.on('close', common.mustCall()); + client1.on('close', common.mustCall()); + + client1.on('error', () => {}); - client2.write('GET / HTTP/1.1\r\n\r\n'); + client1.write('GET / HTTP/1.1'); }); diff --git a/test/parallel/test-https-server-close-idle.js b/test/parallel/test-https-server-close-idle.js index ea43c4367cb738..eb5a8c3585bb96 100644 --- a/test/parallel/test-https-server-close-idle.js +++ b/test/parallel/test-https-server-close-idle.js @@ -39,42 +39,44 @@ server.listen(0, function() { // Create a first request but never finish it const client1 = connect({ port, rejectUnauthorized: false }); - client1.on('close', common.mustCall(() => { - client1Closed = true; - })); + client1.on('connect', common.mustCall(() => { + // Create a second request, let it finish but leave the connection opened using HTTP keep-alive + const client2 = connect({ port, rejectUnauthorized: false }); + let response = ''; - client1.on('error', () => {}); + client2.on('data', common.mustCall((chunk) => { + response += chunk.toString('utf-8'); - client1.write('GET / HTTP/1.1'); - - // Create a second request, let it finish but leave the connection opened using HTTP keep-alive - const client2 = connect({ port, rejectUnauthorized: false }); - let response = ''; + if (response.endsWith('0\r\n\r\n')) { + assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); + assert.strictEqual(connections, 2); - client2.on('data', common.mustCall((chunk) => { - response += chunk.toString('utf-8'); + server.closeIdleConnections(); + server.close(common.mustCall()); - if (response.endsWith('0\r\n\r\n')) { - assert(response.startsWith('HTTP/1.1 200 OK\r\nConnection: keep-alive')); - assert.strictEqual(connections, 2); + // Check that only the idle connection got closed + setTimeout(common.mustCall(() => { + assert(!client1Closed); + assert(client2Closed); - server.closeIdleConnections(); - server.close(common.mustCall()); + server.closeAllConnections(); + server.close(common.mustCall()); + }), common.platformTimeout(500)).unref(); + } + })); - // Check that only the idle connection got closed - setTimeout(common.mustCall(() => { - assert(!client1Closed); - assert(client2Closed); + client2.on('close', common.mustCall(() => { + client2Closed = true; + })); - server.closeAllConnections(); - server.close(common.mustCall()); - }), common.platformTimeout(500)).unref(); - } + client2.write('GET / HTTP/1.1\r\n\r\n'); })); - client2.on('close', common.mustCall(() => { - client2Closed = true; + client1.on('close', common.mustCall(() => { + client1Closed = true; })); - client2.write('GET / HTTP/1.1\r\n\r\n'); + client1.on('error', () => {}); + + client1.write('GET / HTTP/1.1'); }); From 59d4da699e5631d721ffe3ea978c86130c63cfbd Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Sun, 19 Jun 2022 20:39:41 +0200 Subject: [PATCH 042/175] tools: update eslint to 8.18.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43479 Reviewed-By: Luigi Pinca Reviewed-By: Michaël Zasso Reviewed-By: Rich Trott Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Colin Ihrig --- lib/internal/streams/operators.js | 1 - test/parallel/test-fs-opendir.js | 2 +- .../test-stream-readable-async-iterators.js | 2 +- test/parallel/test-whatwg-readablestream.js | 2 - .../node_modules/eslint/lib/linter/linter.js | 2 +- .../node_modules/eslint/lib/linter/timing.js | 3 +- .../eslint/lib/rules/no-unused-vars.js | 8 +- .../eslint/lib/shared/deprecation-warnings.js | 9 +- .../compat-data/data/corejs2-built-ins.json | 134 +++++++++--------- .../@babel/compat-data/data/plugins.json | 12 +- .../@babel/compat-data/package.json | 2 +- .../@babel/core/lib/config/full.js | 2 +- .../node_modules/@babel/core/lib/index.js | 4 +- .../node_modules/@babel/core/lib/parse.js | 7 +- .../@babel/core/lib/transform-ast.js | 4 +- .../node_modules/@babel/core/lib/transform.js | 7 +- .../core/lib/transformation/normalize-file.js | 2 +- .../node_modules/@babel/core/package.json | 13 +- .../node_modules/@babel/parser/lib/index.js | 11 +- .../node_modules/@babel/parser/package.json | 2 +- .../@babel/traverse/lib/path/index.js | 3 + .../@babel/traverse/lib/path/introspection.js | 48 +++++-- .../node_modules/@babel/traverse/package.json | 6 +- .../eslint/node_modules/browserslist/index.js | 2 +- .../node_modules/browserslist/package.json | 8 +- .../node_modules/caniuse-lite/data/agents.js | 2 +- .../caniuse-lite/data/browserVersions.js | 2 +- .../caniuse-lite/data/features.js | 2 +- .../caniuse-lite/data/features/aac.js | 2 +- .../data/features/abortcontroller.js | 2 +- .../caniuse-lite/data/features/ac3-ec3.js | 2 +- .../data/features/accelerometer.js | 2 +- .../data/features/addeventlistener.js | 2 +- .../data/features/alternate-stylesheet.js | 2 +- .../data/features/ambient-light.js | 2 +- .../caniuse-lite/data/features/apng.js | 2 +- .../data/features/array-find-index.js | 2 +- .../caniuse-lite/data/features/array-find.js | 2 +- .../caniuse-lite/data/features/array-flat.js | 2 +- .../data/features/array-includes.js | 2 +- .../data/features/arrow-functions.js | 2 +- .../caniuse-lite/data/features/asmjs.js | 2 +- .../data/features/async-clipboard.js | 2 +- .../data/features/async-functions.js | 2 +- .../caniuse-lite/data/features/atob-btoa.js | 2 +- .../caniuse-lite/data/features/audio-api.js | 2 +- .../caniuse-lite/data/features/audio.js | 2 +- .../caniuse-lite/data/features/audiotracks.js | 2 +- .../caniuse-lite/data/features/autofocus.js | 2 +- .../caniuse-lite/data/features/auxclick.js | 2 +- .../caniuse-lite/data/features/av1.js | 2 +- .../caniuse-lite/data/features/avif.js | 2 +- .../data/features/background-attachment.js | 2 +- .../data/features/background-clip-text.js | 2 +- .../data/features/background-img-opts.js | 2 +- .../data/features/background-position-x-y.js | 2 +- .../features/background-repeat-round-space.js | 2 +- .../data/features/background-sync.js | 2 +- .../data/features/battery-status.js | 2 +- .../caniuse-lite/data/features/beacon.js | 2 +- .../data/features/beforeafterprint.js | 2 +- .../caniuse-lite/data/features/bigint.js | 2 +- .../caniuse-lite/data/features/blobbuilder.js | 2 +- .../caniuse-lite/data/features/bloburls.js | 2 +- .../data/features/border-image.js | 2 +- .../data/features/border-radius.js | 2 +- .../data/features/broadcastchannel.js | 2 +- .../caniuse-lite/data/features/brotli.js | 2 +- .../caniuse-lite/data/features/calc.js | 2 +- .../data/features/canvas-blending.js | 2 +- .../caniuse-lite/data/features/canvas-text.js | 2 +- .../caniuse-lite/data/features/canvas.js | 2 +- .../caniuse-lite/data/features/ch-unit.js | 2 +- .../data/features/chacha20-poly1305.js | 2 +- .../data/features/channel-messaging.js | 2 +- .../data/features/childnode-remove.js | 2 +- .../caniuse-lite/data/features/classlist.js | 2 +- .../client-hints-dpr-width-viewport.js | 2 +- .../caniuse-lite/data/features/clipboard.js | 2 +- .../caniuse-lite/data/features/colr-v1.js | 2 +- .../caniuse-lite/data/features/colr.js | 2 +- .../data/features/comparedocumentposition.js | 2 +- .../data/features/console-basic.js | 2 +- .../data/features/console-time.js | 2 +- .../caniuse-lite/data/features/const.js | 2 +- .../data/features/constraint-validation.js | 2 +- .../data/features/contenteditable.js | 2 +- .../data/features/contentsecuritypolicy.js | 2 +- .../data/features/contentsecuritypolicy2.js | 2 +- .../data/features/cookie-store-api.js | 2 +- .../caniuse-lite/data/features/cors.js | 2 +- .../data/features/createimagebitmap.js | 2 +- .../data/features/credential-management.js | 2 +- .../data/features/cryptography.js | 2 +- .../caniuse-lite/data/features/css-all.js | 2 +- .../data/features/css-animation.js | 2 +- .../data/features/css-any-link.js | 2 +- .../data/features/css-appearance.js | 2 +- .../data/features/css-at-counter-style.js | 2 +- .../data/features/css-autofill.js | 2 +- .../data/features/css-backdrop-filter.js | 2 +- .../data/features/css-background-offsets.js | 2 +- .../data/features/css-backgroundblendmode.js | 2 +- .../data/features/css-boxdecorationbreak.js | 2 +- .../data/features/css-boxshadow.js | 2 +- .../caniuse-lite/data/features/css-canvas.js | 2 +- .../data/features/css-caret-color.js | 2 +- .../data/features/css-cascade-layers.js | 2 +- .../data/features/css-case-insensitive.js | 2 +- .../data/features/css-clip-path.js | 2 +- .../data/features/css-color-adjust.js | 2 +- .../data/features/css-color-function.js | 2 +- .../data/features/css-conic-gradients.js | 2 +- .../data/features/css-container-queries.js | 2 +- .../features/css-container-query-units.js | 1 + .../data/features/css-containment.js | 2 +- .../data/features/css-content-visibility.js | 2 +- .../data/features/css-counters.js | 2 +- .../data/features/css-crisp-edges.js | 2 +- .../data/features/css-cross-fade.js | 2 +- .../data/features/css-default-pseudo.js | 2 +- .../data/features/css-descendant-gtgt.js | 2 +- .../data/features/css-deviceadaptation.js | 2 +- .../data/features/css-dir-pseudo.js | 2 +- .../data/features/css-display-contents.js | 2 +- .../data/features/css-element-function.js | 2 +- .../data/features/css-env-function.js | 2 +- .../data/features/css-exclusions.js | 2 +- .../data/features/css-featurequeries.js | 2 +- .../data/features/css-file-selector-button.js | 2 +- .../data/features/css-filter-function.js | 2 +- .../caniuse-lite/data/features/css-filters.js | 2 +- .../data/features/css-first-letter.js | 2 +- .../data/features/css-first-line.js | 2 +- .../caniuse-lite/data/features/css-fixed.js | 2 +- .../data/features/css-focus-visible.js | 2 +- .../data/features/css-focus-within.js | 2 +- .../data/features/css-font-palette.js | 2 +- .../features/css-font-rendering-controls.js | 2 +- .../data/features/css-font-stretch.js | 2 +- .../data/features/css-gencontent.js | 2 +- .../data/features/css-gradients.js | 2 +- .../data/features/css-grid-animation.js | 1 + .../caniuse-lite/data/features/css-grid.js | 2 +- .../data/features/css-hanging-punctuation.js | 2 +- .../caniuse-lite/data/features/css-has.js | 2 +- .../data/features/css-hyphenate.js | 2 +- .../caniuse-lite/data/features/css-hyphens.js | 2 +- .../data/features/css-image-orientation.js | 2 +- .../data/features/css-image-set.js | 2 +- .../data/features/css-in-out-of-range.js | 2 +- .../data/features/css-indeterminate-pseudo.js | 2 +- .../data/features/css-initial-letter.js | 2 +- .../data/features/css-initial-value.js | 2 +- .../caniuse-lite/data/features/css-lch-lab.js | 2 +- .../data/features/css-letter-spacing.js | 2 +- .../data/features/css-line-clamp.js | 2 +- .../data/features/css-logical-props.js | 2 +- .../data/features/css-marker-pseudo.js | 2 +- .../caniuse-lite/data/features/css-masks.js | 2 +- .../data/features/css-matches-pseudo.js | 2 +- .../data/features/css-math-functions.js | 2 +- .../data/features/css-media-interaction.js | 2 +- .../data/features/css-media-resolution.js | 2 +- .../data/features/css-media-scripting.js | 2 +- .../data/features/css-mediaqueries.js | 2 +- .../data/features/css-mixblendmode.js | 2 +- .../data/features/css-motion-paths.js | 2 +- .../data/features/css-namespaces.js | 2 +- .../caniuse-lite/data/features/css-nesting.js | 2 +- .../data/features/css-not-sel-list.js | 2 +- .../data/features/css-nth-child-of.js | 2 +- .../caniuse-lite/data/features/css-opacity.js | 2 +- .../data/features/css-optional-pseudo.js | 2 +- .../data/features/css-overflow-anchor.js | 2 +- .../data/features/css-overflow-overlay.js | 2 +- .../data/features/css-overflow.js | 2 +- .../data/features/css-overscroll-behavior.js | 2 +- .../data/features/css-page-break.js | 2 +- .../data/features/css-paged-media.js | 2 +- .../data/features/css-paint-api.js | 2 +- .../data/features/css-placeholder-shown.js | 2 +- .../data/features/css-placeholder.js | 2 +- .../data/features/css-print-color-adjust.js | 2 +- .../data/features/css-read-only-write.js | 2 +- .../data/features/css-rebeccapurple.js | 2 +- .../data/features/css-reflections.js | 2 +- .../caniuse-lite/data/features/css-regions.js | 2 +- .../data/features/css-repeating-gradients.js | 2 +- .../caniuse-lite/data/features/css-resize.js | 2 +- .../data/features/css-revert-value.js | 2 +- .../data/features/css-rrggbbaa.js | 2 +- .../data/features/css-scroll-behavior.js | 2 +- .../data/features/css-scroll-timeline.js | 2 +- .../data/features/css-scrollbar.js | 2 +- .../caniuse-lite/data/features/css-sel2.js | 2 +- .../caniuse-lite/data/features/css-sel3.js | 2 +- .../data/features/css-selection.js | 2 +- .../caniuse-lite/data/features/css-shapes.js | 2 +- .../data/features/css-snappoints.js | 2 +- .../caniuse-lite/data/features/css-sticky.js | 2 +- .../caniuse-lite/data/features/css-subgrid.js | 2 +- .../data/features/css-supports-api.js | 2 +- .../caniuse-lite/data/features/css-table.js | 2 +- .../data/features/css-text-align-last.js | 2 +- .../data/features/css-text-indent.js | 2 +- .../data/features/css-text-justify.js | 2 +- .../data/features/css-text-orientation.js | 2 +- .../data/features/css-text-spacing.js | 2 +- .../data/features/css-textshadow.js | 2 +- .../data/features/css-touch-action-2.js | 2 +- .../data/features/css-touch-action.js | 2 +- .../data/features/css-transitions.js | 2 +- .../data/features/css-unicode-bidi.js | 2 +- .../data/features/css-unset-value.js | 2 +- .../data/features/css-variables.js | 2 +- .../data/features/css-when-else.js | 2 +- .../data/features/css-widows-orphans.js | 2 +- .../data/features/css-width-stretch.js | 2 +- .../data/features/css-writing-mode.js | 2 +- .../caniuse-lite/data/features/css-zoom.js | 2 +- .../caniuse-lite/data/features/css3-attr.js | 2 +- .../data/features/css3-boxsizing.js | 2 +- .../caniuse-lite/data/features/css3-colors.js | 2 +- .../data/features/css3-cursors-grab.js | 2 +- .../data/features/css3-cursors-newer.js | 2 +- .../data/features/css3-cursors.js | 2 +- .../data/features/css3-tabsize.js | 2 +- .../data/features/currentcolor.js | 2 +- .../data/features/custom-elements.js | 2 +- .../data/features/custom-elementsv1.js | 2 +- .../caniuse-lite/data/features/customevent.js | 2 +- .../caniuse-lite/data/features/datalist.js | 2 +- .../caniuse-lite/data/features/dataset.js | 2 +- .../caniuse-lite/data/features/datauri.js | 2 +- .../data/features/date-tolocaledatestring.js | 2 +- .../data/features/declarative-shadow-dom.js | 2 +- .../caniuse-lite/data/features/decorators.js | 2 +- .../caniuse-lite/data/features/details.js | 2 +- .../data/features/deviceorientation.js | 2 +- .../data/features/devicepixelratio.js | 2 +- .../caniuse-lite/data/features/dialog.js | 2 +- .../data/features/dispatchevent.js | 2 +- .../caniuse-lite/data/features/dnssec.js | 2 +- .../data/features/do-not-track.js | 2 +- .../data/features/document-currentscript.js | 2 +- .../data/features/document-evaluate-xpath.js | 2 +- .../data/features/document-execcommand.js | 2 +- .../data/features/document-policy.js | 2 +- .../features/document-scrollingelement.js | 2 +- .../data/features/documenthead.js | 2 +- .../data/features/dom-manip-convenience.js | 2 +- .../caniuse-lite/data/features/dom-range.js | 2 +- .../data/features/domcontentloaded.js | 2 +- .../features/domfocusin-domfocusout-events.js | 2 +- .../caniuse-lite/data/features/dommatrix.js | 2 +- .../caniuse-lite/data/features/download.js | 2 +- .../caniuse-lite/data/features/dragndrop.js | 2 +- .../data/features/element-closest.js | 2 +- .../data/features/element-from-point.js | 2 +- .../data/features/element-scroll-methods.js | 2 +- .../caniuse-lite/data/features/eme.js | 2 +- .../caniuse-lite/data/features/eot.js | 2 +- .../caniuse-lite/data/features/es5.js | 2 +- .../caniuse-lite/data/features/es6-class.js | 2 +- .../data/features/es6-generators.js | 2 +- .../features/es6-module-dynamic-import.js | 2 +- .../caniuse-lite/data/features/es6-module.js | 2 +- .../caniuse-lite/data/features/es6-number.js | 2 +- .../data/features/es6-string-includes.js | 2 +- .../caniuse-lite/data/features/es6.js | 2 +- .../caniuse-lite/data/features/eventsource.js | 2 +- .../data/features/extended-system-fonts.js | 2 +- .../data/features/feature-policy.js | 2 +- .../caniuse-lite/data/features/fetch.js | 2 +- .../data/features/fieldset-disabled.js | 2 +- .../caniuse-lite/data/features/fileapi.js | 2 +- .../caniuse-lite/data/features/filereader.js | 2 +- .../data/features/filereadersync.js | 2 +- .../caniuse-lite/data/features/filesystem.js | 2 +- .../caniuse-lite/data/features/flac.js | 2 +- .../caniuse-lite/data/features/flexbox-gap.js | 2 +- .../caniuse-lite/data/features/flexbox.js | 2 +- .../caniuse-lite/data/features/flow-root.js | 2 +- .../data/features/focusin-focusout-events.js | 2 +- .../features/focusoptions-preventscroll.js | 2 +- .../data/features/font-family-system-ui.js | 2 +- .../data/features/font-feature.js | 2 +- .../data/features/font-kerning.js | 2 +- .../data/features/font-loading.js | 2 +- .../data/features/font-metrics-overrides.js | 2 +- .../data/features/font-size-adjust.js | 2 +- .../caniuse-lite/data/features/font-smooth.js | 2 +- .../data/features/font-unicode-range.js | 2 +- .../data/features/font-variant-alternates.js | 2 +- .../data/features/font-variant-east-asian.js | 2 +- .../data/features/font-variant-numeric.js | 2 +- .../caniuse-lite/data/features/fontface.js | 2 +- .../data/features/form-attribute.js | 2 +- .../data/features/form-submit-attributes.js | 2 +- .../data/features/form-validation.js | 2 +- .../caniuse-lite/data/features/forms.js | 2 +- .../caniuse-lite/data/features/fullscreen.js | 2 +- .../caniuse-lite/data/features/gamepad.js | 2 +- .../caniuse-lite/data/features/geolocation.js | 2 +- .../data/features/getboundingclientrect.js | 2 +- .../data/features/getcomputedstyle.js | 2 +- .../data/features/getelementsbyclassname.js | 2 +- .../data/features/getrandomvalues.js | 2 +- .../caniuse-lite/data/features/gyroscope.js | 2 +- .../data/features/hardwareconcurrency.js | 2 +- .../caniuse-lite/data/features/hashchange.js | 2 +- .../caniuse-lite/data/features/heif.js | 2 +- .../caniuse-lite/data/features/hevc.js | 2 +- .../caniuse-lite/data/features/hidden.js | 2 +- .../data/features/high-resolution-time.js | 2 +- .../caniuse-lite/data/features/history.js | 2 +- .../data/features/html-media-capture.js | 2 +- .../data/features/html5semantic.js | 2 +- .../data/features/http-live-streaming.js | 2 +- .../caniuse-lite/data/features/http2.js | 2 +- .../caniuse-lite/data/features/http3.js | 2 +- .../data/features/iframe-sandbox.js | 2 +- .../data/features/iframe-seamless.js | 2 +- .../data/features/iframe-srcdoc.js | 2 +- .../data/features/imagecapture.js | 2 +- .../caniuse-lite/data/features/ime.js | 2 +- .../img-naturalwidth-naturalheight.js | 2 +- .../caniuse-lite/data/features/import-maps.js | 2 +- .../caniuse-lite/data/features/imports.js | 2 +- .../data/features/indeterminate-checkbox.js | 2 +- .../caniuse-lite/data/features/indexeddb.js | 2 +- .../caniuse-lite/data/features/indexeddb2.js | 2 +- .../data/features/inline-block.js | 2 +- .../caniuse-lite/data/features/innertext.js | 2 +- .../data/features/input-autocomplete-onoff.js | 2 +- .../caniuse-lite/data/features/input-color.js | 2 +- .../data/features/input-datetime.js | 2 +- .../data/features/input-email-tel-url.js | 2 +- .../caniuse-lite/data/features/input-event.js | 2 +- .../data/features/input-file-accept.js | 2 +- .../data/features/input-file-directory.js | 2 +- .../data/features/input-file-multiple.js | 2 +- .../data/features/input-inputmode.js | 2 +- .../data/features/input-minlength.js | 2 +- .../data/features/input-number.js | 2 +- .../data/features/input-pattern.js | 2 +- .../data/features/input-placeholder.js | 2 +- .../caniuse-lite/data/features/input-range.js | 2 +- .../data/features/input-search.js | 2 +- .../data/features/input-selection.js | 2 +- .../data/features/insert-adjacent.js | 2 +- .../data/features/insertadjacenthtml.js | 2 +- .../data/features/internationalization.js | 2 +- .../data/features/intersectionobserver-v2.js | 2 +- .../data/features/intersectionobserver.js | 2 +- .../data/features/intl-pluralrules.js | 2 +- .../data/features/intrinsic-width.js | 2 +- .../caniuse-lite/data/features/jpeg2000.js | 2 +- .../caniuse-lite/data/features/jpegxl.js | 2 +- .../caniuse-lite/data/features/jpegxr.js | 2 +- .../data/features/js-regexp-lookbehind.js | 2 +- .../caniuse-lite/data/features/json.js | 2 +- .../features/justify-content-space-evenly.js | 2 +- .../data/features/kerning-pairs-ligatures.js | 2 +- .../data/features/keyboardevent-charcode.js | 2 +- .../data/features/keyboardevent-code.js | 2 +- .../keyboardevent-getmodifierstate.js | 2 +- .../data/features/keyboardevent-key.js | 2 +- .../data/features/keyboardevent-location.js | 2 +- .../data/features/keyboardevent-which.js | 2 +- .../caniuse-lite/data/features/lazyload.js | 2 +- .../caniuse-lite/data/features/let.js | 2 +- .../data/features/link-icon-png.js | 2 +- .../data/features/link-icon-svg.js | 2 +- .../data/features/link-rel-dns-prefetch.js | 2 +- .../data/features/link-rel-modulepreload.js | 2 +- .../data/features/link-rel-preconnect.js | 2 +- .../data/features/link-rel-prefetch.js | 2 +- .../data/features/link-rel-preload.js | 2 +- .../data/features/link-rel-prerender.js | 2 +- .../data/features/loading-lazy-attr.js | 2 +- .../data/features/localecompare.js | 2 +- .../data/features/magnetometer.js | 2 +- .../data/features/matchesselector.js | 2 +- .../caniuse-lite/data/features/matchmedia.js | 2 +- .../caniuse-lite/data/features/mathml.js | 2 +- .../caniuse-lite/data/features/maxlength.js | 2 +- .../data/features/media-attribute.js | 2 +- .../data/features/media-fragments.js | 2 +- .../data/features/media-session-api.js | 2 +- .../data/features/mediacapture-fromelement.js | 2 +- .../data/features/mediarecorder.js | 2 +- .../caniuse-lite/data/features/mediasource.js | 2 +- .../caniuse-lite/data/features/menu.js | 2 +- .../data/features/meta-theme-color.js | 2 +- .../caniuse-lite/data/features/meter.js | 2 +- .../caniuse-lite/data/features/midi.js | 2 +- .../caniuse-lite/data/features/minmaxwh.js | 2 +- .../caniuse-lite/data/features/mp3.js | 2 +- .../caniuse-lite/data/features/mpeg-dash.js | 2 +- .../caniuse-lite/data/features/mpeg4.js | 2 +- .../data/features/multibackgrounds.js | 2 +- .../caniuse-lite/data/features/multicolumn.js | 2 +- .../data/features/mutation-events.js | 2 +- .../data/features/mutationobserver.js | 2 +- .../data/features/namevalue-storage.js | 2 +- .../data/features/native-filesystem-api.js | 2 +- .../caniuse-lite/data/features/nav-timing.js | 2 +- .../data/features/navigator-language.js | 2 +- .../caniuse-lite/data/features/netinfo.js | 2 +- .../data/features/notifications.js | 2 +- .../data/features/object-entries.js | 2 +- .../caniuse-lite/data/features/object-fit.js | 2 +- .../data/features/object-observe.js | 2 +- .../data/features/object-values.js | 2 +- .../caniuse-lite/data/features/objectrtc.js | 2 +- .../data/features/offline-apps.js | 2 +- .../data/features/offscreencanvas.js | 2 +- .../caniuse-lite/data/features/ogg-vorbis.js | 2 +- .../caniuse-lite/data/features/ogv.js | 2 +- .../caniuse-lite/data/features/ol-reversed.js | 2 +- .../data/features/once-event-listener.js | 2 +- .../data/features/online-status.js | 2 +- .../caniuse-lite/data/features/opus.js | 2 +- .../data/features/orientation-sensor.js | 2 +- .../caniuse-lite/data/features/outline.js | 2 +- .../data/features/pad-start-end.js | 2 +- .../data/features/page-transition-events.js | 2 +- .../data/features/pagevisibility.js | 2 +- .../data/features/passive-event-listener.js | 2 +- .../data/features/passwordrules.js | 2 +- .../caniuse-lite/data/features/path2d.js | 2 +- .../data/features/payment-request.js | 2 +- .../caniuse-lite/data/features/pdf-viewer.js | 2 +- .../data/features/permissions-api.js | 2 +- .../data/features/permissions-policy.js | 2 +- .../data/features/picture-in-picture.js | 2 +- .../caniuse-lite/data/features/picture.js | 2 +- .../caniuse-lite/data/features/ping.js | 2 +- .../caniuse-lite/data/features/png-alpha.js | 2 +- .../data/features/pointer-events.js | 2 +- .../caniuse-lite/data/features/pointer.js | 2 +- .../caniuse-lite/data/features/pointerlock.js | 2 +- .../caniuse-lite/data/features/portals.js | 2 +- .../data/features/prefers-color-scheme.js | 2 +- .../data/features/prefers-reduced-motion.js | 2 +- .../data/features/private-class-fields.js | 2 +- .../features/private-methods-and-accessors.js | 2 +- .../caniuse-lite/data/features/progress.js | 2 +- .../data/features/promise-finally.js | 2 +- .../caniuse-lite/data/features/promises.js | 2 +- .../caniuse-lite/data/features/proximity.js | 2 +- .../caniuse-lite/data/features/proxy.js | 2 +- .../data/features/public-class-fields.js | 2 +- .../data/features/publickeypinning.js | 2 +- .../caniuse-lite/data/features/push-api.js | 2 +- .../data/features/queryselector.js | 2 +- .../data/features/readonly-attr.js | 2 +- .../data/features/referrer-policy.js | 2 +- .../data/features/registerprotocolhandler.js | 2 +- .../data/features/rel-noopener.js | 2 +- .../data/features/rel-noreferrer.js | 2 +- .../caniuse-lite/data/features/rellist.js | 2 +- .../caniuse-lite/data/features/rem.js | 2 +- .../data/features/requestanimationframe.js | 2 +- .../data/features/requestidlecallback.js | 2 +- .../data/features/resizeobserver.js | 2 +- .../data/features/resource-timing.js | 2 +- .../data/features/rest-parameters.js | 2 +- .../data/features/rtcpeerconnection.js | 2 +- .../caniuse-lite/data/features/ruby.js | 2 +- .../caniuse-lite/data/features/run-in.js | 2 +- .../features/same-site-cookie-attribute.js | 2 +- .../data/features/screen-orientation.js | 2 +- .../data/features/script-async.js | 2 +- .../data/features/script-defer.js | 2 +- .../data/features/scrollintoview.js | 2 +- .../data/features/scrollintoviewifneeded.js | 2 +- .../caniuse-lite/data/features/sdch.js | 2 +- .../data/features/selection-api.js | 2 +- .../data/features/server-timing.js | 2 +- .../data/features/serviceworkers.js | 2 +- .../data/features/setimmediate.js | 2 +- .../caniuse-lite/data/features/sha-2.js | 2 +- .../caniuse-lite/data/features/shadowdom.js | 2 +- .../caniuse-lite/data/features/shadowdomv1.js | 2 +- .../data/features/sharedarraybuffer.js | 2 +- .../data/features/sharedworkers.js | 2 +- .../caniuse-lite/data/features/sni.js | 2 +- .../caniuse-lite/data/features/spdy.js | 2 +- .../data/features/speech-recognition.js | 2 +- .../data/features/speech-synthesis.js | 2 +- .../data/features/spellcheck-attribute.js | 2 +- .../caniuse-lite/data/features/sql-storage.js | 2 +- .../caniuse-lite/data/features/srcset.js | 2 +- .../caniuse-lite/data/features/stream.js | 2 +- .../caniuse-lite/data/features/streams.js | 2 +- .../data/features/stricttransportsecurity.js | 2 +- .../data/features/style-scoped.js | 2 +- .../data/features/subresource-integrity.js | 2 +- .../caniuse-lite/data/features/svg-css.js | 2 +- .../caniuse-lite/data/features/svg-filters.js | 2 +- .../caniuse-lite/data/features/svg-fonts.js | 2 +- .../data/features/svg-fragment.js | 2 +- .../caniuse-lite/data/features/svg-html.js | 2 +- .../caniuse-lite/data/features/svg-html5.js | 2 +- .../caniuse-lite/data/features/svg-img.js | 2 +- .../caniuse-lite/data/features/svg-smil.js | 2 +- .../caniuse-lite/data/features/svg.js | 2 +- .../caniuse-lite/data/features/sxg.js | 2 +- .../data/features/tabindex-attr.js | 2 +- .../data/features/template-literals.js | 2 +- .../caniuse-lite/data/features/template.js | 2 +- .../caniuse-lite/data/features/temporal.js | 2 +- .../caniuse-lite/data/features/testfeat.js | 2 +- .../data/features/text-decoration.js | 2 +- .../data/features/text-emphasis.js | 2 +- .../data/features/text-overflow.js | 2 +- .../data/features/text-size-adjust.js | 2 +- .../caniuse-lite/data/features/text-stroke.js | 2 +- .../data/features/text-underline-offset.js | 2 +- .../caniuse-lite/data/features/textcontent.js | 2 +- .../caniuse-lite/data/features/textencoder.js | 2 +- .../caniuse-lite/data/features/tls1-1.js | 2 +- .../caniuse-lite/data/features/tls1-2.js | 2 +- .../caniuse-lite/data/features/tls1-3.js | 2 +- .../data/features/token-binding.js | 2 +- .../caniuse-lite/data/features/touch.js | 2 +- .../data/features/transforms2d.js | 2 +- .../data/features/transforms3d.js | 2 +- .../data/features/trusted-types.js | 2 +- .../caniuse-lite/data/features/ttf.js | 2 +- .../caniuse-lite/data/features/typedarrays.js | 2 +- .../caniuse-lite/data/features/u2f.js | 2 +- .../data/features/unhandledrejection.js | 2 +- .../data/features/upgradeinsecurerequests.js | 2 +- .../features/url-scroll-to-text-fragment.js | 2 +- .../caniuse-lite/data/features/url.js | 2 +- .../data/features/urlsearchparams.js | 2 +- .../caniuse-lite/data/features/use-strict.js | 2 +- .../data/features/user-select-none.js | 2 +- .../caniuse-lite/data/features/user-timing.js | 2 +- .../data/features/variable-fonts.js | 2 +- .../data/features/vector-effect.js | 2 +- .../caniuse-lite/data/features/vibration.js | 2 +- .../caniuse-lite/data/features/video.js | 2 +- .../caniuse-lite/data/features/videotracks.js | 2 +- .../data/features/viewport-unit-variants.js | 2 +- .../data/features/viewport-units.js | 2 +- .../caniuse-lite/data/features/wai-aria.js | 2 +- .../caniuse-lite/data/features/wake-lock.js | 2 +- .../caniuse-lite/data/features/wasm.js | 2 +- .../caniuse-lite/data/features/wav.js | 2 +- .../caniuse-lite/data/features/wbr-element.js | 2 +- .../data/features/web-animation.js | 2 +- .../data/features/web-app-manifest.js | 2 +- .../data/features/web-bluetooth.js | 2 +- .../caniuse-lite/data/features/web-serial.js | 2 +- .../caniuse-lite/data/features/web-share.js | 2 +- .../caniuse-lite/data/features/webauthn.js | 2 +- .../caniuse-lite/data/features/webgl.js | 2 +- .../caniuse-lite/data/features/webgl2.js | 2 +- .../caniuse-lite/data/features/webgpu.js | 2 +- .../caniuse-lite/data/features/webhid.js | 2 +- .../data/features/webkit-user-drag.js | 2 +- .../caniuse-lite/data/features/webm.js | 2 +- .../caniuse-lite/data/features/webnfc.js | 2 +- .../caniuse-lite/data/features/webp.js | 2 +- .../caniuse-lite/data/features/websockets.js | 2 +- .../caniuse-lite/data/features/webusb.js | 2 +- .../caniuse-lite/data/features/webvr.js | 2 +- .../caniuse-lite/data/features/webvtt.js | 2 +- .../caniuse-lite/data/features/webworkers.js | 2 +- .../caniuse-lite/data/features/webxr.js | 2 +- .../caniuse-lite/data/features/will-change.js | 2 +- .../caniuse-lite/data/features/woff.js | 2 +- .../caniuse-lite/data/features/woff2.js | 2 +- .../caniuse-lite/data/features/word-break.js | 2 +- .../caniuse-lite/data/features/wordwrap.js | 2 +- .../data/features/x-doc-messaging.js | 2 +- .../data/features/x-frame-options.js | 2 +- .../caniuse-lite/data/features/xhr2.js | 2 +- .../caniuse-lite/data/features/xhtml.js | 2 +- .../caniuse-lite/data/features/xhtmlsmil.js | 2 +- .../data/features/xml-serializer.js | 2 +- .../caniuse-lite/data/regions/AD.js | 2 +- .../caniuse-lite/data/regions/AE.js | 2 +- .../caniuse-lite/data/regions/AF.js | 2 +- .../caniuse-lite/data/regions/AG.js | 2 +- .../caniuse-lite/data/regions/AI.js | 2 +- .../caniuse-lite/data/regions/AL.js | 2 +- .../caniuse-lite/data/regions/AM.js | 2 +- .../caniuse-lite/data/regions/AO.js | 2 +- .../caniuse-lite/data/regions/AR.js | 2 +- .../caniuse-lite/data/regions/AS.js | 2 +- .../caniuse-lite/data/regions/AT.js | 2 +- .../caniuse-lite/data/regions/AU.js | 2 +- .../caniuse-lite/data/regions/AW.js | 2 +- .../caniuse-lite/data/regions/AX.js | 2 +- .../caniuse-lite/data/regions/AZ.js | 2 +- .../caniuse-lite/data/regions/BA.js | 2 +- .../caniuse-lite/data/regions/BB.js | 2 +- .../caniuse-lite/data/regions/BD.js | 2 +- .../caniuse-lite/data/regions/BE.js | 2 +- .../caniuse-lite/data/regions/BF.js | 2 +- .../caniuse-lite/data/regions/BG.js | 2 +- .../caniuse-lite/data/regions/BH.js | 2 +- .../caniuse-lite/data/regions/BI.js | 2 +- .../caniuse-lite/data/regions/BJ.js | 2 +- .../caniuse-lite/data/regions/BM.js | 2 +- .../caniuse-lite/data/regions/BN.js | 2 +- .../caniuse-lite/data/regions/BO.js | 2 +- .../caniuse-lite/data/regions/BR.js | 2 +- .../caniuse-lite/data/regions/BS.js | 2 +- .../caniuse-lite/data/regions/BT.js | 2 +- .../caniuse-lite/data/regions/BW.js | 2 +- .../caniuse-lite/data/regions/BY.js | 2 +- .../caniuse-lite/data/regions/BZ.js | 2 +- .../caniuse-lite/data/regions/CA.js | 2 +- .../caniuse-lite/data/regions/CD.js | 2 +- .../caniuse-lite/data/regions/CF.js | 2 +- .../caniuse-lite/data/regions/CG.js | 2 +- .../caniuse-lite/data/regions/CH.js | 2 +- .../caniuse-lite/data/regions/CI.js | 2 +- .../caniuse-lite/data/regions/CK.js | 2 +- .../caniuse-lite/data/regions/CL.js | 2 +- .../caniuse-lite/data/regions/CM.js | 2 +- .../caniuse-lite/data/regions/CN.js | 2 +- .../caniuse-lite/data/regions/CO.js | 2 +- .../caniuse-lite/data/regions/CR.js | 2 +- .../caniuse-lite/data/regions/CU.js | 2 +- .../caniuse-lite/data/regions/CV.js | 2 +- .../caniuse-lite/data/regions/CX.js | 2 +- .../caniuse-lite/data/regions/CY.js | 2 +- .../caniuse-lite/data/regions/CZ.js | 2 +- .../caniuse-lite/data/regions/DE.js | 2 +- .../caniuse-lite/data/regions/DJ.js | 2 +- .../caniuse-lite/data/regions/DK.js | 2 +- .../caniuse-lite/data/regions/DM.js | 2 +- .../caniuse-lite/data/regions/DO.js | 2 +- .../caniuse-lite/data/regions/DZ.js | 2 +- .../caniuse-lite/data/regions/EC.js | 2 +- .../caniuse-lite/data/regions/EE.js | 2 +- .../caniuse-lite/data/regions/EG.js | 2 +- .../caniuse-lite/data/regions/ER.js | 2 +- .../caniuse-lite/data/regions/ES.js | 2 +- .../caniuse-lite/data/regions/ET.js | 2 +- .../caniuse-lite/data/regions/FI.js | 2 +- .../caniuse-lite/data/regions/FJ.js | 2 +- .../caniuse-lite/data/regions/FK.js | 2 +- .../caniuse-lite/data/regions/FM.js | 2 +- .../caniuse-lite/data/regions/FO.js | 2 +- .../caniuse-lite/data/regions/FR.js | 2 +- .../caniuse-lite/data/regions/GA.js | 2 +- .../caniuse-lite/data/regions/GB.js | 2 +- .../caniuse-lite/data/regions/GD.js | 2 +- .../caniuse-lite/data/regions/GE.js | 2 +- .../caniuse-lite/data/regions/GF.js | 2 +- .../caniuse-lite/data/regions/GG.js | 2 +- .../caniuse-lite/data/regions/GH.js | 2 +- .../caniuse-lite/data/regions/GI.js | 2 +- .../caniuse-lite/data/regions/GL.js | 2 +- .../caniuse-lite/data/regions/GM.js | 2 +- .../caniuse-lite/data/regions/GN.js | 2 +- .../caniuse-lite/data/regions/GP.js | 2 +- .../caniuse-lite/data/regions/GQ.js | 2 +- .../caniuse-lite/data/regions/GR.js | 2 +- .../caniuse-lite/data/regions/GT.js | 2 +- .../caniuse-lite/data/regions/GU.js | 2 +- .../caniuse-lite/data/regions/GW.js | 2 +- .../caniuse-lite/data/regions/GY.js | 2 +- .../caniuse-lite/data/regions/HK.js | 2 +- .../caniuse-lite/data/regions/HN.js | 2 +- .../caniuse-lite/data/regions/HR.js | 2 +- .../caniuse-lite/data/regions/HT.js | 2 +- .../caniuse-lite/data/regions/HU.js | 2 +- .../caniuse-lite/data/regions/ID.js | 2 +- .../caniuse-lite/data/regions/IE.js | 2 +- .../caniuse-lite/data/regions/IL.js | 2 +- .../caniuse-lite/data/regions/IM.js | 2 +- .../caniuse-lite/data/regions/IN.js | 2 +- .../caniuse-lite/data/regions/IQ.js | 2 +- .../caniuse-lite/data/regions/IR.js | 2 +- .../caniuse-lite/data/regions/IS.js | 2 +- .../caniuse-lite/data/regions/IT.js | 2 +- .../caniuse-lite/data/regions/JE.js | 2 +- .../caniuse-lite/data/regions/JM.js | 2 +- .../caniuse-lite/data/regions/JO.js | 2 +- .../caniuse-lite/data/regions/JP.js | 2 +- .../caniuse-lite/data/regions/KE.js | 2 +- .../caniuse-lite/data/regions/KG.js | 2 +- .../caniuse-lite/data/regions/KH.js | 2 +- .../caniuse-lite/data/regions/KI.js | 2 +- .../caniuse-lite/data/regions/KM.js | 2 +- .../caniuse-lite/data/regions/KN.js | 2 +- .../caniuse-lite/data/regions/KP.js | 2 +- .../caniuse-lite/data/regions/KR.js | 2 +- .../caniuse-lite/data/regions/KW.js | 2 +- .../caniuse-lite/data/regions/KY.js | 2 +- .../caniuse-lite/data/regions/KZ.js | 2 +- .../caniuse-lite/data/regions/LA.js | 2 +- .../caniuse-lite/data/regions/LB.js | 2 +- .../caniuse-lite/data/regions/LC.js | 2 +- .../caniuse-lite/data/regions/LI.js | 2 +- .../caniuse-lite/data/regions/LK.js | 2 +- .../caniuse-lite/data/regions/LR.js | 2 +- .../caniuse-lite/data/regions/LS.js | 2 +- .../caniuse-lite/data/regions/LT.js | 2 +- .../caniuse-lite/data/regions/LU.js | 2 +- .../caniuse-lite/data/regions/LV.js | 2 +- .../caniuse-lite/data/regions/LY.js | 2 +- .../caniuse-lite/data/regions/MA.js | 2 +- .../caniuse-lite/data/regions/MC.js | 2 +- .../caniuse-lite/data/regions/MD.js | 2 +- .../caniuse-lite/data/regions/ME.js | 2 +- .../caniuse-lite/data/regions/MG.js | 2 +- .../caniuse-lite/data/regions/MH.js | 2 +- .../caniuse-lite/data/regions/MK.js | 2 +- .../caniuse-lite/data/regions/ML.js | 2 +- .../caniuse-lite/data/regions/MM.js | 2 +- .../caniuse-lite/data/regions/MN.js | 2 +- .../caniuse-lite/data/regions/MO.js | 2 +- .../caniuse-lite/data/regions/MP.js | 2 +- .../caniuse-lite/data/regions/MQ.js | 2 +- .../caniuse-lite/data/regions/MR.js | 2 +- .../caniuse-lite/data/regions/MS.js | 2 +- .../caniuse-lite/data/regions/MT.js | 2 +- .../caniuse-lite/data/regions/MU.js | 2 +- .../caniuse-lite/data/regions/MV.js | 2 +- .../caniuse-lite/data/regions/MW.js | 2 +- .../caniuse-lite/data/regions/MX.js | 2 +- .../caniuse-lite/data/regions/MY.js | 2 +- .../caniuse-lite/data/regions/MZ.js | 2 +- .../caniuse-lite/data/regions/NA.js | 2 +- .../caniuse-lite/data/regions/NC.js | 2 +- .../caniuse-lite/data/regions/NE.js | 2 +- .../caniuse-lite/data/regions/NF.js | 2 +- .../caniuse-lite/data/regions/NG.js | 2 +- .../caniuse-lite/data/regions/NI.js | 2 +- .../caniuse-lite/data/regions/NL.js | 2 +- .../caniuse-lite/data/regions/NO.js | 2 +- .../caniuse-lite/data/regions/NP.js | 2 +- .../caniuse-lite/data/regions/NR.js | 2 +- .../caniuse-lite/data/regions/NU.js | 2 +- .../caniuse-lite/data/regions/NZ.js | 2 +- .../caniuse-lite/data/regions/OM.js | 2 +- .../caniuse-lite/data/regions/PA.js | 2 +- .../caniuse-lite/data/regions/PE.js | 2 +- .../caniuse-lite/data/regions/PF.js | 2 +- .../caniuse-lite/data/regions/PG.js | 2 +- .../caniuse-lite/data/regions/PH.js | 2 +- .../caniuse-lite/data/regions/PK.js | 2 +- .../caniuse-lite/data/regions/PL.js | 2 +- .../caniuse-lite/data/regions/PM.js | 2 +- .../caniuse-lite/data/regions/PN.js | 2 +- .../caniuse-lite/data/regions/PR.js | 2 +- .../caniuse-lite/data/regions/PS.js | 2 +- .../caniuse-lite/data/regions/PT.js | 2 +- .../caniuse-lite/data/regions/PW.js | 2 +- .../caniuse-lite/data/regions/PY.js | 2 +- .../caniuse-lite/data/regions/QA.js | 2 +- .../caniuse-lite/data/regions/RE.js | 2 +- .../caniuse-lite/data/regions/RO.js | 2 +- .../caniuse-lite/data/regions/RS.js | 2 +- .../caniuse-lite/data/regions/RU.js | 2 +- .../caniuse-lite/data/regions/RW.js | 2 +- .../caniuse-lite/data/regions/SA.js | 2 +- .../caniuse-lite/data/regions/SB.js | 2 +- .../caniuse-lite/data/regions/SC.js | 2 +- .../caniuse-lite/data/regions/SD.js | 2 +- .../caniuse-lite/data/regions/SE.js | 2 +- .../caniuse-lite/data/regions/SG.js | 2 +- .../caniuse-lite/data/regions/SH.js | 2 +- .../caniuse-lite/data/regions/SI.js | 2 +- .../caniuse-lite/data/regions/SK.js | 2 +- .../caniuse-lite/data/regions/SL.js | 2 +- .../caniuse-lite/data/regions/SM.js | 2 +- .../caniuse-lite/data/regions/SN.js | 2 +- .../caniuse-lite/data/regions/SO.js | 2 +- .../caniuse-lite/data/regions/SR.js | 2 +- .../caniuse-lite/data/regions/ST.js | 2 +- .../caniuse-lite/data/regions/SV.js | 2 +- .../caniuse-lite/data/regions/SY.js | 2 +- .../caniuse-lite/data/regions/SZ.js | 2 +- .../caniuse-lite/data/regions/TC.js | 2 +- .../caniuse-lite/data/regions/TD.js | 2 +- .../caniuse-lite/data/regions/TG.js | 2 +- .../caniuse-lite/data/regions/TH.js | 2 +- .../caniuse-lite/data/regions/TJ.js | 2 +- .../caniuse-lite/data/regions/TK.js | 2 +- .../caniuse-lite/data/regions/TL.js | 2 +- .../caniuse-lite/data/regions/TM.js | 2 +- .../caniuse-lite/data/regions/TN.js | 2 +- .../caniuse-lite/data/regions/TO.js | 2 +- .../caniuse-lite/data/regions/TR.js | 2 +- .../caniuse-lite/data/regions/TT.js | 2 +- .../caniuse-lite/data/regions/TV.js | 2 +- .../caniuse-lite/data/regions/TW.js | 2 +- .../caniuse-lite/data/regions/TZ.js | 2 +- .../caniuse-lite/data/regions/UA.js | 2 +- .../caniuse-lite/data/regions/UG.js | 2 +- .../caniuse-lite/data/regions/US.js | 2 +- .../caniuse-lite/data/regions/UY.js | 2 +- .../caniuse-lite/data/regions/UZ.js | 2 +- .../caniuse-lite/data/regions/VA.js | 2 +- .../caniuse-lite/data/regions/VC.js | 2 +- .../caniuse-lite/data/regions/VE.js | 2 +- .../caniuse-lite/data/regions/VG.js | 2 +- .../caniuse-lite/data/regions/VI.js | 2 +- .../caniuse-lite/data/regions/VN.js | 2 +- .../caniuse-lite/data/regions/VU.js | 2 +- .../caniuse-lite/data/regions/WF.js | 2 +- .../caniuse-lite/data/regions/WS.js | 2 +- .../caniuse-lite/data/regions/YE.js | 2 +- .../caniuse-lite/data/regions/YT.js | 2 +- .../caniuse-lite/data/regions/ZA.js | 2 +- .../caniuse-lite/data/regions/ZM.js | 2 +- .../caniuse-lite/data/regions/ZW.js | 2 +- .../caniuse-lite/data/regions/alt-af.js | 2 +- .../caniuse-lite/data/regions/alt-an.js | 2 +- .../caniuse-lite/data/regions/alt-as.js | 2 +- .../caniuse-lite/data/regions/alt-eu.js | 2 +- .../caniuse-lite/data/regions/alt-na.js | 2 +- .../caniuse-lite/data/regions/alt-oc.js | 2 +- .../caniuse-lite/data/regions/alt-sa.js | 2 +- .../caniuse-lite/data/regions/alt-ww.js | 2 +- .../node_modules/caniuse-lite/package.json | 2 +- .../full-chromium-versions.js | 23 ++- .../full-chromium-versions.json | 2 +- .../electron-to-chromium/full-versions.js | 19 ++- .../electron-to-chromium/full-versions.json | 2 +- .../electron-to-chromium/package.json | 4 +- .../dist/alignTransform.js | 18 ++- .../eslint-plugin-jsdoc/package.json | 2 +- .../node_modules}/lru-cache/LICENSE | 0 .../node_modules}/lru-cache/index.js | 0 .../node_modules}/lru-cache/package.json | 0 tools/node_modules/eslint/package.json | 2 +- 839 files changed, 1019 insertions(+), 953 deletions(-) create mode 100644 tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js create mode 100644 tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js rename tools/node_modules/eslint/node_modules/{ => semver/node_modules}/lru-cache/LICENSE (100%) rename tools/node_modules/eslint/node_modules/{ => semver/node_modules}/lru-cache/index.js (100%) rename tools/node_modules/eslint/node_modules/{ => semver/node_modules}/lru-cache/package.json (100%) diff --git a/lib/internal/streams/operators.js b/lib/internal/streams/operators.js index 3d792e3b495dc1..a450aa78e759ab 100644 --- a/lib/internal/streams/operators.js +++ b/lib/internal/streams/operators.js @@ -187,7 +187,6 @@ function asIndexedPairs(options = undefined) { } async function some(fn, options = undefined) { - // eslint-disable-next-line no-unused-vars for await (const unused of filter.call(this, fn, options)) { return true; } diff --git a/test/parallel/test-fs-opendir.js b/test/parallel/test-fs-opendir.js index dd1724aa3c2fc6..4f54f5ac35435b 100644 --- a/test/parallel/test-fs-opendir.js +++ b/test/parallel/test-fs-opendir.js @@ -166,7 +166,7 @@ doAsyncIterBreakTest().then(common.mustCall()); async function doAsyncIterReturnTest() { const dir = await fs.promises.opendir(testDir); await (async function() { - for await (const dirent of dir) { // eslint-disable-line no-unused-vars + for await (const dirent of dir) { return; } })(); diff --git a/test/parallel/test-stream-readable-async-iterators.js b/test/parallel/test-stream-readable-async-iterators.js index e8b69612014ca5..28975de405133f 100644 --- a/test/parallel/test-stream-readable-async-iterators.js +++ b/test/parallel/test-stream-readable-async-iterators.js @@ -63,7 +63,7 @@ async function tests() { }); await (async () => { - for await (const d of readable) { // eslint-disable-line no-unused-vars + for await (const d of readable) { return; } })(); diff --git a/test/parallel/test-whatwg-readablestream.js b/test/parallel/test-whatwg-readablestream.js index 1bb53d5286c348..9f1cfc60e9a28b 100644 --- a/test/parallel/test-whatwg-readablestream.js +++ b/test/parallel/test-whatwg-readablestream.js @@ -1304,7 +1304,6 @@ class Source { }); async function read(stream) { - // eslint-disable-next-line no-unused-vars for await (const _ of stream.values({ preventCancel: true })) return; } @@ -1319,7 +1318,6 @@ class Source { const stream = new ReadableStream(source); async function read(stream) { - // eslint-disable-next-line no-unused-vars for await (const _ of stream.values({ preventCancel: false })) return; } diff --git a/tools/node_modules/eslint/lib/linter/linter.js b/tools/node_modules/eslint/lib/linter/linter.js index 5304a612a5952a..bd1bbb7ca8219f 100644 --- a/tools/node_modules/eslint/lib/linter/linter.js +++ b/tools/node_modules/eslint/lib/linter/linter.js @@ -1101,7 +1101,7 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO ) ); - const ruleListeners = createRuleListeners(rule, ruleContext); + const ruleListeners = timing.enabled ? timing.time(ruleId, createRuleListeners)(rule, ruleContext) : createRuleListeners(rule, ruleContext); /** * Include `ruleId` in error logs diff --git a/tools/node_modules/eslint/lib/linter/timing.js b/tools/node_modules/eslint/lib/linter/timing.js index c9ab01ec649067..914cbf05591441 100644 --- a/tools/node_modules/eslint/lib/linter/timing.js +++ b/tools/node_modules/eslint/lib/linter/timing.js @@ -138,10 +138,11 @@ module.exports = (function() { return function(...args) { let t = process.hrtime(); + const result = fn(...args); - fn(...args); t = process.hrtime(t); data[key] += t[0] * 1e3 + t[1] / 1e6; + return result; }; } diff --git a/tools/node_modules/eslint/lib/rules/no-unused-vars.js b/tools/node_modules/eslint/lib/rules/no-unused-vars.js index 11b1f3722de59d..2114e6f6aacb65 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-vars.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-vars.js @@ -484,12 +484,12 @@ module.exports = { } /** - * Determine if an identifier is used either in for-in loops. + * Determine if an identifier is used either in for-in or for-of loops. * @param {Reference} ref The reference to check. * @returns {boolean} whether reference is used in the for-in loops * @private */ - function isForInRef(ref) { + function isForInOfRef(ref) { let target = ref.identifier.parent; @@ -498,7 +498,7 @@ module.exports = { target = target.parent.parent; } - if (target.type !== "ForInStatement") { + if (target.type !== "ForInStatement" && target.type !== "ForOfStatement") { return false; } @@ -531,7 +531,7 @@ module.exports = { let rhsNode = null; return variable.references.some(ref => { - if (isForInRef(ref)) { + if (isForInOfRef(ref)) { return true; } diff --git a/tools/node_modules/eslint/lib/shared/deprecation-warnings.js b/tools/node_modules/eslint/lib/shared/deprecation-warnings.js index 1a0501ab057a11..d09cafb07fe13f 100644 --- a/tools/node_modules/eslint/lib/shared/deprecation-warnings.js +++ b/tools/node_modules/eslint/lib/shared/deprecation-warnings.js @@ -17,14 +17,7 @@ const path = require("path"); // Definitions for deprecation warnings. const deprecationWarningMessages = { ESLINT_LEGACY_ECMAFEATURES: - "The 'ecmaFeatures' config file property is deprecated and has no effect.", - ESLINT_PERSONAL_CONFIG_LOAD: - "'~/.eslintrc.*' config files have been deprecated. " + - "Please use a config file per project or the '--config' option.", - ESLINT_PERSONAL_CONFIG_SUPPRESS: - "'~/.eslintrc.*' config files have been deprecated. " + - "Please remove it or add 'root:true' to the config files in your " + - "projects in order to avoid loading '~/.eslintrc.*' accidentally." + "The 'ecmaFeatures' config file property is deprecated and has no effect." }; const sourceFileErrorCache = new Set(); diff --git a/tools/node_modules/eslint/node_modules/@babel/compat-data/data/corejs2-built-ins.json b/tools/node_modules/eslint/node_modules/@babel/compat-data/data/corejs2-built-ins.json index ab9d30be39a022..b9e4cfe3715958 100644 --- a/tools/node_modules/eslint/node_modules/@babel/compat-data/data/corejs2-built-ins.json +++ b/tools/node_modules/eslint/node_modules/@babel/compat-data/data/corejs2-built-ins.json @@ -17,11 +17,11 @@ "edge": "12", "firefox": "2", "safari": "3.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -90,11 +90,11 @@ "edge": "12", "firefox": "2", "safari": "3.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -114,7 +114,7 @@ "chrome": "47", "opera": "34", "edge": "14", - "firefox": "43", + "firefox": "102", "safari": "10", "node": "6", "ios": "10", @@ -127,11 +127,11 @@ "edge": "12", "firefox": "2", "safari": "3.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -142,11 +142,11 @@ "edge": "12", "firefox": "4", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -169,11 +169,11 @@ "edge": "12", "firefox": "2", "safari": "3.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -207,11 +207,11 @@ "edge": "12", "firefox": "3", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -222,11 +222,11 @@ "edge": "12", "firefox": "3", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -248,11 +248,11 @@ "edge": "12", "firefox": "2", "safari": "3.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -287,11 +287,11 @@ "edge": "12", "firefox": "2", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -302,11 +302,11 @@ "edge": "12", "firefox": "3.5", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -317,7 +317,7 @@ "edge": "12", "firefox": "4", "safari": "10", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "10", @@ -342,11 +342,11 @@ "edge": "12", "firefox": "2", "safari": "3.1", - "node": "0.10", + "node": "0.4", "ie": "10", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -357,11 +357,11 @@ "edge": "12", "firefox": "4", "safari": "5.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -383,10 +383,10 @@ "edge": "14", "firefox": "2", "safari": "4", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -637,7 +637,7 @@ "edge": "12", "firefox": "16", "safari": "9", - "node": "0.12", + "node": "0.8", "android": "4.1", "ios": "9", "samsung": "1.5", @@ -662,7 +662,7 @@ "edge": "12", "firefox": "15", "safari": "9", - "node": "0.12", + "node": "0.8", "android": "4.1", "ios": "9", "samsung": "1.5", @@ -746,11 +746,11 @@ "edge": "12", "firefox": "4", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -783,11 +783,11 @@ "edge": "12", "firefox": "4", "safari": "5.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -798,11 +798,11 @@ "edge": "12", "firefox": "4", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -929,7 +929,7 @@ "edge": "12", "firefox": "22", "safari": "9", - "node": "0.12", + "node": "0.8", "android": "4.1", "ios": "9", "samsung": "1.5", @@ -1304,10 +1304,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1318,10 +1318,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1332,10 +1332,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1346,10 +1346,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1384,10 +1384,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1398,10 +1398,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1412,10 +1412,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1450,10 +1450,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1476,10 +1476,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1538,10 +1538,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1564,10 +1564,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1578,10 +1578,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1592,10 +1592,10 @@ "edge": "12", "firefox": "17", "safari": "6", - "node": "0.10", + "node": "0.4", "android": "4", "ios": "7", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.14", "electron": "0.20" @@ -1606,11 +1606,11 @@ "edge": "12", "firefox": "3.5", "safari": "4", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -1656,11 +1656,11 @@ "edge": "12", "firefox": "15", "safari": "5.1", - "node": "0.10", + "node": "0.4", "ie": "10", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" diff --git a/tools/node_modules/eslint/node_modules/@babel/compat-data/data/plugins.json b/tools/node_modules/eslint/node_modules/@babel/compat-data/data/plugins.json index 76ac37d18e4ebc..96c64cab34f242 100644 --- a/tools/node_modules/eslint/node_modules/@babel/compat-data/data/plugins.json +++ b/tools/node_modules/eslint/node_modules/@babel/compat-data/data/plugins.json @@ -423,11 +423,11 @@ "edge": "12", "firefox": "2", "safari": "5.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -438,11 +438,11 @@ "edge": "12", "firefox": "2", "safari": "5.1", - "node": "0.10", + "node": "0.4", "ie": "9", "android": "4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" @@ -453,11 +453,11 @@ "edge": "12", "firefox": "2", "safari": "3.1", - "node": "0.10", + "node": "0.6", "ie": "9", "android": "4.4", "ios": "6", - "phantom": "2", + "phantom": "1.9", "samsung": "1", "rhino": "1.7.13", "electron": "0.20" 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 d934bb90207aa7..512f422d495375 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.17.10", + "version": "7.18.5", "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 e1df648ceede02..443fcea5a3696c 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 @@ -327,7 +327,7 @@ const instantiatePlugin = (0, _caching.makeWeakCache)(function* ({ const validateIfOptionNeedsFilename = (options, descriptor) => { if (options.test || options.include || options.exclude) { const formattedPresetName = descriptor.name ? `"${descriptor.name}"` : "/* your preset */"; - throw new Error([`Preset ${formattedPresetName} requires a filename to be set when babel is called directly,`, `\`\`\``, `babel.transform(code, { filename: 'file.ts', presets: [${formattedPresetName}] });`, `\`\`\``, `See https://babeljs.io/docs/en/options#filename for more information.`].join("\n")); + throw new Error([`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 0b74f3a1532711..837db96fd78340 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,14 +247,14 @@ var _transformAst = require("./transform-ast"); var _parse = require("./parse"); -const version = "7.18.2"; +const version = "7.18.5"; exports.version = version; const DEFAULT_EXTENSIONS = Object.freeze([".js", ".jsx", ".es6", ".es", ".mjs", ".cjs"]); exports.DEFAULT_EXTENSIONS = DEFAULT_EXTENSIONS; class OptionManager { init(opts) { - return (0, _config.loadOptions)(opts); + return (0, _config.loadOptionsSync)(opts); } } diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js index 783032ab9375e3..a64d2297e198a5 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js @@ -37,7 +37,12 @@ const parse = function parse(code, opts, callback) { opts = undefined; } - if (callback === undefined) return parseRunner.sync(code, opts); + if (callback === undefined) { + { + return parseRunner.sync(code, opts); + } + } + parseRunner.errback(code, opts, callback); }; diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js index 61fb2224a667ec..5d9184d53c02b8 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js @@ -33,7 +33,9 @@ const transformFromAst = function transformFromAst(ast, code, opts, callback) { } if (callback === undefined) { - return transformFromAstRunner.sync(ast, code, opts); + { + return transformFromAstRunner.sync(ast, code, opts); + } } transformFromAstRunner.errback(ast, code, opts, callback); diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js index 538c3edfe622f0..c7aa407d8ebe75 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js @@ -31,7 +31,12 @@ const transform = function transform(code, opts, callback) { opts = undefined; } - if (callback === undefined) return transformRunner.sync(code, opts); + if (callback === undefined) { + { + return transformRunner.sync(code, opts); + } + } + transformRunner.errback(code, opts, callback); }; diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js index dc434ed8c7b85f..3b04cc4b077778 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js @@ -68,7 +68,7 @@ const { const debug = _debug()("babel:transform:file"); -const LARGE_INPUT_SOURCEMAP_THRESHOLD = 1000000; +const LARGE_INPUT_SOURCEMAP_THRESHOLD = 3000000; function* normalizeFile(pluginPasses, options, code, ast) { code = `${code || ""}`; 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 57cbf3ba6e590f..761e9e510d6583 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.18.2", + "version": "7.18.5", "description": "Babel compiler core.", "main": "./lib/index.js", "author": "The Babel Team (https://babel.dev/team)", @@ -54,10 +54,10 @@ "@babel/helper-compilation-targets": "^7.18.2", "@babel/helper-module-transforms": "^7.18.0", "@babel/helpers": "^7.18.2", - "@babel/parser": "^7.18.0", + "@babel/parser": "^7.18.5", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.18.2", - "@babel/types": "^7.18.2", + "@babel/traverse": "^7.18.5", + "@babel/types": "^7.18.4", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -65,12 +65,13 @@ "semver": "^6.3.0" }, "devDependencies": { - "@babel/helper-transform-fixture-test-runner": "^7.18.0", + "@babel/helper-transform-fixture-test-runner": "^7.18.5", "@babel/plugin-transform-modules-commonjs": "^7.18.2", "@jridgewell/trace-mapping": "^0.3.8", "@types/convert-source-map": "^1.5.1", "@types/debug": "^4.1.0", "@types/resolve": "^1.3.2", - "@types/semver": "^5.4.0" + "@types/semver": "^5.4.0", + "rimraf": "^3.0.0" } } \ No newline at end of file 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 efa309eae70fdc..7fe93e65b3fab8 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 @@ -10725,10 +10725,10 @@ var typescript = (superClass => class extends superClass { return super.parseMaybeAssign(...args); } + if (!state || state === this.state) state = this.state.clone(); let typeParameters; - state = state || this.state.clone(); const arrow = this.tryParse(abort => { - var _expr$extra, _typeParameters, _expr$typeParameters$; + var _expr$extra, _typeParameters; typeParameters = this.tsParseTypeParameters(); const expr = super.parseMaybeAssign(...args); @@ -10742,13 +10742,6 @@ var typescript = (superClass => class extends superClass { } expr.typeParameters = typeParameters; - - if (this.hasPlugin("jsx") && expr.typeParameters.params.length === 1 && !((_expr$typeParameters$ = expr.typeParameters.extra) != null && _expr$typeParameters$.trailingComma)) { - const parameter = expr.typeParameters.params[0]; - - if (!parameter.constraint) ; - } - return expr; }, state); 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 ed3da11f12ae22..ae72de5b409ef2 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.18.4", + "version": "7.18.5", "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/index.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/index.js index 93602608eeecb8..aa02ce04b913bb 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/index.js @@ -227,6 +227,9 @@ class NodePath { } Object.assign(NodePath.prototype, NodePath_ancestry, NodePath_inference, NodePath_replacement, NodePath_evaluation, NodePath_conversion, NodePath_introspection, NodePath_context, NodePath_removal, NodePath_modification, NodePath_family, NodePath_comments); +{ + NodePath.prototype._guessExecutionStatusRelativeToDifferentFunctions = NodePath_introspection._guessExecutionStatusRelativeTo; +} for (const type of t.TYPES) { const typeKey = `is${type}`; diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js index 2cd224a81b9be7..e0dbd719fb60df 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js @@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports._guessExecutionStatusRelativeTo = _guessExecutionStatusRelativeTo; -exports._guessExecutionStatusRelativeToDifferentFunctions = _guessExecutionStatusRelativeToDifferentFunctions; exports._resolve = _resolve; exports.canHaveVariableDeclarationOrExpression = canHaveVariableDeclarationOrExpression; exports.canSwapBetweenExpressionAndStatement = canSwapBetweenExpressionAndStatement; @@ -232,20 +231,24 @@ function isExecutionUncertainInList(paths, maxIndex) { } function _guessExecutionStatusRelativeTo(target) { + return _guessExecutionStatusRelativeToCached(this, target, new Map()); +} + +function _guessExecutionStatusRelativeToCached(base, target, cache) { const funcParent = { - this: getOuterFunction(this), + this: getOuterFunction(base), target: getOuterFunction(target) }; if (funcParent.target.node !== funcParent.this.node) { - return this._guessExecutionStatusRelativeToDifferentFunctions(funcParent.target); + return _guessExecutionStatusRelativeToDifferentFunctionsCached(base, funcParent.target, cache); } const paths = { target: target.getAncestry(), - this: this.getAncestry() + this: base.getAncestry() }; - if (paths.target.indexOf(this) >= 0) return "after"; + if (paths.target.indexOf(base) >= 0) return "after"; if (paths.this.indexOf(target) >= 0) return "before"; let commonPath; const commonIndex = { @@ -289,9 +292,9 @@ function _guessExecutionStatusRelativeTo(target) { return keyPosition.target > keyPosition.this ? "before" : "after"; } -const executionOrderCheckedNodes = new WeakSet(); +const executionOrderCheckedNodes = new Set(); -function _guessExecutionStatusRelativeToDifferentFunctions(target) { +function _guessExecutionStatusRelativeToDifferentFunctionsInternal(base, target, cache) { if (!target.isFunctionDeclaration() || target.parentPath.isExportDeclaration()) { return "unknown"; } @@ -312,20 +315,37 @@ function _guessExecutionStatusRelativeToDifferentFunctions(target) { if (executionOrderCheckedNodes.has(path.node)) continue; executionOrderCheckedNodes.add(path.node); - const status = this._guessExecutionStatusRelativeTo(path); - - executionOrderCheckedNodes.delete(path.node); + try { + const status = _guessExecutionStatusRelativeToCached(base, path, cache); - if (allStatus && allStatus !== status) { - return "unknown"; - } else { - allStatus = status; + if (allStatus && allStatus !== status) { + return "unknown"; + } else { + allStatus = status; + } + } finally { + executionOrderCheckedNodes.delete(path.node); } } return allStatus; } +function _guessExecutionStatusRelativeToDifferentFunctionsCached(base, target, cache) { + let nodeMap = cache.get(base.node); + + if (!nodeMap) { + cache.set(base.node, nodeMap = new Map()); + } else if (nodeMap.has(target.node)) { + return nodeMap.get(target.node); + } + + const result = _guessExecutionStatusRelativeToDifferentFunctionsInternal(base, target, cache); + + nodeMap.set(target.node, result); + return result; +} + function resolve(dangerous, resolved) { return this._resolve(dangerous, resolved) || this; } 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 3a85d047589bb8..e874255cc3adb6 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.18.2", + "version": "7.18.5", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-traverse", @@ -22,8 +22,8 @@ "@babel/helper-function-name": "^7.17.9", "@babel/helper-hoist-variables": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.18.0", - "@babel/types": "^7.18.2", + "@babel/parser": "^7.18.5", + "@babel/types": "^7.18.4", "debug": "^4.1.0", "globals": "^11.1.0" }, diff --git a/tools/node_modules/eslint/node_modules/browserslist/index.js b/tools/node_modules/eslint/node_modules/browserslist/index.js index 37e35b30d56c25..e28d5e2154adef 100644 --- a/tools/node_modules/eslint/node_modules/browserslist/index.js +++ b/tools/node_modules/eslint/node_modules/browserslist/index.js @@ -229,7 +229,7 @@ function mapVersions(data, map) { data.versions = data.versions.map(function (i) { return map[i] || i }) - data.released = data.versions.map(function (i) { + data.released = data.released.map(function (i) { return map[i] || i }) var fixedDate = {} diff --git a/tools/node_modules/eslint/node_modules/browserslist/package.json b/tools/node_modules/eslint/node_modules/browserslist/package.json index 1c5acf3d5fda58..d0e1265a1d6fa8 100644 --- a/tools/node_modules/eslint/node_modules/browserslist/package.json +++ b/tools/node_modules/eslint/node_modules/browserslist/package.json @@ -1,6 +1,6 @@ { "name": "browserslist", - "version": "4.20.3", + "version": "4.20.4", "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", "keywords": [ "caniuse", @@ -21,10 +21,10 @@ "license": "MIT", "repository": "browserslist/browserslist", "dependencies": { - "caniuse-lite": "^1.0.30001332", - "electron-to-chromium": "^1.4.118", + "caniuse-lite": "^1.0.30001349", + "electron-to-chromium": "^1.4.147", "escalade": "^3.1.1", - "node-releases": "^2.0.3", + "node-releases": "^2.0.5", "picocolors": "^1.0.0" }, "engines": { 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 5d2a5b420ad282..3e31ff66cfa057 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.0426387,F:0.063958,A:0.0142129,B:0.568515,vB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","vB","J","D","E","F","A","B","","",""],E:"IE",F:{vB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.003939,K:0.004267,L:0.004268,G:0.070902,M:0.027573,N:0.007878,O:0.027573,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.007878,U:0.003939,V:0.003939,W:0.007878,Z:0.004318,a:0.003939,b:0.004118,c:0.003939,d:0.011817,e:0.004118,f:0.003939,g:0.007878,h:0.015756,i:0.047268,j:0.03939,k:0.523887,X:3.21422,H:0.051207},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","X","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,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,X:1649635200,H:1651190400},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.009284,"1":0.004707,"2":0.009076,"3":0.007878,"4":0.004783,"5":0.004271,"6":0.004783,"7":0.00487,"8":0.005029,"9":0.0047,wB:0.004118,jB:0.004271,I:0.019695,l:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.003939,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,m:0.004443,n:0.004283,o:0.008322,p:0.013698,q:0.004161,r:0.008786,s:0.004118,t:0.004317,u:0.004393,v:0.004418,w:0.008834,x:0.008322,y:0.008928,z:0.004471,AB:0.043329,BB:0.007878,CB:0.004356,DB:0.004525,EB:0.004293,FB:0.003939,GB:0.004538,HB:0.008282,IB:0.023634,JB:0.082719,KB:0.019695,LB:0.011817,MB:0.023634,NB:0.019695,OB:0.015756,PB:0.003939,kB:0.007878,QB:0.007878,lB:0.004356,RB:0.004425,SB:0.008322,Y:0.00415,TB:0.004267,UB:0.003939,VB:0.004267,WB:0.007878,XB:0.00415,YB:0.004293,ZB:0.004425,aB:0.003939,bB:0.00415,cB:0.00415,dB:0.004318,eB:0.004356,fB:0.003939,gB:0.047268,P:0.007878,Q:0.007878,R:0.015756,mB:0.003939,S:0.003939,T:0.007878,U:0.004268,V:0.003939,W:0.007878,Z:0.011817,a:0.011817,b:0.007878,c:0.098475,d:0.003939,e:0.011817,f:0.047268,g:0.015756,h:0.023634,i:0.031512,j:0.598728,k:1.68983,X:0.019695,H:0,nB:0,oB:0,xB:0.008786,yB:0.00487},B:"moz",C:["wB","jB","xB","yB","I","l","J","D","E","F","A","B","C","K","L","G","M","N","O","m","n","o","p","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","kB","QB","lB","RB","SB","Y","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","P","Q","R","mB","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","X","H","nB","oB",""],E:"Firefox",F:{"0":1413244800,"1":1417392000,"2":1421107200,"3":1424736000,"4":1428278400,"5":1431475200,"6":1435881600,"7":1439251200,"8":1442880000,"9":1446508800,wB:1161648000,jB:1213660800,xB:1246320000,yB:1264032000,I:1300752000,l: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,m:1357603200,n:1361232000,o:1364860800,p:1368489600,q:1372118400,r:1375747200,s:1379376000,t:1386633600,u:1391472000,v:1395100800,w:1398729600,x:1402358400,y:1405987200,z:1409616000,AB:1450137600,BB:1453852800,CB:1457395200,DB:1461628800,EB:1465257600,FB:1470096000,GB:1474329600,HB:1479168000,IB:1485216000,JB:1488844800,KB:1492560000,LB:1497312000,MB:1502150400,NB:1506556800,OB:1510617600,PB:1516665600,kB:1520985600,QB:1525824000,lB:1529971200,RB:1536105600,SB:1540252800,Y:1544486400,TB:1548720000,UB:1552953600,VB:1558396800,WB:1562630400,XB:1567468800,YB:1571788800,ZB:1575331200,aB:1578355200,bB:1581379200,cB:1583798400,dB:1586304000,eB:1588636800,fB:1591056000,gB:1593475200,P:1595894400,Q:1598313600,R:1600732800,mB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,X:1651536000,H:1653955200,nB:null,oB:null}},D:{A:{"0":0.004118,"1":0.007878,"2":0.007878,"3":0.004335,"4":0.004464,"5":0.019695,"6":0.007878,"7":0.019695,"8":0.007878,"9":0.007878,I:0.004706,l: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,m:0.008322,n:0.004393,o:0.004317,p:0.003939,q:0.008786,r:0.003939,s:0.004461,t:0.004141,u:0.004326,v:0.0047,w:0.004538,x:0.008322,y:0.008596,z:0.004566,AB:0.011817,BB:0.007878,CB:0.007878,DB:0.007878,EB:0.015756,FB:0.027573,GB:0.070902,HB:0.007878,IB:0.011817,JB:0.007878,KB:0.015756,LB:0.007878,MB:0.011817,NB:0.043329,OB:0.011817,PB:0.011817,kB:0.011817,QB:0.019695,lB:0.015756,RB:0.015756,SB:0.015756,Y:0.011817,TB:0.019695,UB:0.027573,VB:0.015756,WB:0.007878,XB:0.059085,YB:0.027573,ZB:0.011817,aB:0.03939,bB:0.011817,cB:0.023634,dB:0.063024,eB:0.07878,fB:0.015756,gB:0.03939,P:0.216645,Q:0.059085,R:0.043329,S:0.126048,T:0.066963,U:0.074841,V:0.074841,W:0.102414,Z:0.027573,a:0.055146,b:0.03939,c:0.090597,d:0.07878,e:0.070902,f:0.098475,g:0.063024,h:0.212706,i:0.216645,j:0.417534,k:4.03354,X:17.2016,H:0.259974,nB:0.015756,oB:0.007878,zB:0},B:"webkit",C:["","","","","","I","l","J","D","E","F","A","B","C","K","L","G","M","N","O","m","n","o","p","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","kB","QB","lB","RB","SB","Y","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","X","H","nB","oB","zB"],E:"Chrome",F:{"0":1392940800,"1":1397001600,"2":1400544000,"3":1405468800,"4":1409011200,"5":1412640000,"6":1416268800,"7":1421798400,"8":1425513600,"9":1429401600,I:1264377600,l: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,m:1332892800,n:1337040000,o:1340668800,p:1343692800,q:1348531200,r:1352246400,s:1357862400,t:1361404800,u:1364428800,v:1369094400,w:1374105600,x:1376956800,y:1384214400,z:1389657600,AB:1432080000,BB:1437523200,CB:1441152000,DB:1444780800,EB:1449014400,FB:1453248000,GB:1456963200,HB:1460592000,IB:1464134400,JB:1469059200,KB:1472601600,LB:1476230400,MB:1480550400,NB:1485302400,OB:1489017600,PB:1492560000,kB:1496707200,QB:1500940800,lB:1504569600,RB:1508198400,SB:1512518400,Y:1516752000,TB:1520294400,UB:1523923200,VB:1527552000,WB:1532390400,XB:1536019200,YB:1539648000,ZB:1543968000,aB:1548720000,bB:1552348800,cB:1555977600,dB:1559606400,eB:1564444800,fB:1568073600,gB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,X:1648512000,H:1650931200,nB:null,oB:null,zB:null}},E:{A:{I:0,l:0.008322,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.003939,K:0.03939,L:0.181194,G:0.074841,"0B":0,pB:0.008692,"1B":0.007878,"2B":0.00456,"3B":0.004283,"4B":0.015756,qB:0.011817,hB:0.027573,iB:0.055146,"5B":0.401778,"6B":0.59085,"7B":0.145743,rB:0.165438,sB:1.01232,"8B":0,"9B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0B","pB","I","l","1B","J","2B","D","3B","E","F","4B","A","qB","B","hB","C","iB","K","5B","L","6B","G","7B","rB","sB","8B","9B","",""],E:"Safari",F:{"0B":1205798400,pB:1226534400,I:1244419200,l:1275868800,"1B":1311120000,J:1343174400,"2B":1382400000,D:1382400000,"3B":1410998400,E:1413417600,F:1443657600,"4B":1458518400,A:1474329600,qB:1490572800,B:1505779200,hB:1522281600,C:1537142400,iB:1553472000,K:1568851200,"5B":1585008000,L:1600214400,"6B":1619395200,G:1632096000,"7B":1635292800,rB:1639353600,sB:1647216000,"8B":1652745600,"9B":null}},F:{A:{"0":0.005014,"1":0.009758,"2":0.004879,"3":0.007878,"4":0.004283,"5":0.004367,"6":0.004534,"7":0.007878,"8":0.004227,"9":0.004418,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,m:0.006015,n:0.004879,o:0.006597,p:0.006597,q:0.013434,r:0.006702,s:0.006015,t:0.005595,u:0.004393,v:0.003939,w:0.004879,x:0.004879,y:0.003939,z:0.005152,AB:0.004161,BB:0.004227,CB:0.004725,DB:0.011817,EB:0.008942,FB:0.004707,GB:0.004827,HB:0.004707,IB:0.004707,JB:0.004326,KB:0.008922,LB:0.014349,MB:0.004425,NB:0.00472,OB:0.004425,PB:0.004425,QB:0.00472,RB:0.004532,SB:0.004566,Y:0.02283,TB:0.00867,UB:0.004656,VB:0.004642,WB:0.003939,XB:0.00944,YB:0.004293,ZB:0.004293,aB:0.004298,bB:0.096692,cB:0.004201,dB:0.004141,eB:0.004257,fB:0.003939,gB:0.008236,P:0.003939,Q:0.003939,R:0.008514,mB:0.003939,S:0.003939,T:0.169377,U:0.634179,V:0.011817,W:0,AC:0.00685,BC:0,CC:0.008392,DC:0.004706,hB:0.006229,tB:0.004879,EC:0.008786,iB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","F","AC","BC","CC","DC","B","hB","tB","EC","C","iB","G","M","N","O","m","n","o","p","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","Y","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","P","Q","R","mB","S","T","U","V","W","",""],E:"Opera",F:{"0":1445904000,"1":1449100800,"2":1454371200,"3":1457308800,"4":1462320000,"5":1465344000,"6":1470096000,"7":1474329600,"8":1477267200,"9":1481587200,F:1150761600,AC:1223424000,BC:1251763200,CC:1267488000,DC:1277942400,B:1292457600,hB:1302566400,tB:1309219200,EC:1323129600,C:1323129600,iB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,m:1390867200,n:1393891200,o:1399334400,p:1401753600,q:1405987200,r:1409616000,s:1413331200,t:1417132800,u:1422316800,v:1425945600,w:1430179200,x:1433808000,y:1438646400,z:1442448000,AB:1486425600,BB:1490054400,CB:1494374400,DB:1498003200,EB:1502236800,FB:1506470400,GB:1510099200,HB:1515024000,IB:1517961600,JB:1521676800,KB:1525910400,LB:1530144000,MB:1534982400,NB:1537833600,OB:1543363200,PB:1548201600,QB:1554768000,RB:1561593600,SB:1566259200,Y:1570406400,TB:1573689600,UB:1578441600,VB:1583971200,WB:1587513600,XB:1592956800,YB:1595894400,ZB:1600128000,aB:1603238400,bB:1613520000,cB:1612224000,dB:1616544000,eB:1619568000,fB:1623715200,gB:1627948800,P:1631577600,Q:1633392000,R:1635984000,mB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:null},D:{F:"o",B:"o",C:"o",AC:"o",BC:"o",CC:"o",DC:"o",hB:"o",tB:"o",EC:"o",iB:"o"}},G:{A:{E:0,pB:0,FC:0,uB:0.00300959,GC:0.00451439,HC:0.0270863,IC:0.0165528,JC:0.00752398,KC:0.0225719,LC:0.0842686,MC:0.0210671,NC:0.103831,OC:0.0511631,PC:0.0346103,QC:0.0331055,RC:0.577842,SC:0.0300959,TC:0.0135432,UC:0.0677158,VC:0.212176,WC:0.651577,XC:1.82381,YC:0.732836,rB:5.15092,sB:5.37964},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","pB","FC","uB","GC","HC","IC","E","JC","KC","LC","MC","NC","OC","PC","QC","RC","SC","TC","UC","VC","WC","XC","YC","rB","sB","","",""],E:"Safari on iOS",F:{pB:1270252800,FC:1283904000,uB:1299628800,GC:1331078400,HC:1359331200,IC:1394409600,E:1410912000,JC:1413763200,KC:1442361600,LC:1458518400,MC:1473724800,NC:1490572800,OC:1505779200,PC:1522281600,QC:1537142400,RC:1553472000,SC:1568851200,TC:1572220800,UC:1580169600,VC:1585008000,WC:1600214400,XC:1619395200,YC:1632096000,rB:1639353600,sB:1647216000}},H:{A:{ZC:1.07877},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZC","","",""],E:"Opera Mini",F:{ZC:1426464000}},I:{A:{jB:0,I:0.0207421,H:0,aC:0,bC:0,cC:0,dC:0.0207421,uB:0.0725973,eC:0,fC:0.352616},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","aC","bC","cC","jB","I","dC","uB","eC","fC","H","","",""],E:"Android Browser",F:{aC:1256515200,bC:1274313600,cC:1291593600,jB:1298332800,I:1318896000,dC:1341792000,uB:1374624000,eC:1386547200,fC:1401667200,H:1651017600}},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,Y:0.0111391,hB:0,tB:0,iB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","hB","tB","C","iB","Y","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,hB:1314835200,tB:1318291200,C:1330300800,iB:1349740800,Y:1613433600},D:{Y:"webkit"}},L:{A:{H:40.1569},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1651017600}},M:{A:{X:0.321233},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","X","","",""],E:"Firefox for Android",F:{X:1651536000}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{gC:0.854601},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","gC","","",""],E:"UC Browser for Android",F:{gC:1471392000},D:{gC:"webkit"}},P:{A:{I:0.219605,hC:0.0103543,iC:0.010304,jC:0.0732015,kC:0.0103584,lC:0.0104574,qB:0.0105043,mC:0.0522868,nC:0.0209147,oC:0.0941162,pC:0.125488,qC:0.0836589,rC:2.29016},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","hC","iC","jC","kC","lC","qB","mC","nC","oC","pC","qC","rC","","",""],E:"Samsung Internet",F:{I:1461024000,hC:1481846400,iC:1509408000,jC:1528329600,kC:1546128000,lC:1554163200,qB:1567900800,mC:1582588800,nC:1593475200,oC:1605657600,pC:1618531200,qC:1629072000,rC:1640736000}},Q:{A:{sC:0.169708},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","sC","","",""],E:"QQ Browser",F:{sC:1589846400}},R:{A:{tC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","tC","","",""],E:"Baidu Browser",F:{tC:1491004800}},S:{A:{uC:0.072732},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","uC","","",""],E:"KaiOS Browser",F:{uC:1527811200}}}; +module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.0166941,F:0.038953,A:0.00556471,B:0.8514,xB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","xB","J","D","E","F","A","B","","",""],E:"IE",F:{xB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.007734,K:0.004267,L:0.004268,G:0.058005,M:0.003867,N:0.007734,O:0.023202,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.007734,U:0.007734,V:0.003867,W:0.011601,Z:0.004318,a:0.007734,b:0.004118,c:0.003939,d:0.007734,e:0.004118,f:0.003939,g:0.007734,h:0.011601,i:0.015468,j:0.015468,k:0.054138,l:0.212685,H:3.52284,X:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","H","X","","",""],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,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,H:1651190400,X:1653955200},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004471,"1":0.009284,"2":0.004707,"3":0.009076,"4":0.003867,"5":0.004783,"6":0.004271,"7":0.004783,"8":0.00487,"9":0.005029,yB:0.004118,lB:0.004271,I:0.019335,m:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007734,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,n:0.004443,o:0.004283,p:0.008322,q:0.013698,r:0.004161,s:0.008786,t:0.004118,u:0.004317,v:0.004393,w:0.004418,x:0.008834,y:0.008322,z:0.008928,AB:0.0047,BB:0.023202,CB:0.007734,DB:0.003867,EB:0.004525,FB:0.004293,GB:0.003867,HB:0.004538,IB:0.008282,JB:0.011601,KB:0.069606,LB:0.011601,MB:0.007734,NB:0.015468,OB:0.011601,PB:0.011601,QB:0.003939,mB:0.007734,RB:0.003867,nB:0.004356,SB:0.004425,TB:0.008322,Y:0.00415,UB:0.004267,VB:0.003867,WB:0.004267,XB:0.007734,YB:0.00415,ZB:0.004293,aB:0.004425,bB:0.003867,cB:0.00415,dB:0.00415,eB:0.004318,fB:0.004356,gB:0.003867,hB:0.042537,P:0.007734,Q:0.007734,R:0.011601,oB:0.007734,S:0.003867,T:0.003867,U:0.004268,V:0.003867,W:0.011601,Z:0.011601,a:0.007734,b:0.007734,c:0.096675,d:0.003867,e:0.007734,f:0.03867,g:0.011601,h:0.015468,i:0.015468,j:0.034803,k:0.421503,l:1.84456,H:0.023202,X:0,pB:0,zB:0.008786,"0B":0.00487},B:"moz",C:["yB","lB","zB","0B","I","m","J","D","E","F","A","B","C","K","L","G","M","N","O","n","o","p","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","mB","RB","nB","SB","TB","Y","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","P","Q","R","oB","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","H","X","pB",""],E:"Firefox",F:{"0":1409616000,"1":1413244800,"2":1417392000,"3":1421107200,"4":1424736000,"5":1428278400,"6":1431475200,"7":1435881600,"8":1439251200,"9":1442880000,yB:1161648000,lB:1213660800,zB:1246320000,"0B":1264032000,I:1300752000,m: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,n:1357603200,o:1361232000,p:1364860800,q:1368489600,r:1372118400,s:1375747200,t:1379376000,u:1386633600,v:1391472000,w:1395100800,x:1398729600,y:1402358400,z:1405987200,AB:1446508800,BB:1450137600,CB:1453852800,DB:1457395200,EB:1461628800,FB:1465257600,GB:1470096000,HB:1474329600,IB:1479168000,JB:1485216000,KB:1488844800,LB:1492560000,MB:1497312000,NB:1502150400,OB:1506556800,PB:1510617600,QB:1516665600,mB:1520985600,RB:1525824000,nB:1529971200,SB:1536105600,TB:1540252800,Y:1544486400,UB:1548720000,VB:1552953600,WB:1558396800,XB:1562630400,YB:1567468800,ZB:1571788800,aB:1575331200,bB:1578355200,cB:1581379200,dB:1583798400,eB:1586304000,fB:1588636800,gB:1591056000,hB:1593475200,P:1595894400,Q:1598313600,R:1600732800,oB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,H:1653955200,X:null,pB:null}},D:{A:{"0":0.004566,"1":0.004118,"2":0.007734,"3":0.007878,"4":0.004335,"5":0.004464,"6":0.019335,"7":0.003867,"8":0.019335,"9":0.007734,I:0.004706,m: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,n:0.008322,o:0.004393,p:0.004317,q:0.007734,r:0.008786,s:0.003939,t:0.004461,u:0.004141,v:0.004326,w:0.0047,x:0.004538,y:0.008322,z:0.008596,AB:0.007734,BB:0.011601,CB:0.003867,DB:0.003867,EB:0.003867,FB:0.015468,GB:0.023202,HB:0.061872,IB:0.003867,JB:0.007734,KB:0.007734,LB:0.015468,MB:0.003867,NB:0.007734,OB:0.027069,PB:0.007734,QB:0.011601,mB:0.007734,RB:0.015468,nB:0.015468,SB:0.015468,TB:0.015468,Y:0.007734,UB:0.015468,VB:0.027069,WB:0.023202,XB:0.007734,YB:0.046404,ZB:0.019335,aB:0.011601,bB:0.019335,cB:0.007734,dB:0.023202,eB:0.058005,fB:0.073473,gB:0.011601,hB:0.030936,P:0.204951,Q:0.042537,R:0.03867,S:0.131478,T:0.081207,U:0.088941,V:0.092808,W:0.104409,Z:0.019335,a:0.058005,b:0.034803,c:0.081207,d:0.065739,e:0.054138,f:0.061872,g:0.042537,h:0.143079,i:0.143079,j:0.204951,k:0.351897,l:4.17636,H:15.4487,X:1.5468,pB:0.015468,"1B":0.007734,"2B":0},B:"webkit",C:["","","","","I","m","J","D","E","F","A","B","C","K","L","G","M","N","O","n","o","p","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","mB","RB","nB","SB","TB","Y","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","H","X","pB","1B","2B"],E:"Chrome",F:{"0":1389657600,"1":1392940800,"2":1397001600,"3":1400544000,"4":1405468800,"5":1409011200,"6":1412640000,"7":1416268800,"8":1421798400,"9":1425513600,I:1264377600,m: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,n:1332892800,o:1337040000,p:1340668800,q:1343692800,r:1348531200,s:1352246400,t:1357862400,u:1361404800,v:1364428800,w:1369094400,x:1374105600,y:1376956800,z:1384214400,AB:1429401600,BB:1432080000,CB:1437523200,DB:1441152000,EB:1444780800,FB:1449014400,GB:1453248000,HB:1456963200,IB:1460592000,JB:1464134400,KB:1469059200,LB:1472601600,MB:1476230400,NB:1480550400,OB:1485302400,PB:1489017600,QB:1492560000,mB:1496707200,RB:1500940800,nB:1504569600,SB:1508198400,TB:1512518400,Y:1516752000,UB:1520294400,VB:1523923200,WB:1527552000,XB:1532390400,YB:1536019200,ZB:1539648000,aB:1543968000,bB:1548720000,cB:1552348800,dB:1555977600,eB:1559606400,fB:1564444800,gB:1568073600,hB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,H:1650931200,X:1653350400,pB:null,"1B":null,"2B":null}},E:{A:{I:0,m:0.008322,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.003867,K:0.034803,L:0.158547,G:0.058005,"3B":0,qB:0.008692,"4B":0.007734,"5B":0.00456,"6B":0.004283,"7B":0.015468,rB:0.007734,iB:0.023202,jB:0.046404,"8B":0.266823,"9B":0.491109,AC:0.108276,sB:0.108276,tB:1.67054,uB:0.189483,kB:0,BC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3B","qB","I","m","4B","J","5B","D","6B","E","F","7B","A","rB","B","iB","C","jB","K","8B","L","9B","G","AC","sB","tB","uB","kB","BC",""],E:"Safari",F:{"3B":1205798400,qB:1226534400,I:1244419200,m:1275868800,"4B":1311120000,J:1343174400,"5B":1382400000,D:1382400000,"6B":1410998400,E:1413417600,F:1443657600,"7B":1458518400,A:1474329600,rB:1490572800,B:1505779200,iB:1522281600,C:1537142400,jB:1553472000,K:1568851200,"8B":1585008000,L:1600214400,"9B":1619395200,G:1632096000,AC:1635292800,sB:1639353600,tB:1647216000,uB:1652745600,kB:null,BC:null}},F:{A:{"0":0.005152,"1":0.005014,"2":0.009758,"3":0.004879,"4":0.003867,"5":0.004283,"6":0.004367,"7":0.004534,"8":0.007734,"9":0.004227,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,n:0.006015,o:0.004879,p:0.006597,q:0.006597,r:0.013434,s:0.006702,t:0.006015,u:0.005595,v:0.004393,w:0.007734,x:0.004879,y:0.004879,z:0.003867,AB:0.004418,BB:0.004161,CB:0.004227,DB:0.004725,EB:0.011601,FB:0.008942,GB:0.004707,HB:0.004827,IB:0.004707,JB:0.004707,KB:0.004326,LB:0.008922,MB:0.014349,NB:0.004425,OB:0.00472,PB:0.004425,QB:0.004425,RB:0.00472,SB:0.004532,TB:0.004566,Y:0.02283,UB:0.00867,VB:0.004656,WB:0.004642,XB:0.003867,YB:0.00944,ZB:0.004293,aB:0.003867,bB:0.004298,cB:0.096692,dB:0.004201,eB:0.004141,fB:0.004257,gB:0.003939,hB:0.008236,P:0.003939,Q:0.003939,R:0.008514,oB:0.003939,S:0.003939,T:0.007734,U:0.448572,V:0.475641,W:0.027069,CC:0.00685,DC:0,EC:0.008392,FC:0.004706,iB:0.006229,vB:0.004879,GC:0.008786,jB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","F","CC","DC","EC","FC","B","iB","vB","GC","C","jB","G","M","N","O","n","o","p","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","Y","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","P","Q","R","oB","S","T","U","V","W","",""],E:"Opera",F:{"0":1442448000,"1":1445904000,"2":1449100800,"3":1454371200,"4":1457308800,"5":1462320000,"6":1465344000,"7":1470096000,"8":1474329600,"9":1477267200,F:1150761600,CC:1223424000,DC:1251763200,EC:1267488000,FC:1277942400,B:1292457600,iB:1302566400,vB:1309219200,GC:1323129600,C:1323129600,jB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,n:1390867200,o:1393891200,p:1399334400,q:1401753600,r:1405987200,s:1409616000,t:1413331200,u:1417132800,v:1422316800,w:1425945600,x:1430179200,y:1433808000,z:1438646400,AB:1481587200,BB:1486425600,CB:1490054400,DB:1494374400,EB:1498003200,FB:1502236800,GB:1506470400,HB:1510099200,IB:1515024000,JB:1517961600,KB:1521676800,LB:1525910400,MB:1530144000,NB:1534982400,OB:1537833600,PB:1543363200,QB:1548201600,RB:1554768000,SB:1561593600,TB:1566259200,Y:1570406400,UB:1573689600,VB:1578441600,WB:1583971200,XB:1587513600,YB:1592956800,ZB:1595894400,aB:1600128000,bB:1603238400,cB:1613520000,dB:1612224000,eB:1616544000,fB:1619568000,gB:1623715200,hB:1627948800,P:1631577600,Q:1633392000,R:1635984000,oB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:null},D:{F:"o",B:"o",C:"o",CC:"o",DC:"o",EC:"o",FC:"o",iB:"o",vB:"o",GC:"o",jB:"o"}},G:{A:{E:0,qB:0.00303644,HC:0,wB:0.00151822,IC:0.00455466,JC:0.00455466,KC:0.0167004,LC:0.00759111,MC:0.0197369,NC:0.0774293,OC:0.013664,PC:0.0926115,QC:0.0379555,RC:0.0318826,SC:0.0303644,TC:0.57996,UC:0.0288462,VC:0.0121458,WC:0.0607288,XC:0.189778,YC:0.592106,ZC:1.50911,aC:0.513159,sB:1.20395,tB:10.1478,uB:0,kB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","qB","HC","wB","IC","JC","KC","E","LC","MC","NC","OC","PC","QC","RC","SC","TC","UC","VC","WC","XC","YC","ZC","aC","sB","tB","uB","kB","",""],E:"Safari on iOS",F:{qB:1270252800,HC:1283904000,wB:1299628800,IC:1331078400,JC:1359331200,KC:1394409600,E:1410912000,LC:1413763200,MC:1442361600,NC:1458518400,OC:1473724800,PC:1490572800,QC:1505779200,RC:1522281600,SC:1537142400,TC:1553472000,UC:1568851200,VC:1572220800,WC:1580169600,XC:1585008000,YC:1600214400,ZC:1619395200,aC:1632096000,sB:1639353600,tB:1647216000,uB:1652659200,kB:null}},H:{A:{bC:0.998688},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bC","","",""],E:"Opera Mini",F:{bC:1426464000}},I:{A:{lB:0,I:0.0149357,H:0,cC:0,dC:0,eC:0,fC:0.0199142,wB:0.0597426,gC:0,hC:0.328584},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","cC","dC","eC","lB","I","fC","wB","gC","hC","H","","",""],E:"Android Browser",F:{cC:1256515200,dC:1274313600,eC:1291593600,lB:1298332800,I:1318896000,fC:1341792000,wB:1374624000,gC:1386547200,hC:1401667200,H:1651017600}},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,Y:0.0111391,iB:0,vB:0,jB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","iB","vB","C","jB","Y","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,iB:1314835200,vB:1318291200,C:1330300800,jB:1349740800,Y:1613433600},D:{Y:"webkit"}},L:{A:{X:41.3354},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","X","","",""],E:"Chrome for Android",F:{X:1653350400}},M:{A:{H:0.30665},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Firefox for Android",F:{H:1653955200}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{iC:0.766625},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","iC","","",""],E:"UC Browser for Android",F:{iC:1471392000},D:{iC:"webkit"}},P:{A:{I:0.209346,jC:0.0103543,kC:0.010304,lC:0.0628037,mC:0.0103584,nC:0.0104673,rB:0.0105043,oC:0.0418691,pC:0.0209346,qC:0.0942055,rC:0.0942055,sC:0.0942055,kB:0.889718,tC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","jC","kC","lC","mC","nC","rB","oC","pC","qC","rC","sC","kB","tC","","",""],E:"Samsung Internet",F:{I:1461024000,jC:1481846400,kC:1509408000,lC:1528329600,mC:1546128000,nC:1554163200,rB:1567900800,oC:1582588800,pC:1593475200,qC:1605657600,rC:1618531200,sC:1629072000,kB:1640736000,tC:1651708800}},Q:{A:{uC:0.153325},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","uC","","",""],E:"QQ Browser",F:{uC:1589846400}},R:{A:{vC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","vC","","",""],E:"Baidu Browser",F:{vC:1491004800}},S:{A:{wC:0.073596},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","wC","","",""],E:"KaiOS Browser",F:{wC: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 fbd81b660aadcf..1d2ffab820acb5 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":"33","1":"34","2":"35","3":"36","4":"37","5":"38","6":"39","7":"40","8":"41","9":"42",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"101",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:"100",Y:"64",Z:"88",a:"89",b:"90",c:"91",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"5",m:"19",n:"20",o:"21",p:"22",q:"23",r:"24",s:"25",t:"26",u:"27",v:"28",w:"29",x:"30",y:"31",z:"32",AB:"43",BB:"44",CB:"45",DB:"46",EB:"47",FB:"48",GB:"49",HB:"50",IB:"51",JB:"52",KB:"53",LB:"54",MB:"55",NB:"56",OB:"57",PB:"58",QB:"60",RB:"62",SB:"63",TB:"65",UB:"66",VB:"67",WB:"68",XB:"69",YB:"70",ZB:"71",aB:"72",bB:"73",cB:"74",dB:"75",eB:"76",fB:"77",gB:"78",hB:"11.1",iB:"12.1",jB:"3",kB:"59",lB:"61",mB:"82",nB:"102",oB:"103",pB:"3.2",qB:"10.1",rB:"15.2-15.3",sB:"15.4",tB:"11.5",uB:"4.2-4.3",vB:"5.5",wB:"2",xB:"3.5",yB:"3.6",zB:"104","0B":"3.1","1B":"5.1","2B":"6.1","3B":"7.1","4B":"9.1","5B":"13.1","6B":"14.1","7B":"15.1","8B":"15.5","9B":"TP",AC:"9.5-9.6",BC:"10.0-10.1",CC:"10.5",DC:"10.6",EC:"11.6",FC:"4.0-4.1",GC:"5.0-5.1",HC:"6.0-6.1",IC:"7.0-7.1",JC:"8.1-8.4",KC:"9.0-9.2",LC:"9.3",MC:"10.0-10.2",NC:"10.3",OC:"11.0-11.2",PC:"11.3-11.4",QC:"12.0-12.1",RC:"12.2-12.5",SC:"13.0-13.1",TC:"13.2",UC:"13.3",VC:"13.4-13.7",WC:"14.0-14.4",XC:"14.5-14.8",YC:"15.0-15.1",ZC:"all",aC:"2.1",bC:"2.2",cC:"2.3",dC:"4.1",eC:"4.4",fC:"4.4.3-4.4.4",gC:"12.12",hC:"5.0-5.4",iC:"6.2-6.4",jC:"7.2-7.4",kC:"8.2",lC:"9.2",mC:"11.1-11.2",nC:"12.0",oC:"13.0",pC:"14.0",qC:"15.0",rC:"16.0",sC:"10.4",tC:"7.12",uC:"2.5"}; +module.exports={"0":"32","1":"33","2":"34","3":"35","4":"36","5":"37","6":"38","7":"39","8":"40","9":"41",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"101",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:"102",Y:"64",Z:"88",a:"89",b:"90",c:"91",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"100",m:"5",n:"19",o:"20",p:"21",q:"22",r:"23",s:"24",t:"25",u:"26",v:"27",w:"28",x:"29",y:"30",z:"31",AB:"42",BB:"43",CB:"44",DB:"45",EB:"46",FB:"47",GB:"48",HB:"49",IB:"50",JB:"51",KB:"52",LB:"53",MB:"54",NB:"55",OB:"56",PB:"57",QB:"58",RB:"60",SB:"62",TB:"63",UB:"65",VB:"66",WB:"67",XB:"68",YB:"69",ZB:"70",aB:"71",bB:"72",cB:"73",dB:"74",eB:"75",fB:"76",gB:"77",hB:"78",iB:"11.1",jB:"12.1",kB:"16.0",lB:"3",mB:"59",nB:"61",oB:"82",pB:"103",qB:"3.2",rB:"10.1",sB:"15.2-15.3",tB:"15.4",uB:"15.5",vB:"11.5",wB:"4.2-4.3",xB:"5.5",yB:"2",zB:"3.5","0B":"3.6","1B":"104","2B":"105","3B":"3.1","4B":"5.1","5B":"6.1","6B":"7.1","7B":"9.1","8B":"13.1","9B":"14.1",AC:"15.1",BC:"TP",CC:"9.5-9.6",DC:"10.0-10.1",EC:"10.5",FC:"10.6",GC:"11.6",HC:"4.0-4.1",IC:"5.0-5.1",JC:"6.0-6.1",KC:"7.0-7.1",LC:"8.1-8.4",MC:"9.0-9.2",NC:"9.3",OC:"10.0-10.2",PC:"10.3",QC:"11.0-11.2",RC:"11.3-11.4",SC:"12.0-12.1",TC:"12.2-12.5",UC:"13.0-13.1",VC:"13.2",WC:"13.3",XC:"13.4-13.7",YC:"14.0-14.4",ZC:"14.5-14.8",aC:"15.0-15.1",bC:"all",cC:"2.1",dC:"2.2",eC:"2.3",fC:"4.1",gC:"4.4",hC:"4.4.3-4.4.4",iC:"12.12",jC:"5.0-5.4",kC:"6.2-6.4",lC:"7.2-7.4",mC:"8.2",nC:"9.2",oC:"11.1-11.2",pC:"12.0",qC:"13.0",rC:"14.0",sC:"15.0",tC:"17.0",uC:"10.4",vC:"7.12",wC:"2.5"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js index fbb9411244ea82..18e48829431444 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js @@ -1 +1 @@ -module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries":require("./features/css-container-queries"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphenate":require("./features/css-hyphenate"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action-2":require("./features/css-touch-action-2"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"domfocusin-domfocusout-events":require("./features/domfocusin-domfocusout-events"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"focusoptions-preventscroll":require("./features/focusoptions-preventscroll"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-metrics-overrides":require("./features/font-metrics-overrides"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-east-asian":require("./features/font-variant-east-asian"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"media-attribute":require("./features/media-attribute"),"media-fragments":require("./features/media-fragments"),"media-session-api":require("./features/media-session-api"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"navigator-language":require("./features/navigator-language"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"private-class-fields":require("./features/private-class-fields"),"private-methods-and-accessors":require("./features/private-methods-and-accessors"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"public-class-fields":require("./features/public-class-fields"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"sha-2":require("./features/sha-2"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"text-underline-offset":require("./features/text-underline-offset"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"token-binding":require("./features/token-binding"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; +module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphenate":require("./features/css-hyphenate"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action-2":require("./features/css-touch-action-2"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"domfocusin-domfocusout-events":require("./features/domfocusin-domfocusout-events"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"focusoptions-preventscroll":require("./features/focusoptions-preventscroll"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-metrics-overrides":require("./features/font-metrics-overrides"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-east-asian":require("./features/font-variant-east-asian"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"media-attribute":require("./features/media-attribute"),"media-fragments":require("./features/media-fragments"),"media-session-api":require("./features/media-session-api"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"navigator-language":require("./features/navigator-language"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"private-class-fields":require("./features/private-class-fields"),"private-methods-and-accessors":require("./features/private-methods-and-accessors"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"public-class-fields":require("./features/public-class-fields"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"sha-2":require("./features/sha-2"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"text-underline-offset":require("./features/text-underline-offset"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"token-binding":require("./features/token-binding"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; 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 91ca1c0948468e..2944aa532fd9f7 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o xB yB","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F","16":"A B"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"132":"X"},N:{"1":"A","2":"B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"132":"uC"}},B:6,C:"AAC audio file format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F","16":"A B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"132":"H"},N:{"1":"A","2":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},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 d9846f689af41c..4f1cdc79c8c2dc 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G"},C:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB xB yB"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB","130":"C hB"},F:{"1":"KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","2":"I hC iC jC kC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"AbortController & AbortSignal"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB zB 0B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","130":"C iB"},F:{"1":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 8e3888bee12711..b2a41c322729da 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 vB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC","132":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D","132":"A"},K:{"2":"A B C Y hB tB","132":"iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"132":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},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 xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC","132":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","132":"A"},K:{"2":"A B C Y iB vB","132":"jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 dbf99febf3571f..e0828927a920f3 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y TB UB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"Accelerometer"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f473d81e15d0a7..09163b815c3725 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","257":"wB jB I l J xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"EventTarget.addEventListener()"}; +module.exports={A:{A:{"1":"F A B","130":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","257":"yB lB I m J zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 aa637c7a986fba..f6016ea464c1b8 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"F B C AC BC CC DC hB tB EC iB","16":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"2":"Y","16":"A B C hB tB iB"},L:{"16":"H"},M:{"16":"X"},N:{"16":"A B"},O:{"16":"gC"},P:{"16":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"16":"tC"},S:{"1":"uC"}},B:1,C:"Alternate stylesheet"}; +module.exports={A:{A:{"1":"E F A B","2":"J D xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"F B C CC DC EC FC iB vB GC jB","16":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"Y","16":"A B C iB vB jB"},L:{"16":"X"},M:{"16":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"16":"vC"},S:{"1":"wC"}},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 6d54516d2d896d..751bf5c599737b 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 vB"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o xB yB","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB","194":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB AC BC CC DC hB tB EC iB","322":"bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"132":"uC"}},B:4,C:"Ambient Light Sensor"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","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 mB","194":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","322":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","322":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"132":"wC"}},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 81ad2d70056bb2..f69dec93b4be7a 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB"},D:{"1":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r 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":"E F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B 3B"},F:{"1":"B C DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O m n o p q r s t u v w x y z AB BB CB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:7,C:"Animated PNG (APNG)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s 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":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"B C EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O n o p q r s t u v w x y z AB BB CB DB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 18bd89c54507d6..75cc8a57410a02 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r xB yB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x y AC BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Array.prototype.findIndex"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5df84e0e9b1b35..055b20c4062165 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","16":"C K L"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r xB yB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x y AC BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Array.prototype.find"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 a9fee20aa6b3a4..f22d3c8b265323 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB xB yB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB"},E:{"1":"C K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB hB"},F:{"1":"NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB AC BC CC DC hB tB EC iB"},G:{"1":"QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qB mC nC oC pC qC rC","2":"I hC iC jC kC lC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"flat & flatMap array methods"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB zB 0B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB CC DC EC FC iB vB GC jB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 86ddfe05834e1a..34453f892548b8 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Array.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 72e82e1098f322..3b823060c6785d 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o xB yB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x y AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Arrow functions"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 7c22385fc257ae..7cd1a40b4cd3d9 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 vB"},B:{"1":"K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k X H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o xB yB"},D:{"2":"I l J D E F A B C K L G M N O m n o p q r s t u","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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","132":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","132":"Y"},L:{"132":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I","132":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"132":"sC"},R:{"132":"tC"},S:{"1":"uC"}},B:6,C:"asm.js"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X","322":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},D:{"2":"I m J D E F A B C K L G M N O n o p q r s t u v","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","132":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","132":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"1":"wC"}},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 ce52dfa964ac55..0eb4ad1b495dd5 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB xB yB","132":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC","260":"WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","260":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","260":"Y"},L:{"1":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC","260":"lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Asynchronous Clipboard API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B","132":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","260":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","260":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","260":"Y"},L:{"1":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC","260":"nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 709c8b191f64e8..9e41dd2bfda646 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K","194":"L"},C:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB"},D:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p 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 hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B","514":"qB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC","514":"NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Async functions"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K","194":"L"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","514":"rB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","514":"PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f0578d8807189f..9ab54a1a9ab6b2 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","2":"F AC BC","16":"CC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","16":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Base64 encoding and decoding"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC","16":"EC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","16":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 90766f222a6830..3dd97c5eae632e 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K","33":"0 L G M N O m n o p q r s t u v w x y z"},E:{"1":"G 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","33":"J D E F A B C K L 2B 3B 4B qB hB iB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"G M N O m n o"},G:{"1":"XC YC rB sB","2":"pB FC uB GC","33":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Web Audio API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","33":"0 1 L G M N O n o p q r s t u v w x y z"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J D E F A B C K L 5B 6B 7B rB iB jB 8B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"G M N O n o p"},G:{"1":"ZC aC sB tB uB kB","2":"qB HC wB IC","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 f0c30c98d93d80..2a4fb554211e6d 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","132":"I l J D E F A B C K L G M N O m xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F","4":"AC BC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","2":"aC bC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Audio element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","132":"I m J D E F A B C K L G M N O n zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F","4":"CC DC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","2":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 8f86759ae3b4cb..675aec04c1ef25 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 vB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","194":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB","322":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B"},F:{"2":"F B C G M N O m n o p q r s t u v w x y AC BC CC DC hB tB EC iB","322":"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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"322":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"194":"uC"}},B:1,C:"Audio Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"322":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"194":"wC"}},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 39d7a9658f29c2..0c981892889777 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:1,C:"Autofocus attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 81c7a27778b0b0..7d66653b659887 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB","129":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"Auxclick"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","129":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 c8221baa4e766d..f59ab61fdfa04d 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N","194":"O"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB xB yB","66":"MB NB OB PB kB QB lB RB SB Y","260":"TB","516":"UB"},D:{"1":"YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB","66":"VB WB XB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1090":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"nC oC pC qC rC","2":"I hC iC jC kC lC qB mC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"AV1 video format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N","194":"O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB zB 0B","66":"NB OB PB QB mB RB nB SB TB Y","260":"UB","516":"VB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB","66":"WB XB YB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1090":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 0776897620ccbb..cae5a86e7dbaa5 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB xB yB","194":"fB gB P Q R mB S T U V W Z a b c d","257":"e f g h i j k X H nB oB"},D:{"1":"U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"AVIF image format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB zB 0B","194":"gB hB P Q R oB S T U V W Z a b c d","257":"e f g h i j k l H X pB"},D:{"1":"U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 bd3ba7fbe1a3d8..70cd37a276098d 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","132":"wB jB I l J D E F A B C K L G M N O m n o p q r xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C 1B 2B 3B 4B qB hB iB","132":"I K 0B pB 5B","2050":"L G 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","132":"F AC BC"},G:{"2":"pB FC uB","772":"E GC HC IC JC KC LC MC NC OC PC QC RC","2050":"SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC eC fC","132":"dC uB"},J:{"260":"D A"},K:{"1":"B C hB tB iB","2":"Y","132":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"2":"I","1028":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1028":"tC"},S:{"1":"uC"}},B:4,C:"CSS background-attachment"}; +module.exports={A:{A:{"1":"F A B","132":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C 4B 5B 6B 7B rB iB jB","132":"I K 3B qB 8B","2050":"L G 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","132":"F CC DC"},G:{"2":"qB HC wB","772":"E IC JC KC LC MC NC OC PC QC RC SC TC","2050":"UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC gC hC","132":"fC wB"},J:{"260":"D A"},K:{"1":"B C iB vB jB","2":"Y","132":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"2":"I","1028":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1028":"vC"},S:{"1":"wC"}},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 559e5b6681f3c5..ae6e4bc9e18ce3 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 vB"},B:{"1":"G M N O","33":"C K L P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"L G 6B 7B rB sB 8B 9B","16":"0B pB","33":"I l J D E F A B C K 1B 2B 3B 4B qB hB iB 5B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"WC XC YC rB sB","16":"pB FC uB GC","33":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"16":"jB aC bC cC","33":"I H dC uB eC fC"},J:{"33":"D A"},K:{"16":"A B C hB tB iB","33":"Y"},L:{"33":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"33":"gC"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"33":"tC"},S:{"1":"uC"}},B:7,C:"Background-clip: text"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O","33":"C K L P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 9B AC sB tB uB kB BC","16":"3B qB","33":"I m J D E F A B C K 4B 5B 6B 7B rB iB jB 8B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"YC ZC aC sB tB uB kB","16":"qB HC wB IC","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"16":"lB cC dC eC","33":"I H fC wB gC hC"},J:{"33":"D A"},K:{"16":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"1":"wC"}},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 3d522be1d76963..024fd72d133551 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB","36":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","516":"I l J D E F A B C K L"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","772":"I l J 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC","36":"BC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","4":"pB FC uB HC","516":"GC"},H:{"132":"ZC"},I:{"1":"H eC fC","36":"aC","516":"jB I dC uB","548":"bC cC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 Background-image options"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","36":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","516":"I m J D E F A B C K L"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","772":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC","36":"DC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"qB HC wB JC","516":"IC"},H:{"132":"bC"},I:{"1":"H gC hC","36":"cC","516":"lB I fC wB","548":"dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 77e56085f16e8b..da95cb370286b3 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:7,C:"background-position-x & background-position-y"}; +module.exports={A:{A:{"1":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 2d9b19e1f53a4f..229cdcfe102906 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 vB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F G M N O AC BC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:4,C:"CSS background-repeat round and space"}; +module.exports={A:{A:{"1":"A B","2":"J D E xB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F G M N O CC DC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 6cd983fab9a291..8e991eabd06dd7 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H xB yB","16":"nB oB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Background Sync API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","16":"X pB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 58f1d0ab90d973..a632caf68177c9 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB","2":"wB jB I l J D E F JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","132":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z","164":"A B C K L G"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","66":"4"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Battery Status API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB","2":"yB lB I m J D E F KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","132":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB","164":"A B C K L G"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","66":"5"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 10e69ca3e4b189..94588f4f45c7a5 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x xB yB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Beacon API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,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 55b096d7bd6c63..6144892ad1b599 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB"},D:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB iB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB AC BC CC DC hB tB EC iB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"16":"gC"},P:{"2":"hC iC jC kC lC qB mC nC oC pC qC rC","16":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:1,C:"Printing Events"}; +module.exports={A:{A:{"1":"J D E F A B","16":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"2":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 b24692df0e6bc5..50354a3f7affba 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y xB yB","194":"TB UB VB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB"},E:{"1":"L G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB 5B"},F:{"1":"LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB"},G:{"1":"WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","2":"I hC iC jC kC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"BigInt"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y zB 0B","194":"UB VB WB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 7e2907189aa91a..502ca3b3ee9a05 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D","36":"E F A B C K L G M N O m"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B C AC BC CC DC hB tB EC"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC"},H:{"2":"ZC"},I:{"1":"H","2":"aC bC cC","36":"jB I dC uB eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Blob constructing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D","36":"E F A B C K L G M N O n"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","36":"lB I fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 47fb06ca674910..c7464f2843dafe 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 vB","129":"A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D","33":"E F A B C K L G M N O m n o p"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","33":"HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB aC bC cC","33":"I dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Blob URLs"}; +module.exports={A:{A:{"2":"J D E F xB","129":"A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D","33":"E F A B C K L G M N O n o p q"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","33":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 3f2f00c1a646c5..33ddd821732b6c 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","129":"C K"},C:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","260":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB","804":"I l J D E F A B C K L xB yB"},D:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","260":"IB JB KB LB MB","388":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB","1412":"G M N O m n o p q r s t u v w","1956":"I l J D E F A B C K L"},E:{"1":"sB 8B 9B","129":"A B C K L G 4B qB hB iB 5B 6B 7B rB","1412":"J D E F 2B 3B","1956":"I l 0B pB 1B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F AC BC","260":"5 6 7 8 9","388":"0 1 2 3 4 G M N O m n o p q r s t u v w x y z","1796":"CC DC","1828":"B C hB tB EC iB"},G:{"1":"sB","129":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB","1412":"E HC IC JC KC","1956":"pB FC uB GC"},H:{"1828":"ZC"},I:{"1":"H","388":"eC fC","1956":"jB I aC bC cC dC uB"},J:{"1412":"A","1924":"D"},K:{"1":"Y","2":"A","1828":"B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"388":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","260":"hC iC","388":"I"},Q:{"260":"sC"},R:{"260":"tC"},S:{"260":"uC"}},B:4,C:"CSS3 Border images"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","804":"I m J D E F A B C K L zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","260":"JB KB LB MB NB","388":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB","1412":"G M N O n o p q r s t u v w x","1956":"I m J D E F A B C K L"},E:{"1":"tB uB kB BC","129":"A B C K L G 7B rB iB jB 8B 9B AC sB","1412":"J D E F 5B 6B","1956":"I m 3B qB 4B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC","260":"6 7 8 9 AB","388":"0 1 2 3 4 5 G M N O n o p q r s t u v w x y z","1796":"EC FC","1828":"B C iB vB GC jB"},G:{"1":"tB uB kB","129":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB","1412":"E JC KC LC MC","1956":"qB HC wB IC"},H:{"1828":"bC"},I:{"1":"H","388":"gC hC","1956":"lB I cC dC eC fC wB"},J:{"1412":"A","1924":"D"},K:{"1":"Y","2":"A","1828":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"388":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","260":"jC kC","388":"I"},Q:{"260":"uC"},R:{"260":"vC"},S:{"260":"wC"}},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 b47f1935aa8dfe..1c683c25159370 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","257":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB","289":"jB xB yB","292":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"I"},E:{"1":"l D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","33":"I 0B pB","129":"J 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","33":"pB"},H:{"2":"ZC"},I:{"1":"jB I H bC cC dC uB eC fC","33":"aC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"257":"uC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","257":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","289":"lB zB 0B","292":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I"},E:{"1":"m D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I 3B qB","129":"J 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"qB"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","33":"cC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"257":"wC"}},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 970e5e7ac2ed58..9e4ec149550694 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:1,C:"BroadcastChannel"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 83128fa9c3d0b1..6e30dce15408dc 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB xB yB"},D:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB","257":"HB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","513":"B C hB iB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","194":"3 4"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB","194":"HB","257":"IB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","513":"B C iB jB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"4 5"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 a4221affd5f5b1..8d36c8f2329352 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 vB","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","33":"I l J D E F A B C K L G"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O","33":"m n o p q r s"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","33":"HC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB","132":"eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"calc() as CSS unit value"}; +module.exports={A:{A:{"2":"J D E xB","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"I m J D E F A B C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O","33":"n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","132":"gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1f62853f5fc182..1dc4f0a06dc9ba 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Canvas blend modes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 ccc97aca90b64a..2465a57801e03b 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":"vB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","8":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","8":"F AC BC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","8":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Text API for Canvas"}; +module.exports={A:{A:{"1":"F A B","2":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","8":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","8":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 3ed28f143d8a2a..e1092115a2c85e 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":"vB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","132":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","132":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"260":"ZC"},I:{"1":"jB I H dC uB eC fC","132":"aC bC cC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Canvas (basic support)"}; +module.exports={A:{A:{"1":"F A B","2":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","132":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"260":"bC"},I:{"1":"lB I H fC wB gC hC","132":"cC dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2dfba6d34cdd90..ea96945a171c03 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 vB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"ch (character) unit"}; +module.exports={A:{A:{"2":"J D E xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 4bfa6e388a2ae2..818d6098929ade 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","129":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC","16":"fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","129":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC","16":"hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 634d48c215df5e..ac54b82541da0a 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s xB yB","194":"0 1 2 3 4 5 6 7 t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","2":"F AC BC","16":"CC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Channel messaging"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B","194":"0 1 2 3 4 5 6 7 8 u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC","16":"EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 0e97e3177e6398..bafaffb37380f0 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","16":"C"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"ChildNode.remove()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 751712e495b931..6e3399a7d942f0 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 vB","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"wB jB xB","516":"r s","772":"I l J D E F A B C K L G M N O m n o p q yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"I l J D","516":"r s t u","772":"q","900":"E F A B C K L G M N O m n o p"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"I l 0B pB","900":"J 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","8":"F B AC BC CC DC hB","900":"C tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","8":"pB FC uB","900":"GC HC"},H:{"900":"ZC"},I:{"1":"H eC fC","8":"aC bC cC","900":"jB I dC uB"},J:{"1":"A","900":"D"},K:{"1":"Y","8":"A B","900":"C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"900":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"classList (DOMTokenList)"}; +module.exports={A:{A:{"8":"J D E F xB","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB","516":"s t","772":"I m J D E F A B C K L G M N O n o p q r 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J D","516":"s t u v","772":"r","900":"E F A B C K L G M N O n o p q"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m 3B qB","900":"J 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"F B CC DC EC FC iB","900":"C vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB","900":"IC JC"},H:{"900":"bC"},I:{"1":"H gC hC","8":"cC dC eC","900":"lB I fC wB"},J:{"1":"A","900":"D"},K:{"1":"Y","8":"A B","900":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"900":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 64653adc2b3158..4f64ace3c706ca 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 01a4efe0263e2d..5f77e847d49ecb 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 vB"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o xB yB","772":"0 1 2 3 4 5 6 7 p q r s t u v w x y z","4100":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"I l J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z","8196":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","10244":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"C K L G iB 5B 6B 7B rB sB 8B 9B","16":"0B pB","2308":"A B qB hB","2820":"I l J D E F 1B 2B 3B 4B"},F:{"2":"F B AC BC CC DC hB tB EC","16":"C","516":"iB","2564":"G M N O m n o p q r s t u v w","8196":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","10244":"0 1 2 3 4 5 6 7 8 9 x y z AB BB"},G:{"1":"QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","2820":"E GC HC IC JC KC LC MC NC OC PC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","260":"H","2308":"eC fC"},J:{"2":"D","2308":"A"},K:{"2":"A B C hB tB","16":"iB","260":"Y"},L:{"8196":"H"},M:{"1028":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2052":"hC iC","2308":"I","8196":"jC kC lC qB mC nC oC pC qC rC"},Q:{"10244":"sC"},R:{"2052":"tC"},S:{"4100":"uC"}},B:5,C:"Synchronous Clipboard API"}; +module.exports={A:{A:{"2436":"J D E F A B xB"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","772":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z","4100":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB","8196":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","10244":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","16":"3B qB","2308":"A B rB iB","2820":"I m J D E F 4B 5B 6B 7B"},F:{"2":"F B CC DC EC FC iB vB GC","16":"C","516":"jB","2564":"G M N O n o p q r s t u v w x","8196":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","10244":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","2820":"E IC JC KC LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","260":"H","2308":"gC hC"},J:{"2":"D","2308":"A"},K:{"2":"A B C iB vB","16":"jB","260":"Y"},L:{"8196":"X"},M:{"1028":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2052":"jC kC","2308":"I","8196":"lC mC nC rB oC pC qC rC sC kB tC"},Q:{"10244":"uC"},R:{"2052":"vC"},S:{"4100":"wC"}},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 91391587de9b7c..254ce9fd60aecc 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 vB"},B:{"1":"j k X H","2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i xB yB","258":"j k X H nB oB"},D:{"1":"j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a","194":"b c d e f g h i"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"j k l H X","2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i zB 0B","258":"j k l H X pB"},D:{"1":"j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a","194":"b c d e f g h i"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 b2fab32bfe42c3..4f9d3bf4e2cca0 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 vB","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB","513":"ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"L G 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","129":"B C K hB iB 5B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB AC BC CC DC hB tB EC iB","513":"PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"1":"gC"},P:{"1":"qB mC nC oC pC qC rC","2":"I hC iC jC kC lC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; +module.exports={A:{A:{"2":"J D E xB","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB","513":"aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","129":"B C K iB jB 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB CC DC EC FC iB vB GC jB","513":"QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"1":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 355cbf45525563..0def63bfc88fc6 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB jB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","132":"G M N O m n o p q r s t u v w"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l J 0B pB","132":"D E F 2B 3B 4B","260":"1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","16":"F B AC BC CC DC hB tB","132":"G M"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB","132":"E FC uB GC HC IC JC KC LC"},H:{"1":"ZC"},I:{"1":"H eC fC","16":"aC bC","132":"jB I cC dC uB"},J:{"132":"D A"},K:{"1":"C Y iB","16":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Node.compareDocumentPosition()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"G M N O n o p q r s t u v w x"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB","132":"D E F 5B 6B 7B","260":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F B CC DC EC FC iB vB","132":"G M"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB","132":"E HC wB IC JC KC LC MC NC"},H:{"1":"bC"},I:{"1":"H gC hC","16":"cC dC","132":"lB I eC fC wB"},J:{"132":"D A"},K:{"1":"C Y jB","16":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 8cacc4e349636c..0208f5421e31be 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 vB","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F AC BC CC DC"},G:{"1":"pB FC uB GC","513":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"4097":"ZC"},I:{"1025":"jB I H aC bC cC dC uB eC fC"},J:{"258":"D A"},K:{"2":"A","258":"B C hB tB iB","1025":"Y"},L:{"1025":"H"},M:{"2049":"X"},N:{"258":"A B"},O:{"258":"gC"},P:{"1025":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1025":"tC"},S:{"1":"uC"}},B:1,C:"Basic console logging functions"}; +module.exports={A:{A:{"1":"A B","2":"J D xB","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"qB HC wB IC","513":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4097":"bC"},I:{"1025":"lB I H cC dC eC fC wB gC hC"},J:{"258":"D A"},K:{"2":"A","258":"B C iB vB jB","1025":"Y"},L:{"1025":"X"},M:{"2049":"H"},N:{"258":"A B"},O:{"258":"iC"},P:{"1025":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1025":"vC"},S:{"1":"wC"}},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 9ca5382594320d..db6eab058554c1 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F AC BC CC DC","16":"B"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"console.time and console.timeEnd"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC","16":"B"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 b661226f363f33..e011e247ead875 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 vB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","132":"wB jB I l J D E F A B C xB yB","260":"0 1 2 K L G M N O m n o p q r s t u v w x y z"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","260":"I l J D E F A B C K L G M N O m n","772":"0 1 2 3 4 5 6 7 o p q r s t u v w x y z","1028":"8 9 AB BB CB DB EB FB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","260":"I l A 0B pB qB","772":"J D E F 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F AC","132":"B BC CC DC hB tB","644":"C EC iB","772":"G M N O m n o p q r s t u","1028":"0 1 2 v w x y z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","260":"pB FC uB MC NC","772":"E GC HC IC JC KC LC"},H:{"644":"ZC"},I:{"1":"H","16":"aC bC","260":"cC","772":"jB I dC uB eC fC"},J:{"772":"D A"},K:{"1":"Y","132":"A B hB tB","644":"C iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","1028":"I"},Q:{"1":"sC"},R:{"1028":"tC"},S:{"1":"uC"}},B:6,C:"const"}; +module.exports={A:{A:{"2":"J D E F A xB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C zB 0B","260":"0 1 2 3 K L G M N O n o p q r s t u v w x y z"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","260":"I m J D E F A B C K L G M N O n o","772":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","1028":"9 AB BB CB DB EB FB GB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","260":"I m A 3B qB rB","772":"J D E F 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC","132":"B DC EC FC iB vB","644":"C GC jB","772":"G M N O n o p q r s t u v","1028":"0 1 2 3 w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","260":"qB HC wB OC PC","772":"E IC JC KC LC MC NC"},H:{"644":"bC"},I:{"1":"H","16":"cC dC","260":"eC","772":"lB I fC wB gC hC"},J:{"772":"D A"},K:{"1":"Y","132":"A B iB vB","644":"C jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","1028":"I"},Q:{"1":"uC"},R:{"1028":"vC"},S:{"1":"wC"}},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 1cd3dfb0f74331..c8ef79a25ddac3 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 vB","900":"A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","388":"L G M","900":"C K"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","260":"GB HB","388":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB","900":"I l J D E F A B C K L G M N O m n o p q r s t u v"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","388":"0 1 2 3 4 5 6 s t u v w x y z","900":"G M N O m n o p q r"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB","388":"E F 3B 4B","900":"J D 1B 2B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F B AC BC CC DC hB tB","388":"G M N O m n o p q r s t","900":"C EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB","388":"E IC JC KC LC","900":"GC HC"},H:{"2":"ZC"},I:{"1":"H","16":"jB aC bC cC","388":"eC fC","900":"I dC uB"},J:{"16":"D","388":"A"},K:{"1":"Y","16":"A B hB tB","900":"C iB"},L:{"1":"H"},M:{"1":"X"},N:{"900":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"388":"uC"}},B:1,C:"Constraint Validation API"}; +module.exports={A:{A:{"2":"J D E F xB","900":"A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","388":"L G M","900":"C K"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","260":"HB IB","388":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB","900":"I m J D E F A B C K L G M N O n o p q r s t u v w"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","388":"0 1 2 3 4 5 6 7 t u v w x y z","900":"G M N O n o p q r s"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB","388":"E F 6B 7B","900":"J D 4B 5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB vB","388":"G M N O n o p q r s t u","900":"C GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","388":"E KC LC MC NC","900":"IC JC"},H:{"2":"bC"},I:{"1":"H","16":"lB cC dC eC","388":"gC hC","900":"I fC wB"},J:{"16":"D","388":"A"},K:{"1":"Y","16":"A B iB vB","900":"C jB"},L:{"1":"X"},M:{"1":"H"},N:{"900":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"388":"wC"}},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 ee1b421fa4c49f..3821034f5558cd 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB","4":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"contenteditable attribute (basic support)"}; +module.exports={A:{A:{"1":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB","4":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 13506a7795b48e..28878196c1b05c 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 vB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","129":"I l J D E F A B C K L G M N O m n o p"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K","257":"L G M N O m n o p q r"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB","257":"J 2B","260":"1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","257":"HC","260":"GC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D","257":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"257":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Content Security Policy 1.0"}; +module.exports={A:{A:{"2":"J D E F xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","129":"I m J D E F A B C K L G M N O n o p q"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","257":"L G M N O n o p q r s"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","257":"J 5B","260":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","257":"JC","260":"IC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D","257":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"257":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 66c570eb0a4b99..f3f28300527cdb 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L","4100":"G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x xB yB","132":"0 1 y z","260":"2","516":"3 4 5 6 7 8 9 AB BB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","1028":"3 4 5","2052":"6"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p AC BC CC DC hB tB EC iB","1028":"q r s","2052":"t"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Content Security Policy Level 2"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","4100":"G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","132":"0 1 2 z","260":"3","516":"4 5 6 7 8 9 AB BB CB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","1028":"4 5 6","2052":"7"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB","1028":"r s t","2052":"u"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2a7033ab266269..0c33ae3cc99a34 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 vB"},B:{"1":"W Z a b c d e f g h i j k X 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 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB","194":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB AC BC CC DC hB tB EC iB","194":"IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Cookie Store API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"W Z a b c d e f g h i j k l H X","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 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB","194":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB CC DC EC FC iB vB GC jB","194":"JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 6111ec98d94bc7..f58c21733037f8 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 vB","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB","1025":"lB RB SB Y TB UB VB WB XB YB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C"},E:{"2":"0B pB","513":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","644":"I l 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC"},G:{"513":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","644":"pB FC uB GC"},H:{"2":"ZC"},I:{"1":"H eC fC","132":"jB I aC bC cC dC uB"},J:{"1":"A","132":"D"},K:{"1":"C Y iB","2":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","132":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Cross-Origin Resource Sharing"}; +module.exports={A:{A:{"1":"B","2":"J D xB","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB","1025":"nB SB TB Y UB VB WB XB YB ZB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C"},E:{"2":"3B qB","513":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","644":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"513":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","644":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","132":"lB I cC dC eC fC wB"},J:{"1":"A","132":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","132":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 fc869c94f3ce9e..dbaf37fd45936b 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","1028":"e f g h i j k X H nB oB","3076":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d"},D:{"1":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB","132":"HB IB","260":"JB KB","516":"LB MB NB OB PB"},E:{"2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B 6B","4100":"G 7B rB sB 8B 9B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","132":"4 5","260":"6 7","516":"8 9 AB BB CB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","4100":"YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"3076":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","16":"I hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"3076":"uC"}},B:1,C:"createImageBitmap"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1028":"e f g h i j k l H X pB","3076":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d"},D:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","132":"IB JB","260":"KB LB","516":"MB NB OB PB QB"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B","4100":"G AC sB tB uB kB BC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"5 6","260":"7 8","516":"9 AB BB CB DB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","4100":"aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"3076":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","16":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"3076":"wC"}},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 44b7617c696eb7..ef0dd53a6e2258 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB","66":"FB GB HB","129":"IB JB KB LB MB NB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB AC BC CC DC hB tB EC iB"},G:{"1":"WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Credential Management API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","66":"GB HB IB","129":"JB KB LB MB NB OB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 84277948ca378f..45b7ffb3040d43 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":"vB","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","513":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y xB yB","66":"0 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","8":"I l J D 0B pB 1B 2B","289":"E F A 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","8":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","8":"pB FC uB GC HC IC","289":"E JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","8":"jB I aC bC cC dC uB eC fC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A","164":"B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Web Cryptography"}; +module.exports={A:{A:{"2":"xB","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","513":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","66":"0 1"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","8":"I m J D 3B qB 4B 5B","289":"E F A 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB IC JC KC","289":"E LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","8":"lB I cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A","164":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 70444dc0e691e7..1340935cd4d4c8 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t xB yB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC"},H:{"2":"ZC"},I:{"1":"H fC","2":"jB I aC bC cC dC uB eC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS all property"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 5e607bcb7b5aa6..6fe719ae93565a 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I xB yB","33":"l J D E F A B C K L G"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB","33":"J D E 1B 2B 3B","292":"I l"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC","33":"C G M N O m n o p q r s t u v w"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","33":"E HC IC JC","164":"pB FC uB GC"},H:{"2":"ZC"},I:{"1":"H","33":"I dC uB eC fC","164":"jB aC bC cC"},J:{"33":"D A"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS Animation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I zB 0B","33":"m J D E F A B C K L G"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB","33":"J D E 4B 5B 6B","292":"I m"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","33":"C G M N O n o p q r s t u v w x"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E JC KC LC","164":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H","33":"I fC wB gC hC","164":"lB cC dC eC"},J:{"33":"D A"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 51bc141b537fed..99238a0e4cea94 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB","33":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB xB yB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l J 0B pB 1B","33":"D E 2B 3B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB GC","33":"E HC IC JC"},H:{"2":"ZC"},I:{"1":"H","16":"jB I aC bC cC dC uB","33":"eC fC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"33":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","16":"I","33":"hC iC jC kC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"33":"uC"}},B:5,C:"CSS :any-link selector"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB","33":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB 4B","33":"D E 5B 6B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC","33":"E JC KC LC"},H:{"2":"bC"},I:{"1":"H","16":"lB I cC dC eC fC wB","33":"gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","16":"I","33":"jC kC lC mC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},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 030dc8930f23fb..a2629f6822fc34 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 vB"},B:{"1":"T U V W Z a b c d e f g h i j k X H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","164":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","676":"0 1 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"T U V W Z a b c d e f g h i j k X H nB oB zB","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R"},E:{"1":"sB 8B 9B","164":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"1":"bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"YB ZB aB","164":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB"},G:{"1":"sB","164":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"1":"H","164":"jB I aC bC cC dC uB eC fC"},J:{"164":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","388":"B"},O:{"164":"gC"},P:{"164":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"164":"sC"},R:{"164":"tC"},S:{"164":"uC"}},B:5,C:"CSS Appearance"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R oB S T U V W Z a b c d e f g h i j k l H X pB","164":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","676":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R"},E:{"1":"tB uB kB BC","164":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"ZB aB bB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB"},G:{"1":"tB uB kB","164":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","164":"lB I cC dC eC fC wB gC hC"},J:{"164":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","388":"B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"164":"wC"}},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 f3eb00f8605ba3..db4953fd5bb0a7 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","132":"c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b","132":"c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB AC BC CC DC hB tB EC iB","132":"fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","132":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","132":"Y"},L:{"132":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC","132":"rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"132":"uC"}},B:4,C:"CSS Counter Styles"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","132":"c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","132":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB CC DC EC FC iB vB GC jB","132":"gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","132":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC","132":"kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"132":"wC"}},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 403f0dfd09482e..c69c0975145dc8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"h i j k X H nB oB zB","33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g"},L:{"1":"H"},B:{"1":"h i j k X H","2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g"},C:{"1":"V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U xB yB"},M:{"1":"X"},A:{"2":"J D E F A B vB"},F:{"1":"mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R"},K:{"2":"A B C hB tB iB","33":"Y"},E:{"1":"G 7B rB sB 8B","2":"9B","33":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B 6B"},G:{"1":"YC rB sB","33":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},I:{"1":"H","33":"jB I aC bC cC dC uB eC fC"}},B:6,C:":autofill CSS pseudo-class"}; +module.exports={A:{D:{"1":"h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g"},L:{"1":"X"},B:{"1":"h i j k l H X","2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g"},C:{"1":"V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U zB 0B"},M:{"1":"H"},A:{"2":"J D E F A B xB"},F:{"1":"oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R"},K:{"2":"A B C iB vB jB","33":"Y"},E:{"1":"G AC sB tB uB kB","2":"BC","33":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B"},G:{"1":"aC sB tB uB kB","33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"}},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 8275ec7df8652d..9d5497fb74047a 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M","257":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB xB yB","578":"YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB"},E:{"2":"I l J D E 0B pB 1B 2B 3B","33":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","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"},G:{"2":"E pB FC uB GC HC IC JC","33":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"578":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"nC oC pC qC rC","2":"I","194":"hC iC jC kC lC qB mC"},Q:{"194":"sC"},R:{"194":"tC"},S:{"2":"uC"}},B:7,C:"CSS Backdrop Filter"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","257":"N O"},C:{"1":"pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB zB 0B","578":"ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X"},D:{"1":"fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},E:{"2":"I m J D E 3B qB 4B 5B 6B","33":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","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"},G:{"2":"E qB HC wB IC JC KC LC","33":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"578":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I","194":"jC kC lC mC nC rB oC"},Q:{"194":"uC"},R:{"194":"vC"},S:{"2":"wC"}},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 362e1c6ea5ea4d..266de459caa907 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS background-position edge offsets"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 15c0a97dd56437..f6dc6b4cf400eb 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w xB yB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","260":"DB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B","132":"E F A 3B 4B"},F:{"1":"1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o AC BC CC DC hB tB EC iB","260":"0"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC","132":"E JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS background-blend-mode"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","260":"EB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","132":"E F A 6B 7B"},F:{"1":"0 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB","260":"1"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","132":"E LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 ecc468633f04f2..4181e4581be854 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 vB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y xB yB"},D:{"2":"I l J D E F A B C K L G M N O m n o","164":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J 0B pB 1B","164":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F AC BC CC DC","129":"B C hB tB EC iB","164":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC uB GC HC","164":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"132":"ZC"},I:{"2":"jB I aC bC cC dC uB","164":"H eC fC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C hB tB iB","164":"Y"},L:{"164":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"164":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"164":"sC"},R:{"164":"tC"},S:{"1":"uC"}},B:5,C:"CSS box-decoration-break"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"2":"I m J D E F A B C K L G M N O n o p","164":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J 3B qB 4B","164":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F CC DC EC FC","129":"B C iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC","164":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"2":"lB I cC dC eC fC wB","164":"H gC hC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C iB vB jB","164":"Y"},L:{"164":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"1":"wC"}},B:5,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 b21881b7f120b3..138dbdb3c653b4 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","33":"xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"I l J D E F"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","33":"l","164":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","33":"FC uB","164":"pB"},H:{"2":"ZC"},I:{"1":"I H dC uB eC fC","164":"jB aC bC cC"},J:{"1":"A","33":"D"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 Box-shadow"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","33":"zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I m J D E F"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"m","164":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"HC wB","164":"qB"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","164":"lB cC dC eC"},J:{"1":"A","33":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5f7111a90b878d..315eecca9d3302 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"0B pB","33":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"2 3 4 5 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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","33":"0 1 G M N O m n o p q r s t u v w x y z"},G:{"33":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"H","33":"jB I aC bC cC dC uB eC fC"},J:{"33":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"hC iC jC kC lC qB mC nC oC pC qC rC","33":"I"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"CSS Canvas Drawings"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"3B qB","33":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"3 4 5 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","33":"0 1 2 G M N O n o p q r s t u v w x y z"},G:{"33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"H","33":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 065df04cfad57a..03fe9db07d54dc 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB"},D:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p 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":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"CSS caret-color"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,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 1fcda4f7b6f329..1eab7e966f6b01 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 vB"},B:{"1":"k X H","2":"C K L G M N O P Q R S T U V W Z a b c d e f g","322":"h i j"},C:{"1":"i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e xB yB","194":"f g h"},D:{"1":"k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g","322":"h i j"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U AC BC CC DC hB tB EC iB"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Cascade Layers"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"k l H X","2":"C K L G M N O P Q R S T U V W Z a b c d e f g","322":"h i j"},C:{"1":"i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e zB 0B","194":"f g h"},D:{"1":"k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g","322":"h i j"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 aedfb76a72f9e6..0f784824b70047 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 d908ed65a76a6b..e63ffc0d6507ae 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 vB"},B:{"2":"C K L G M N","260":"P Q R S T U V W Z a b c d e f g h i j k X H","3138":"O"},C:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","132":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB","644":"EB FB GB HB IB JB KB"},D:{"2":"I l J D E F A B C K L G M N O m n o p q","260":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","292":"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"},E:{"2":"I l J 0B pB 1B 2B","260":"L G 5B 6B 7B rB sB 8B 9B","292":"D E F A B C K 3B 4B qB hB iB"},F:{"2":"F B C AC BC CC DC hB tB EC iB","260":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","292":"0 1 2 3 4 5 6 7 8 G M N O m n o p q r s t u v w x y z"},G:{"2":"pB FC uB GC HC","260":"SC TC UC VC WC XC YC rB sB","292":"E IC JC KC LC MC NC OC PC QC RC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","260":"H","292":"eC fC"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","260":"Y"},L:{"260":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"292":"gC"},P:{"292":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"292":"sC"},R:{"260":"tC"},S:{"644":"uC"}},B:4,C:"CSS clip-path property (for HTML)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N","260":"P Q R S T U V W Z a b c d e f g h i j k l H X","3138":"O"},C:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","132":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","644":"FB GB HB IB JB KB LB"},D:{"2":"I m J D E F A B C K L G M N O n o p q r","260":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","292":"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"},E:{"2":"I m J 3B qB 4B 5B","260":"L G 8B 9B AC sB tB uB kB BC","292":"D E F A B C K 6B 7B rB iB jB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","292":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z"},G:{"2":"qB HC wB IC JC","260":"UC VC WC XC YC ZC aC sB tB uB kB","292":"E KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","260":"H","292":"gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","260":"Y"},L:{"260":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"292":"iC"},P:{"292":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"292":"uC"},R:{"260":"vC"},S:{"644":"wC"}},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 66991c83f504bf..0fee736dfebac4 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 vB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB xB yB"},D:{"16":"I l J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l 0B pB 1B","33":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"16":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"16":"jB I aC bC cC dC uB eC fC","33":"H"},J:{"16":"D A"},K:{"2":"A B C hB tB iB","33":"Y"},L:{"16":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"16":"gC"},P:{"16":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"16":"tC"},S:{"1":"uC"}},B:5,C:"CSS color-adjust"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"16":"I m J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m 3B qB 4B","33":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"16":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"lB I cC dC eC fC wB gC hC","33":"H"},J:{"16":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"16":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"16":"vC"},S:{"1":"wC"}},B:5,C:"CSS 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 30836079aeac08..e00de0bada4710 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"G 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B","132":"B C K L qB hB iB 5B 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC","132":"NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS color() function"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","132":"B C K L rB iB jB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","132":"PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 29336c6017ccaa..f81a7a6ced9094 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB xB yB","578":"dB eB fB gB P Q R mB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r 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":"kB QB lB RB SB Y TB UB VB WB"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB AC BC CC DC hB tB EC iB","194":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qB mC nC oC pC qC rC","2":"I hC iC jC kC lC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Conical Gradients"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB zB 0B","578":"eB fB gB hB P Q R oB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"mB RB nB SB TB Y UB VB WB XB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB CC DC EC FC iB vB GC jB","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 d3f8c3f04a7acc..1db7396fa766b6 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d","194":"e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c","194":"e f g h i j k X H nB oB zB","450":"d"},E:{"1":"9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB AC BC CC DC hB tB EC iB","194":"P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Container Queries"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c","194":"e f g h i j k l H X pB 1B 2B","450":"d"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB CC DC EC FC iB vB GC jB","194":"P Q R oB S T U V W"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 new file mode 100644 index 00000000000000..5874f5385840d8 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d","194":"H X pB 1B","450":"e f g h i j k l"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB CC DC EC FC iB vB GC jB","194":"P Q R oB S T U V W"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 327736f9cdf86e..7ee131f6cd8b52 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","194":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB"},D:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","66":"IB"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","66":"5 6"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"194":"uC"}},B:2,C:"CSS Containment"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},D:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","66":"JB"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"6 7"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},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 fa50bdb496c2b9..4e4c57469e4188 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 vB"},B:{"1":"U V W Z a b c d e f g h i j k X 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 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS content-visibility"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"U V W Z a b c d e f g h i j k l H X","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 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 cb88f31dd3b9e2..920971290ac477 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS Counters"}; +module.exports={A:{A:{"1":"E F A B","2":"J D xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 8d221908850a9d..430618facd7fc7 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 vB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"e f g h i j k X H nB oB","2":"wB jB xB","513":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d","545":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y yB"},D:{"2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","1025":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","164":"J","4644":"D E F 2B 3B 4B"},F:{"2":"F B G M N O m n o p q r s t u AC BC CC DC hB tB","545":"C EC iB","1025":"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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","4260":"GC HC","4644":"E IC JC KC LC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B hB tB","545":"C iB","1025":"Y"},L:{"1025":"H"},M:{"545":"X"},N:{"2340":"A B"},O:{"1":"gC"},P:{"1025":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1025":"sC"},R:{"1025":"tC"},S:{"4097":"uC"}},B:7,C:"Crisp edges/pixelated images"}; +module.exports={A:{A:{"2":"J xB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"e f g h i j k l H X pB","2":"yB lB zB","513":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d","545":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","1025":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","164":"J","4644":"D E F 5B 6B 7B"},F:{"2":"F B G M N O n o p q r s t u v CC DC EC FC iB vB","545":"C GC jB","1025":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","4260":"IC JC","4644":"E KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B iB vB","545":"C jB","1025":"Y"},L:{"1025":"X"},M:{"545":"H"},N:{"2340":"A B"},O:{"1":"iC"},P:{"1025":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1025":"uC"},R:{"1025":"vC"},S:{"4097":"wC"}},B:7,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 f1a74527b450d9..bccaa12e8d8274 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 vB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"I l J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB","33":"J D E F 1B 2B 3B 4B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","33":"E GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","33":"H eC fC"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","33":"Y"},L:{"33":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"33":"gC"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"33":"tC"},S:{"2":"uC"}},B:4,C:"CSS Cross-Fade Function"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"I m J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","33":"J D E F 4B 5B 6B 7B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","33":"E IC JC KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","33":"H gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"2":"wC"}},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 762c07d5802003..18a6a85d9dfe99 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB jB xB yB"},D:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB","132":"J D E F A 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F B AC BC CC DC hB tB","132":"0 1 2 3 4 G M N O m n o p q r s t u v w x y z","260":"C EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB GC HC","132":"E IC JC KC LC MC"},H:{"260":"ZC"},I:{"1":"H","16":"jB aC bC cC","132":"I dC uB eC fC"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C hB tB","260":"iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","132":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:7,C:":default CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB","132":"J D E F A 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB vB","132":"0 1 2 3 4 5 G M N O n o p q r s t u v w x y z","260":"C GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","132":"E KC LC MC NC OC"},H:{"260":"bC"},I:{"1":"H","16":"lB cC dC eC","132":"I fC wB gC hC"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C iB vB","260":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,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 686d3d721bed98..23361213b03a0d 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 vB"},B:{"2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k X H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"B","2":"I l J D E F A C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Explicit descendant combinator >>"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k l H X","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"B","2":"I m J D E F A C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 550bb5744515d9..3a5a295da03a70 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 vB","164":"A B"},B:{"66":"P Q R S T U V W Z a b c d e f g h i j k X H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"I l J D E F A B C K L G M N O m n o p q r s t u v","66":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","66":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"292":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A Y","292":"B C hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"164":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"66":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Device Adaptation"}; +module.exports={A:{A:{"2":"J D E F xB","164":"A B"},B:{"66":"P Q R S T U V W Z a b c d e f g h i j k l H X","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"I m J D E F A B C K L G M N O n o p q r s t u v w","66":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"292":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A Y","292":"B C iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"164":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"66":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 4decbdb7c7e9e2..84fd0687001763 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M xB yB","33":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b","194":"c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"33":"uC"}},B:5,C:":dir() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","194":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"33":"wC"}},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 a27f0c405cfdb0..2def5147965f84 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 vB"},B:{"1":"a b c d e f g h i j k X H","2":"C K L G M N O","260":"P Q R S T U V W Z"},C:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","260":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB"},D:{"1":"a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y","260":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z"},E:{"2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB","260":"L G 5B 6B 7B rB sB 8B 9B","772":"C K hB iB"},F:{"1":"eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB AC BC CC DC hB tB EC iB","260":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC","260":"VC WC XC YC rB sB","772":"PC QC RC SC TC UC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qC rC","2":"I hC iC jC kC","260":"lC qB mC nC oC pC"},Q:{"260":"sC"},R:{"2":"tC"},S:{"260":"uC"}},B:5,C:"CSS display: contents"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","260":"P Q R S T U V W Z"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","260":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y","260":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z"},E:{"1":"kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","260":"L G 8B 9B AC sB tB uB","772":"C K iB jB"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB","260":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC","260":"XC YC ZC aC sB tB uB","772":"RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC","260":"nC rB oC pC qC rC"},Q:{"260":"uC"},R:{"2":"vC"},S:{"260":"wC"}},B:5,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 8476c3a855e979..e4e4b34f6801bd 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","164":"wB jB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"33":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"33":"uC"}},B:5,C:"CSS element() function"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","164":"yB lB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"33":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"33":"wC"}},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 586116737ea356..c98ae64e7cf156 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y xB yB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","132":"B"},F:{"1":"NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC","132":"OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qB mC nC oC pC qC rC","2":"I hC iC jC kC lC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"CSS Environment Variables env()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y zB 0B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","132":"B"},F:{"1":"OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","132":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 a7c90ed5826fb0..8dfc78d7c145d8 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 vB","33":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k X H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"33":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Exclusions Level 1"}; +module.exports={A:{A:{"2":"J D E F xB","33":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"33":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 9912a36e787825..00a5e52250cafb 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B C AC BC CC DC hB tB EC"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS Feature Queries"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 fedbc91d16444c..4cba29f86fe401 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":"a b c d e f g h i j k X H nB oB zB","33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z"},L:{"1":"H"},B:{"1":"a b c d e f g h i j k X H","33":"C K L G M N O P Q R S T U V W Z"},C:{"1":"mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R xB yB"},M:{"1":"X"},A:{"2":"J D E F vB","33":"A B"},F:{"1":"dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB"},K:{"1":"Y","2":"A B C hB tB iB"},E:{"1":"G 6B 7B rB sB 8B","2":"9B","33":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B"},G:{"1":"XC YC rB sB","33":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},P:{"1":"qC rC","33":"I hC iC jC kC lC qB mC nC oC pC"},I:{"1":"H","33":"jB I aC bC cC dC uB eC fC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; +module.exports={A:{D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z"},L:{"1":"X"},B:{"1":"a b c d e f g h i j k l H X","33":"C K L G M N O P Q R S T U V W Z"},C:{"1":"oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R zB 0B"},M:{"1":"H"},A:{"2":"J D E F xB","33":"A B"},F:{"1":"eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB"},K:{"1":"Y","2":"A B C iB vB jB"},E:{"1":"G 9B AC sB tB uB kB","2":"BC","33":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},G:{"1":"ZC aC sB tB uB kB","33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},P:{"1":"sC kB tC","33":"I jC kC lC mC nC rB oC pC qC rC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"}},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 9d7e64c3151456..2b5e57b604cd10 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC","33":"KC LC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS filter() function"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","33":"MC NC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 e5c4e8d0fbb752..e843123684c6cf 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","1028":"K L G M N O","1346":"C"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB","196":"1","516":"0 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z yB"},D:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","33":"J D E F 2B 3B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 G M N O m n o p q r s t u v w x y z"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","33":"E HC IC JC KC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB","33":"eC fC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","33":"I hC iC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS Filter Effects"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","1028":"K L G M N O","1346":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","196":"2","516":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z 0B"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J D E F 5B 6B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 G M N O n o p q r s t u v w x y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"E JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","33":"I jC kC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 bfa500f6557729..13752ba8918025 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":"vB","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","132":"jB","260":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"l J D E","132":"I"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"l 0B","132":"I pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","16":"F AC","260":"B BC CC DC hB tB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"1":"ZC"},I:{"1":"jB I H dC uB eC fC","16":"aC bC","132":"cC"},J:{"1":"D A"},K:{"1":"C Y iB","260":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; +module.exports={A:{A:{"1":"F A B","16":"xB","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","132":"lB","260":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"m J D E","132":"I"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"m 3B","132":"I qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F CC","260":"B DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","16":"cC dC","132":"eC"},J:{"1":"D A"},K:{"1":"C Y jB","260":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 6e995214b016d8..f3464402c8474c 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS first-line pseudo-element"}; +module.exports={A:{A:{"1":"F A B","132":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 910e4274a715a8..7748f74b109672 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":"vB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B qB hB iB 5B 6B 7B rB sB 8B 9B","1025":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","132":"GC HC IC"},H:{"2":"ZC"},I:{"1":"jB H eC fC","260":"aC bC cC","513":"I dC uB"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS position:fixed"}; +module.exports={A:{A:{"1":"D E F A B","2":"xB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B rB iB jB 8B 9B AC sB tB uB kB BC","1025":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","132":"IC JC KC"},H:{"2":"bC"},I:{"1":"lB H gC hC","260":"cC dC eC","513":"I fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 3beba8062e45c4..6cd82736435d04 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 vB"},B:{"1":"V W Z a b c d e f g h i j k X H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","161":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T"},D:{"1":"V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB","328":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B 6B","578":"G 7B rB"},F:{"1":"aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB AC BC CC DC hB tB EC iB","328":"UB VB WB XB YB ZB"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","578":"YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"161":"uC"}},B:7,C:":focus-visible CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"V W Z a b c d e f g h i j k l H X","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","161":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T"},D:{"1":"V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB","328":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B","578":"G AC sB"},F:{"1":"bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB","328":"VB WB XB YB ZB aB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","578":"aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"161":"wC"}},B:7,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 6df734c5c84c44..58553c81b664d1 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB"},D:{"1":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r 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":"kB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB AC BC CC DC hB tB EC iB","194":"DB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"16":"tC"},S:{"2":"uC"}},B:7,C:":focus-within CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"mB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB CC DC EC FC iB vB GC jB","194":"EB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"16":"vC"},S:{"2":"wC"}},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 f758e9d7c19808..9222524d8824fd 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS font-palette"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 41efe9337eda73..401d0d688a6a01 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB xB yB","194":"DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB","66":"GB HB IB JB KB LB MB NB OB PB kB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","66":"3 4 5 6 7 8 9 AB BB CB DB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I","66":"hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"194":"uC"}},B:5,C:"CSS font-display"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB zB 0B","194":"EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB","66":"HB IB JB KB LB MB NB OB PB QB mB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"4 5 6 7 8 9 AB BB CB DB EB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","66":"jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},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 d71155bebdf8eb..a9471f5e0b5b31 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E xB yB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS font-stretch"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E zB 0B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 8c1f92b3661ad5..bc835f55f48414 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 vB","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS Generated content for pseudo-elements"}; +module.exports={A:{A:{"1":"F A B","2":"J D xB","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 6f063cccce905f..edc2dbd20735ee 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB","260":"0 1 2 M N O m n o p q r s t u v w x y z","292":"I l J D E F A B C K L G yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"A B C K L G M N O m n o p q r s","548":"I l J D E F"},E:{"1":"sB 8B 9B","2":"0B pB","260":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB","292":"J 1B","804":"I l"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC","33":"C EC","164":"hB tB"},G:{"1":"sB","260":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB","292":"GC HC","804":"pB FC uB"},H:{"2":"ZC"},I:{"1":"H eC fC","33":"I dC uB","548":"jB aC bC cC"},J:{"1":"A","548":"D"},K:{"1":"Y iB","2":"A B","33":"C","164":"hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","260":"0 1 2 3 M N O n o p q r s t u v w x y z","292":"I m J D E F A B C K L G 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"A B C K L G M N O n o p q r s t","548":"I m J D E F"},E:{"1":"tB uB kB BC","2":"3B qB","260":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB","292":"J 4B","804":"I m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC","33":"C GC","164":"iB vB"},G:{"1":"tB uB kB","260":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB","292":"IC JC","804":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","33":"I fC wB","548":"lB cC dC eC"},J:{"1":"A","548":"D"},K:{"1":"Y jB","2":"A B","33":"C","164":"iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 new file mode 100644 index 00000000000000..787e1b8f908bc8 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 6b51135f615569..2d99e2032c7395 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 vB","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","292":"C K L G"},C:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O xB yB","8":"0 1 2 3 4 5 6 m n o p q r s t u v w x y z","584":"7 8 9 AB BB CB DB EB FB GB HB IB","1025":"JB KB"},D:{"1":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r","8":"s t u v","200":"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","1025":"OB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","8":"J D E F A 2B 3B 4B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u AC BC CC DC hB tB EC iB","200":"0 1 2 3 4 5 6 7 8 9 v w x y z AB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","8":"E HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC","8":"uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"292":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"hC","8":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:4,C:"CSS Grid Layout (level 1)"}; +module.exports={A:{A:{"2":"J D E xB","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","292":"C K L G"},C:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B","8":"0 1 2 3 4 5 6 7 n o p q r s t u v w x y z","584":"8 9 AB BB CB DB EB FB GB HB IB JB","1025":"KB LB"},D:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s","8":"t u v w","200":"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","1025":"PB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","8":"J D E F A 5B 6B 7B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB","200":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","8":"E JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC","8":"wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"292":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"jC","8":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 8b8f729507ca8b..9edec346a764c6 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS hanging-punctuation"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 71323e8ecba2a0..d68495d901d1d2 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X","194":"H nB oB zB"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:":has() CSS relational pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l","194":"H X pB 1B"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:":has() CSS relational pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js index be76afc421cf7a..c7ee8238a924a5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"J D E F A B vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"16":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"16":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"16":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"16":"A B C Y hB tB iB"},L:{"16":"H"},M:{"16":"X"},N:{"16":"A B"},O:{"16":"gC"},P:{"16":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"16":"sC"},R:{"16":"tC"},S:{"16":"uC"}},B:5,C:"CSS4 Hyphenation"}; +module.exports={A:{A:{"16":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"16":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"16":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"16":"X"},M:{"16":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"16":"wC"}},B:5,C:"CSS4 Hyphenation"}; 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 eaf07e89a9d08e..3c4a6e3a0eba0d 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 vB","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R S T U V W","260":"Z a b c d e f g h i j k X H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O m n o p q r s t u v w x y z"},D:{"1":"Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W"},E:{"2":"I l 0B pB","33":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","132":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC","33":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"4":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I","132":"hC"},Q:{"2":"sC"},R:{"132":"tC"},S:{"1":"uC"}},B:5,C:"CSS Hyphenation"}; +module.exports={A:{A:{"2":"J D E F xB","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R S T U V W","260":"Z a b c d e f g h i j k l H X"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},D:{"1":"Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","132":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W"},E:{"2":"I m 3B qB","33":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC","33":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"4":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","132":"jC"},Q:{"2":"uC"},R:{"132":"vC"},S:{"1":"wC"}},B:5,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 5344748fc837bc..74753cc218b20f 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 vB"},B:{"1":"a b c d e f g h i j k X H","2":"C K L G M N O P Q","257":"R S T U V W Z"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s xB yB"},D:{"1":"a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q","257":"R S T U V W Z"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB"},F:{"1":"WB XB YB ZB aB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB AC BC CC DC hB tB EC iB","257":"bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"WC XC YC rB sB","132":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"oC pC qC rC","2":"I hC iC jC kC lC qB mC nC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 image-orientation"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O P Q","257":"R S T U V W Z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q","257":"R S T U V W Z"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"XB YB ZB aB bB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB CC DC EC FC iB vB GC jB","257":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"YC ZC aC sB tB uB kB","132":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"qC rC sC kB tC","2":"I jC kC lC mC nC rB oC pC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 f93f71532a4c0e..9599954f686faa 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 vB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U xB yB","66":"V W","257":"a b c d e f g h i j k X H nB oB","772":"Z"},D:{"2":"I l J D E F A B C K L G M N O m n","164":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l 0B pB 1B","132":"A B C K qB hB iB 5B","164":"J D E F 2B 3B 4B","516":"L G 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","164":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC uB GC","132":"MC NC OC PC QC RC SC TC UC VC","164":"E HC IC JC KC LC","516":"WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","164":"H eC fC"},J:{"2":"D","164":"A"},K:{"2":"A B C hB tB iB","164":"Y"},L:{"164":"H"},M:{"257":"X"},N:{"2":"A B"},O:{"164":"gC"},P:{"164":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"164":"sC"},R:{"164":"tC"},S:{"2":"uC"}},B:5,C:"CSS image-set"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U zB 0B","66":"V W","257":"a b c d e f g h i j k l H X pB","772":"Z"},D:{"2":"I m J D E F A B C K L G M N O n o","164":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m 3B qB 4B","132":"A B C K rB iB jB 8B","164":"J D E F 5B 6B 7B","516":"L G 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC","132":"OC PC QC RC SC TC UC VC WC XC","164":"E JC KC LC MC NC","516":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","164":"H gC hC"},J:{"2":"D","164":"A"},K:{"2":"A B C iB vB jB","164":"Y"},L:{"164":"X"},M:{"257":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"2":"wC"}},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 45d8ead1a253ff..f46b2c96e04696 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C","260":"K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB","516":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB"},D:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I","16":"l J D E F A B C K L","260":"JB","772":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p 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 qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l","772":"J D E F A 1B 2B 3B 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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F AC","260":"6 B C BC CC DC hB tB EC iB","772":"0 1 2 3 4 5 G M N O m n o p q r s t u v w x y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","772":"E GC HC IC JC KC LC MC"},H:{"132":"ZC"},I:{"1":"H","2":"jB aC bC cC","260":"I dC uB eC fC"},J:{"2":"D","260":"A"},K:{"1":"Y","260":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","260":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"516":"uC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C","260":"K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","516":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","16":"m J D E F A B C K L","260":"KB","772":"0 1 2 3 4 5 6 7 8 9 G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","772":"J D E F A 4B 5B 6B 7B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","260":"7 B C DC EC FC iB vB GC jB","772":"0 1 2 3 4 5 6 G M N O n o p q r s t u v w x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","772":"E IC JC KC LC MC NC OC"},H:{"132":"bC"},I:{"1":"H","2":"lB cC dC eC","260":"I fC wB gC hC"},J:{"2":"D","260":"A"},K:{"1":"Y","260":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","260":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"516":"wC"}},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 22444d01e3dbee..e46ac2b943df4e 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 vB","132":"A B","388":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","132":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB jB xB yB","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","388":"I l"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","132":"0 1 2 3 4 5 G M N O m n o p q r s t u v w x y z"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l J 0B pB","132":"D E F A 2B 3B 4B","388":"1B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F B AC BC CC DC hB tB","132":"G M N O m n o p q r s","516":"C EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB GC HC","132":"E IC JC KC LC MC"},H:{"516":"ZC"},I:{"1":"H","16":"jB aC bC cC fC","132":"eC","388":"I dC uB"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C hB tB","516":"iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"132":"uC"}},B:7,C:":indeterminate CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E xB","132":"A B","388":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","388":"I m"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"0 1 2 3 4 5 6 G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB","132":"D E F A 5B 6B 7B","388":"4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB vB","132":"G M N O n o p q r s t","516":"C GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","132":"E KC LC MC NC OC"},H:{"516":"bC"},I:{"1":"H","16":"lB cC dC eC hC","132":"gC","388":"I fC wB"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C iB vB","516":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},B:7,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 fc71747ccb062f..7e421f80d18e72 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E 0B pB 1B 2B 3B","4":"F","164":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC","164":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Initial Letter"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E 3B qB 4B 5B 6B","4":"F","164":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC","164":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 ee9070d86cc431..672fe29a45f660 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","33":"I l J D E F A B C K L G M N O xB yB","164":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS initial value"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"I m J D E F A B C K L G M N O zB 0B","164":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 64c93c9f5a316c..7bf9816422a46a 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"G 7B rB sB 8B 9B","2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"LCH and Lab color values"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 9d0f81548becc1..1c1dfbfacc9120 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":"vB","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L G M N O m n o p q r s t u v w"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B","132":"I l J pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F AC","132":"B C G M BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"2":"ZC"},I:{"1":"H eC fC","16":"aC bC","132":"jB I cC dC uB"},J:{"132":"D A"},K:{"1":"Y","132":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"letter-spacing CSS property"}; +module.exports={A:{A:{"1":"F A B","16":"xB","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B","132":"I m J qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C G M DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"H gC hC","16":"cC dC","132":"lB I eC fC wB"},J:{"132":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 9babddc1c861d9..42743ef1927e77 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 vB"},B:{"2":"C K L G M","33":"P Q R S T U V W Z a b c d e f g h i j k X H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB xB yB","33":"WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"16":"I l J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I 0B pB","33":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC uB","33":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"16":"aC bC","33":"jB I H cC dC uB eC fC"},J:{"33":"D A"},K:{"2":"A B C hB tB iB","33":"Y"},L:{"33":"H"},M:{"33":"X"},N:{"2":"A B"},O:{"33":"gC"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"33":"tC"},S:{"2":"uC"}},B:5,C:"CSS line-clamp"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M","33":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB zB 0B","33":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"16":"I m J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I 3B qB","33":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB","33":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"cC dC","33":"lB I H eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"33":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"2":"wC"}},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 bb544e8b54e92c..156597e0d3f279 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 vB"},B:{"1":"a b c d e f g h i j k X H","2":"C K L G M N O","1028":"W Z","1540":"P Q R S T U V"},C:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB","164":"0 1 2 3 4 5 6 7 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","1540":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB"},D:{"1":"a b c d e f g h i j k X H nB oB zB","292":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB","1028":"W Z","1540":"XB YB ZB aB bB cB dB eB fB gB P Q R S T U V"},E:{"1":"G 7B rB sB 8B 9B","292":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB","1028":"6B","1540":"K L iB 5B"},F:{"1":"eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","292":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","1028":"cB dB","1540":"NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB"},G:{"1":"YC rB sB","292":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC","1028":"XC","1540":"RC SC TC UC VC WC"},H:{"2":"ZC"},I:{"1":"H","292":"jB I aC bC cC dC uB eC fC"},J:{"292":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"292":"gC"},P:{"1":"qC rC","292":"I hC iC jC kC lC","1540":"qB mC nC oC pC"},Q:{"1540":"sC"},R:{"1540":"tC"},S:{"1540":"uC"}},B:5,C:"CSS Logical Properties"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","1028":"W Z","1540":"P Q R S T U V"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","164":"0 1 2 3 4 5 6 7 8 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1540":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","292":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB","1028":"W Z","1540":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V"},E:{"1":"G AC sB tB uB kB BC","292":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","1028":"9B","1540":"K L jB 8B"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","292":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1028":"dB eB","1540":"OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB"},G:{"1":"aC sB tB uB kB","292":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","1028":"ZC","1540":"TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","292":"lB I cC dC eC fC wB gC hC"},J:{"292":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"292":"iC"},P:{"1":"sC kB tC","292":"I jC kC lC mC nC","1540":"rB oC pC qC rC"},Q:{"1540":"uC"},R:{"1540":"vC"},S:{"1540":"wC"}},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 1af98397d3e62b..d4683fbcf6c516 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 vB"},B:{"1":"V W Z a b c d e f g h i j k X H","2":"C K L G M N O P Q R S T U"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB xB yB"},D:{"1":"V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U"},E:{"1":"9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB","129":"C K L G hB iB 5B 6B 7B rB sB 8B"},F:{"1":"aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS ::marker pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S T U"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB zB 0B"},D:{"1":"V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U"},E:{"1":"BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","129":"C K L G iB jB 8B 9B AC sB tB uB kB"},F:{"1":"bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 9c55d4b7781f70..1f111e76ef6e1e 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 vB"},B:{"2":"C K L G M","164":"P Q R S T U V W Z a b c d e f g h i j k X H","3138":"N","12292":"O"},C:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","260":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"sB 8B 9B","2":"0B pB","164":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"2":"F B C AC BC CC DC hB tB EC iB","164":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"sB","164":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"164":"H eC fC","676":"jB I aC bC cC dC uB"},J:{"164":"D A"},K:{"2":"A B C hB tB iB","164":"Y"},L:{"164":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"164":"gC"},P:{"164":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"164":"sC"},R:{"164":"tC"},S:{"260":"uC"}},B:4,C:"CSS Masks"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M","164":"P Q R S T U V W Z a b c d e f g h i j k l H X","3138":"N","12292":"O"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"tB uB kB BC","2":"3B qB","164":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"tB uB kB","164":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"164":"H gC hC","676":"lB I cC dC eC fC wB"},J:{"164":"D A"},K:{"2":"A B C iB vB jB","164":"Y"},L:{"164":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"260":"wC"}},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 7840b3a7f48042..9e37dfd3a16574 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 vB"},B:{"1":"Z a b c d e f g h i j k X H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB jB xB yB","548":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB"},D:{"1":"Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y","196":"TB UB VB","1220":"WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W"},E:{"1":"L G 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l","164":"J D E 1B 2B 3B","260":"F A B C K 4B qB hB iB 5B"},F:{"1":"dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","164":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","196":"JB KB LB","1220":"MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB"},G:{"1":"WC XC YC rB sB","16":"pB FC uB GC HC","164":"E IC JC","260":"KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"1":"H","16":"jB aC bC cC","164":"I dC uB eC fC"},J:{"16":"D","164":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"164":"gC"},P:{"1":"qC rC","164":"I hC iC jC kC lC qB mC nC oC pC"},Q:{"1220":"sC"},R:{"164":"tC"},S:{"548":"uC"}},B:5,C:":is() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"Z a b c d e f g h i j k l H X","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B","548":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB"},D:{"1":"Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y","196":"UB VB WB","1220":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","164":"J D E 4B 5B 6B","260":"F A B C K 7B rB iB jB 8B"},F:{"1":"eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","196":"KB LB MB","1220":"NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","164":"E KC LC","260":"MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","16":"lB cC dC eC","164":"I fC wB gC hC"},J:{"16":"D","164":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"1":"sC kB tC","164":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"1220":"uC"},R:{"164":"vC"},S:{"548":"wC"}},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 bdccd9029f11f9..fb9e69cdf162c5 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB xB yB"},D:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB","132":"C K hB iB"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB AC BC CC DC hB tB EC iB"},G:{"1":"VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC","132":"PC QC RC SC TC UC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"nC oC pC qC rC","2":"I hC iC jC kC lC qB mC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB zB 0B"},D:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","132":"C K iB jB"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC","132":"RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 58c198b17c6e88..c613bae1cd2020 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB xB yB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"Media Queries: interaction media features"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"Media Queries: interaction media features"}; 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 36aa35b186151c..7c51fdd5af16b2 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 vB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","260":"I l J D E F A B C K L G xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","548":"I l J D E F A B C K L G M N O m n o p q r s t u v"},E:{"1":"9B","2":"0B pB","548":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F","548":"B C AC BC CC DC hB tB EC"},G:{"16":"pB","548":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"132":"ZC"},I:{"1":"H eC fC","16":"aC bC","548":"jB I cC dC uB"},J:{"548":"D A"},K:{"1":"Y iB","548":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Media Queries: resolution feature"}; +module.exports={A:{A:{"2":"J D E xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"I m J D E F A B C K L G zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","548":"I m J D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"BC","2":"3B qB","548":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F","548":"B C CC DC EC FC iB vB GC"},G:{"16":"qB","548":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"1":"H gC hC","16":"cC dC","548":"lB I eC fC wB"},J:{"548":"D A"},K:{"1":"Y jB","548":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,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 dc16cd57091d85..12fd95f6637570 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 vB"},B:{"16":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB","16":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H","16":"nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Media Queries: scripting media feature"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"16":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B","16":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X","16":"pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 45d6cf5787324e..6731439590595f 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 vB","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","129":"I l J D E F A B C K L G M N O m n o p q r s"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","129":"I l J 1B","388":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","129":"pB FC uB GC HC"},H:{"1":"ZC"},I:{"1":"H eC fC","129":"jB I aC bC cC dC uB"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"129":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS3 Media Queries"}; +module.exports={A:{A:{"8":"J D E xB","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","129":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","129":"I m J 4B","388":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","129":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","129":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 dc5d0b1847e011..5c99310f7851ce 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y xB yB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v","194":"0 1 2 3 4 5 6 7 w x y z"},E:{"2":"I l J D 0B pB 1B 2B","260":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v AC BC CC DC hB tB EC iB"},G:{"2":"pB FC uB GC HC IC","260":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Blending of HTML/SVG elements"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w","194":"0 1 2 3 4 5 6 7 8 x y z"},E:{"2":"I m J D 3B qB 4B 5B","260":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC JC KC","260":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 c1fbe95b5d7085..daca490d4af52e 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB xB yB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","194":"AB BB CB"},E:{"1":"9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w AC BC CC DC hB tB EC iB","194":"x y z"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"CSS Motion Path"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB zB 0B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","194":"BB CB DB"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","194":"0 y z"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 0aa9c8349c3d0e..43b4a90c3ac494 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS namespaces"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 0b75709aaa7d35..29ef60e5f3b036 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Nesting"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 cd15499e9ae691..98b92f62728187 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 vB"},B:{"1":"Z a b c d e f g h i j k X H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S xB yB"},D:{"1":"Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},F:{"1":"dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qC rC","2":"I hC iC jC kC lC qB mC nC oC pC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"selector list argument of :not()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"Z a b c d e f g h i j k l H X","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S zB 0B"},D:{"1":"Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f579534bfca221..f5bd6695eb441a 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 5e5f76885f4b06..22000e6af54368 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS3 Opacity"}; +module.exports={A:{A:{"1":"F A B","4":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 259610ec7dd835..840f7a55f35a5f 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F AC","132":"B C BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"132":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:":optional CSS pseudo-class"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"132":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,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 d4a63cc0188f9f..78fc0f4ecccc10 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB xB yB"},D:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 061cda1e5750d2..b101bf179caaa3 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"I l J D E F A B 1B 2B 3B 4B qB hB","16":"0B pB","130":"C K L G iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC","16":"pB","130":"QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:7,C:"CSS overflow: overlay"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"I m J D E F A B 4B 5B 6B 7B rB iB","16":"3B qB","130":"C K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC","16":"qB","130":"SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 7a1f3f67fb6aa7..e8386e50740a2e 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 vB"},B:{"1":"b c d e f g h i j k X H","260":"P Q R S T U V W Z a","388":"C K L G M N O"},C:{"1":"R mB S T U V W Z a b c d e f g h i j k X H nB oB","260":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q","388":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB xB yB"},D:{"1":"b c d e f g h i j k X H nB oB zB","260":"WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a","388":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB"},E:{"1":"9B","260":"L G 5B 6B 7B rB sB 8B","388":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB"},F:{"260":"MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB AC BC CC DC hB tB EC iB"},G:{"260":"VC WC XC YC rB sB","388":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"388":"ZC"},I:{"1":"H","388":"jB I aC bC cC dC uB eC fC"},J:{"388":"D A"},K:{"1":"Y","388":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"388":"A B"},O:{"388":"gC"},P:{"1":"qC rC","388":"I hC iC jC kC lC qB mC nC oC pC"},Q:{"388":"sC"},R:{"388":"tC"},S:{"388":"uC"}},B:5,C:"CSS overflow property"}; +module.exports={A:{A:{"388":"J D E F A B xB"},B:{"1":"b c d e f g h i j k l H X","260":"P Q R S T U V W Z a","388":"C K L G M N O"},C:{"1":"R oB S T U V W Z a b c d e f g h i j k l H X pB","260":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q","388":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB zB 0B"},D:{"1":"b c d e f g h i j k l H X pB 1B 2B","260":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a","388":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},E:{"1":"BC","260":"L G 8B 9B AC sB tB uB kB","388":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"260":"NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB CC DC EC FC iB vB GC jB"},G:{"260":"XC YC ZC aC sB tB uB kB","388":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"388":"bC"},I:{"1":"H","388":"lB I cC dC eC fC wB gC hC"},J:{"388":"D A"},K:{"1":"Y","388":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"388":"A B"},O:{"388":"iC"},P:{"1":"sC kB tC","388":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"388":"uC"},R:{"388":"vC"},S:{"388":"wC"}},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 8ab9dd7cdaa02c..0eeeeca3e70b47 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 vB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","132":"C K L G M N","516":"O"},C:{"1":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB xB yB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB","260":"SB Y"},E:{"1":"9B","2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B","1090":"G 6B 7B rB sB 8B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB AC BC CC DC hB tB EC iB","260":"HB IB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","1090":"XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"CSS overscroll-behavior"}; +module.exports={A:{A:{"2":"J D E F xB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N","516":"O"},C:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB","260":"TB Y"},E:{"1":"kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","1090":"G 9B AC sB tB uB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB","260":"IB JB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","1090":"ZC aC sB tB uB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 dff881ad15eb53..9eeb0eea05d242 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 vB"},B:{"388":"C K L G M N O","900":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"772":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","900":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y xB yB"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"772":"A","900":"I l J D E F B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"16":"F AC","129":"B C BC CC DC hB tB EC iB","900":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"900":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"129":"ZC"},I:{"900":"jB I H aC bC cC dC uB eC fC"},J:{"900":"D A"},K:{"129":"A B C hB tB iB","900":"Y"},L:{"900":"H"},M:{"900":"X"},N:{"388":"A B"},O:{"900":"gC"},P:{"900":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"900":"sC"},R:{"900":"tC"},S:{"900":"uC"}},B:2,C:"CSS page-break properties"}; +module.exports={A:{A:{"388":"A B","900":"J D E F xB"},B:{"388":"C K L G M N O","900":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"772":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","900":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y zB 0B"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"772":"A","900":"I m J D E F B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"16":"F CC","129":"B C DC EC FC iB vB GC jB","900":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"900":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"129":"bC"},I:{"900":"lB I H cC dC eC fC wB gC hC"},J:{"900":"D A"},K:{"129":"A B C iB vB jB","900":"Y"},L:{"900":"X"},M:{"900":"H"},N:{"388":"A B"},O:{"900":"iC"},P:{"900":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"900":"uC"},R:{"900":"vC"},S:{"900":"wC"}},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 e52521f537bfe9..bf7c8427ff49a1 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 vB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","132":"C K L G M N O"},C:{"2":"wB jB I l J D E F A B C K L G M N O xB yB","132":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","132":"F B C AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"16":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"16":"A B C Y hB tB iB"},L:{"1":"H"},M:{"132":"X"},N:{"258":"A B"},O:{"258":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"132":"uC"}},B:5,C:"CSS Paged Media (@page)"}; +module.exports={A:{A:{"2":"J D xB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O zB 0B","132":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","132":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"1":"X"},M:{"132":"H"},N:{"258":"A B"},O:{"258":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},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 c264dd64b49bb8..7367f2ee2f24d1 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y"},E:{"2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB","194":"K L G iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Paint API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y"},E:{"2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","194":"K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 f65019e6d69b62..a37410ec3c28f2 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 vB","292":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","164":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"164":"uC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F xB","292":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"164":"wC"}},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 14b583a44dd872..e8c8f5161913a3 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","36":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O xB yB","33":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","36":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p 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":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","36":"l J D E F A 1B 2B 3B 4B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","36":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC","36":"E uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","36":"jB I aC bC cC dC uB eC fC"},J:{"36":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"36":"A B"},O:{"1":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","36":"I hC iC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"33":"uC"}},B:5,C:"::placeholder CSS pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","36":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B","33":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","36":"m J D E F A 4B 5B 6B 7B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","36":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","36":"E wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","36":"lB I cC dC eC fC wB gC hC"},J:{"36":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","36":"I jC kC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},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 394591f3d40e32..827282675e78f2 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 l J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB xB yB","33":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h"},M:{"1":"X"},A:{"2":"J D E F A B vB"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},K:{"2":"A B C hB tB iB","33":"Y"},E:{"1":"sB 8B","2":"I l 0B pB 1B 9B","33":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB"},G:{"1":"sB","2":"pB FC uB GC","33":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},I:{"2":"jB I aC bC cC dC uB","33":"H eC fC"}},B:6,C:"print-color-adjust property"}; +module.exports={A:{D:{"2":"I m J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},L:{"33":"X"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B","33":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h"},M:{"1":"H"},A:{"2":"J D E F A B xB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},K:{"2":"A B C iB vB jB","33":"Y"},E:{"1":"tB uB kB","2":"I m 3B qB 4B BC","33":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB"},G:{"1":"tB uB kB","2":"qB HC wB IC","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},I:{"2":"lB I cC dC eC fC wB","33":"H gC hC"}},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 6693a6f75f1f37..9f70ad762ca9bf 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C"},C:{"1":"gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB","33":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","132":"0 1 2 G M N O m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B pB","132":"I l J D E 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F B AC BC CC DC hB","132":"C G M N O m n o p tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC","132":"E uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","16":"aC bC","132":"jB I cC dC uB eC fC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B hB","132":"C tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"33":"uC"}},B:1,C:"CSS :read-only and :read-write selectors"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB","33":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"0 1 2 3 G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB","132":"I m J D E 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB","132":"C G M N O n o p q vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC","132":"E wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","16":"cC dC","132":"lB I eC fC wB gC hC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B iB","132":"C vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},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 16d0bf5fd24133..293c624d584262 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 vB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B","16":"2B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Rebeccapurple color"}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","16":"5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,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 de082d86655ebc..9690a83ae66407 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 vB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"0B pB","33":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"33":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"33":"jB I H aC bC cC dC uB eC fC"},J:{"33":"D A"},K:{"2":"A B C hB tB iB","33":"Y"},L:{"33":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"33":"tC"},S:{"2":"uC"}},B:7,C:"CSS Reflections"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","33":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"33":"lB I H cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"2":"wC"}},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 b8abc81cc7ddf7..80582bbf95dd6f 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 vB","420":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k X H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"2 3 4 5 6 7 8 9 I l 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","36":"G M N O","66":"0 1 m n o p q r s t u v w x y z"},E:{"2":"I l J C K L G 0B pB 1B hB iB 5B 6B 7B rB sB 8B 9B","33":"D E F A B 2B 3B 4B qB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"pB FC uB GC HC PC QC RC SC TC UC VC WC XC YC rB sB","33":"E IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"420":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Regions"}; +module.exports={A:{A:{"2":"J D E F xB","420":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"3 4 5 6 7 8 9 I m 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"G M N O","66":"0 1 2 n o p q r s t u v w x y z"},E:{"2":"I m J C K L G 3B qB 4B iB jB 8B 9B AC sB tB uB kB BC","33":"D E F A B 5B 6B 7B rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC JC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"420":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 d426ecec8b4df2..32807639516061 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB","33":"I l J D E F A B C K L G yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F","33":"A B C K L G M N O m n o p q r s"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB","33":"J 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC","33":"C EC","36":"hB tB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","33":"GC HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB aC bC cC","33":"I dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y iB","2":"A B","33":"C","36":"hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS Repeating Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","33":"I m J D E F A B C K L G 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F","33":"A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","33":"J 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC","33":"C GC","36":"iB vB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","33":"IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","33":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B","33":"C","36":"iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 f8dd89fd10f9a8..c24a0dbd51ca8b 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC","132":"iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:4,C:"CSS resize property"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:4,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 a34c7526b02b48..e1dc9dfbdafd9c 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 vB"},B:{"1":"T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O P Q R S"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB xB yB"},D:{"1":"T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B"},F:{"1":"bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB AC BC CC DC hB tB EC iB"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS revert value"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 de7ffa94a33cb1..992b7c706c0625 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB"},D:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I","194":"hC iC jC"},Q:{"2":"sC"},R:{"194":"tC"},S:{"2":"uC"}},B:7,C:"#rrggbbaa hex color notation"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB MB NB OB PB QB mB RB nB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","194":"jC kC lC"},Q:{"2":"uC"},R:{"194":"vC"},S:{"2":"wC"}},B:7,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 579f9a48cc3a6f..edb83e0ae3ea30 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 vB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","129":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","450":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB 5B","578":"L G 6B 7B rB"},F:{"2":"F B C G M N O m n o p q r s t u AC BC CC DC hB tB EC iB","129":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","450":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","578":"XC YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"129":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"129":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Scroll-behavior"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","129":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","450":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","578":"L G 9B AC sB"},F:{"2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB","129":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","450":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","578":"ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"129":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"129":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 c6446581288726..92801b28d362fc 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a","194":"b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T","194":"Z a b c d e f g h i j k X H nB oB zB","322":"U V W"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB AC BC CC DC hB tB EC iB","194":"dB eB fB gB P Q R mB S T U V W","322":"bB cB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"CSS @scroll-timeline"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a","194":"b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","194":"Z a b c d e f g h i j k l H X pB 1B 2B","322":"U V W"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","194":"eB fB gB hB P Q R oB S T U V W","322":"cB dB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 1d877fb236b415..5411c3200b71fc 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 vB"},B:{"2":"C K L G M N O","292":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB xB yB","3074":"SB","4100":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"16":"I l 0B pB","292":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","292":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"WC XC YC rB sB","16":"pB FC uB GC HC","292":"IC","804":"E JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"16":"aC bC","292":"jB I H cC dC uB eC fC"},J:{"292":"D A"},K:{"2":"A B C hB tB iB","292":"Y"},L:{"292":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"292":"gC"},P:{"292":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"292":"sC"},R:{"292":"tC"},S:{"2":"uC"}},B:7,C:"CSS scrollbar styling"}; +module.exports={A:{A:{"132":"J D E F A B xB"},B:{"2":"C K L G M N O","292":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B","3074":"TB","4100":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"16":"I m 3B qB","292":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","292":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","292":"KC","804":"E LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"16":"cC dC","292":"lB I H eC fC wB gC hC"},J:{"292":"D A"},K:{"2":"A B C iB vB jB","292":"Y"},L:{"292":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"292":"iC"},P:{"292":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"292":"uC"},R:{"292":"vC"},S:{"2":"wC"}},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 021a7b7680be45..6603e9edfde0b2 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":"vB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS 2.1 selectors"}; +module.exports={A:{A:{"1":"D E F A B","2":"xB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 7fe0cfde2f2dc3..2adddff5dac296 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":"vB","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS3 selectors"}; +module.exports={A:{A:{"1":"F A B","2":"xB","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 983020f3a2ad8a..a512cf7eb49d42 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","33":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"C Y tB iB","16":"A B hB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"33":"uC"}},B:5,C:"::selection CSS pseudo-element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"C Y vB jB","16":"A B iB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},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 d1e7b1a26e6797..58f6d1ad3858ef 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB","322":"IB JB KB LB MB NB OB PB kB QB lB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","194":"1 2 3"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B","33":"E F A 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC","33":"E JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:4,C:"CSS Shapes Level 1"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B","322":"JB KB LB MB NB OB PB QB mB RB nB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","194":"2 3 4"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","33":"E F A 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","33":"E LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 9496233ae64131..e8b0aedea1d58a 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 vB","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","6436":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","2052":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB","8258":"UB VB WB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B","3108":"F A 4B qB"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB","8258":"LB MB NB OB PB QB RB SB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC","3108":"KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qB mC nC oC pC qC rC","2":"I hC iC jC kC lC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2052":"uC"}},B:4,C:"CSS Scroll Snap"}; +module.exports={A:{A:{"2":"J D E F xB","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","6436":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","2052":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB","8258":"VB WB XB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","3108":"F A 7B rB"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB","8258":"MB NB OB PB QB RB SB TB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","3108":"MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2052":"wC"}},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 0c0904837165c6..773df5bd0ed1d2 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 vB"},B:{"1":"c d e f g h i j k X H","2":"C K L G","1028":"P Q R S T U V W Z a b","4100":"M N O"},C:{"1":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s xB yB","194":"t u v w x y","516":"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"},D:{"1":"c d e f g h i j k X H nB oB zB","2":"4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p AB BB CB DB EB FB GB HB IB","322":"0 1 2 3 q r s t u v w x y z JB KB LB MB","1028":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B","33":"E F A B C 3B 4B qB hB iB","2084":"D 2B"},F:{"1":"gB P Q R mB S T U V W","2":"0 1 2 3 4 5 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","322":"6 7 8","1028":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","33":"E JC KC LC MC NC OC PC QC RC","2084":"HC IC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1028":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"1028":"sC"},R:{"2":"tC"},S:{"516":"uC"}},B:5,C:"CSS position:sticky"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"c d e f g h i j k l H X","2":"C K L G","1028":"P Q R S T U V W Z a b","4100":"M N O"},C:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B","194":"u v w x y z","516":"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"},D:{"1":"c d e f g h i j k l H X pB 1B 2B","2":"5 6 7 8 9 I m J D E F A B C K L G M N O n o p q AB BB CB DB EB FB GB HB IB JB","322":"0 1 2 3 4 r s t u v w x y z KB LB MB NB","1028":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","33":"E F A B C 6B 7B rB iB jB","2084":"D 5B"},F:{"1":"hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"7 8 9","1028":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"E LC MC NC OC PC QC RC SC TC","2084":"JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1028":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1028":"uC"},R:{"2":"vC"},S:{"516":"wC"}},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 5dd0275c7929f1..8817a539f56426 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Subgrid"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 5788e395e886a6..2875af5fb3164b 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L G M N O"},C:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m xB yB","66":"n o","260":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u","260":"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 kB QB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC","132":"iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"132":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB","132":"iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS.supports() API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N O"},C:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n zB 0B","66":"o p","260":"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"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v","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 mB RB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"132":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 d9dd0490a67f0c..ee342db159b09f 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","132":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS Table display"}; +module.exports={A:{A:{"1":"E F A B","2":"J D xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","132":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 b5891da4ce86d8..6f2093977117e1 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","4":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B xB yB","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","322":"2 3 4 5 6 7 8 9 AB BB CB DB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o AC BC CC DC hB tB EC iB","578":"0 p q r s t u v w x y z"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"1":"tC"},S:{"33":"uC"}},B:5,C:"CSS3 text-align-last"}; +module.exports={A:{A:{"132":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B zB 0B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","322":"3 4 5 6 7 8 9 AB BB CB DB EB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB","578":"0 1 q r s t u v w x y z"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"33":"wC"}},B:5,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 a8141972a8ae71..eced6aa2e59fdd 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 vB"},B:{"132":"C K L G M N O","388":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"132":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","388":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"132":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"132":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB","388":"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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"132":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"132":"ZC"},I:{"132":"jB I aC bC cC dC uB eC fC","388":"H"},J:{"132":"D A"},K:{"132":"A B C hB tB iB","388":"Y"},L:{"388":"H"},M:{"132":"X"},N:{"132":"A B"},O:{"132":"gC"},P:{"132":"I","388":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"388":"sC"},R:{"388":"tC"},S:{"132":"uC"}},B:5,C:"CSS text-indent"}; +module.exports={A:{A:{"132":"J D E F A B xB"},B:{"132":"C K L G M N O","388":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"132":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"132":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","388":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"132":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"132":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB","388":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"132":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"132":"lB I cC dC eC fC wB gC hC","388":"H"},J:{"132":"D A"},K:{"132":"A B C iB vB jB","388":"Y"},L:{"388":"X"},M:{"132":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I","388":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"388":"uC"},R:{"388":"vC"},S:{"132":"wC"}},B:5,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 779bab4a04ac6a..4184b7b38a9a59 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 vB","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB xB yB","1025":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","1602":"LB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","322":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C G M N O m n o p q r s t u v w AC BC CC DC hB tB EC iB","322":"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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","322":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","322":"Y"},L:{"322":"H"},M:{"1025":"X"},N:{"132":"A B"},O:{"2":"gC"},P:{"2":"I","322":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"322":"sC"},R:{"322":"tC"},S:{"2":"uC"}},B:5,C:"CSS text-justify"}; +module.exports={A:{A:{"16":"J D xB","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B","1025":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1602":"MB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","322":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","322":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","322":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","322":"Y"},L:{"322":"X"},M:{"1025":"H"},N:{"132":"A B"},O:{"2":"iC"},P:{"2":"I","322":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"322":"uC"},R:{"322":"vC"},S:{"2":"wC"}},B:5,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 6f90753dd117bd..3b299de4c59f71 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","194":"5 6 7"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"L G 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B","16":"A","33":"B C K qB hB iB 5B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS text-orientation"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"6 7 8"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","16":"A","33":"B C K rB iB jB 8B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 6f8d0d84af9c39..8b6a9a94696fdb 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 vB","161":"E F A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k X H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS Text 4 text-spacing"}; +module.exports={A:{A:{"2":"J D xB","161":"E F A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 05e34904b88bdf..797554e5b1e4b7 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 vB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","260":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"4":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"129":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 Text-shadow"}; +module.exports={A:{A:{"2":"J D E F xB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","260":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 Text-shadow"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js index bdd7913fdbe526..bb28187a9d90c1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F vB","132":"B","164":"A"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","260":"MB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","260":"9"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"132":"B","164":"A"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","16":"I"},Q:{"2":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"CSS touch-action level 2 values"}; +module.exports={A:{A:{"2":"J D E F xB","132":"B","164":"A"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","260":"AB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"132":"B","164":"A"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"CSS touch-action level 2 values"}; 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 218602b615ba67..827b8b9881cf10 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 vB","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB","1025":"JB KB LB MB NB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p AC BC CC DC hB tB EC iB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC","516":"LC MC NC OC PC QC RC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","289":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"194":"uC"}},B:2,C:"CSS touch-action property"}; +module.exports={A:{A:{"1":"B","2":"J D E F xB","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","194":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB","1025":"KB LB MB NB OB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC","516":"NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","289":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"194":"wC"}},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 214b434c35e8d2..f5e6f60ae3cc08 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","33":"l J D E F A B C K L G","164":"I"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"I l J D E F A B C K L G M N O m n o p q r s"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","33":"J 1B","164":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F AC BC","33":"C","164":"B CC DC hB tB EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","33":"HC","164":"pB FC uB GC"},H:{"2":"ZC"},I:{"1":"H eC fC","33":"jB I aC bC cC dC uB"},J:{"1":"A","33":"D"},K:{"1":"Y iB","33":"C","164":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS3 Transitions"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"m J D E F A B C K L G","164":"I"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"J 4B","164":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC","33":"C","164":"B EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"JC","164":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","33":"lB I cC dC eC fC wB"},J:{"1":"A","33":"D"},K:{"1":"Y jB","33":"C","164":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 c72c0e269fc89d..7f48a939c7c8df 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","132":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","33":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB","132":"wB jB I l J D E F xB yB","292":"A B C K L G M"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"132":"I l J D E 0B pB 1B 2B 3B","548":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"132":"E pB FC uB GC HC IC JC","548":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"1":"H","16":"jB I aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"16":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","16":"I"},Q:{"16":"sC"},R:{"16":"tC"},S:{"33":"uC"}},B:4,C:"CSS unicode-bidi property"}; +module.exports={A:{A:{"132":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","132":"yB lB I m J D E F zB 0B","292":"A B C K L G M"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"132":"I m J D E 3B qB 4B 5B 6B","548":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"132":"E qB HC wB IC JC KC LC","548":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"1":"H","16":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"16":"uC"},R:{"16":"vC"},S:{"33":"wC"}},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 21e7df7b46a595..a748d1d1433218 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t xB yB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u AC BC CC DC hB tB EC iB"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS unset value"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 f2a73607485aa1..b6676afea4411c 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L","260":"G"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB","194":"FB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B","260":"4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","194":"2"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC","260":"LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:4,C:"CSS Variables (Custom Properties)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","260":"G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B","260":"7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"3"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC","260":"NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 1c36235d263aa1..019e903fa862af 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"CSS @when / @else conditional rules"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 714a362404f92c..6d368a2b11cc31 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 vB","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","129":"F B AC BC CC DC hB tB EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:2,C:"CSS widows & orphans"}; +module.exports={A:{A:{"1":"A B","2":"J D xB","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","129":"F B CC DC EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 2f13bdb5aa408a..b045e30869178b 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 l J D E F A B C K L G M N O m n o","33":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB","33":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},M:{"33":"X"},A:{"2":"J D E F A B vB"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},K:{"2":"A B C hB tB iB","33":"Y"},E:{"2":"I l J 0B pB 1B 2B 9B","33":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},G:{"2":"pB FC uB GC HC","33":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},P:{"2":"I","33":"hC iC jC kC lC qB mC nC oC pC qC rC"},I:{"2":"jB I aC bC cC dC uB","33":"H eC fC"}},B:6,C:"width: stretch property"}; +module.exports={A:{D:{"2":"I m J D E F A B C K L G M N O n o p","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},L:{"33":"X"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB","33":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},M:{"33":"H"},A:{"2":"J D E F A B xB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},K:{"2":"A B C iB vB jB","33":"Y"},E:{"2":"I m J 3B qB 4B 5B BC","33":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},G:{"2":"qB HC wB IC JC","33":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},P:{"2":"I","33":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},I:{"2":"lB I cC dC eC fC wB","33":"H gC hC"}},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 53c64a28a5f0c1..59f783c781ef71 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","322":"3 4 5 6 7"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l 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 m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l","33":"J D E F A 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 G M N O m n o p q r s t u v w x y z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB","33":"E GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"aC bC cC","33":"jB I dC uB eC fC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"36":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","33":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS writing-mode property"}; +module.exports={A:{A:{"132":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","322":"4 5 6 7 8"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m 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 n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","33":"J D E F A 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 G M N O n o p q r s t u v w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","33":"E IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","33":"lB I fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 bcfdbc4fb28db7..aedc2f86a46e2b 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 vB","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"129":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:7,C:"CSS zoom"}; +module.exports={A:{A:{"1":"J D xB","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 1999a98de0d60c..b2d42dda78cb95 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"CSS3 attr() function for all properties"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,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 708ef77aae6f0b..94a40568d1f9ce 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","33":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"I l J D E F"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","33":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","33":"pB FC uB"},H:{"1":"ZC"},I:{"1":"I H dC uB eC fC","33":"jB aC bC cC"},J:{"1":"A","33":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS3 Box-sizing"}; +module.exports={A:{A:{"1":"E F A B","8":"J D xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I m J D E F"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"qB HC wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","33":"lB cC dC eC"},J:{"1":"A","33":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 0765774049195e..7291a32debe8c7 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","4":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","2":"F","4":"AC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS3 Colors"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","4":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F","4":"CC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 dc509c8c32008a..7c59c424d175b9 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","33":"wB jB I l J D E F A B C K L G M N O m n o p q r s t xB yB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","33":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},F:{"1":"C MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:3,C:"CSS grab & grabbing cursors"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","33":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"C NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p 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":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:3,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 ebfd18f932e23e..9fd7e981cdcda3 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","33":"wB jB I l J D E F A B C K L G M N O m n o p q xB yB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","33":"I l J D E 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB","33":"G M N O m n o p q"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB","33":"G M N O n o p q r"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,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 c8b1154cfdeb1d..2e8fda8a1a82ff 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","4":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"I"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","4":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","260":"F B C AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"CSS3 Cursors (original values)"}; +module.exports={A:{A:{"1":"F A B","132":"J D E xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","4":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","260":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,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 153e22395bfd33..6ec0b2494c9b3a 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"c d e f g h i j k X H nB oB","2":"wB jB xB yB","33":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b","164":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n","132":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B","132":"D E F A B C K 2B 3B 4B qB hB iB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F AC BC CC","132":"G M N O m n o p q r s t u v","164":"B C DC hB tB EC iB"},G:{"1":"VC WC XC YC rB sB","2":"pB FC uB GC HC","132":"E IC JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"164":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB","132":"eC fC"},J:{"132":"D A"},K:{"1":"Y","2":"A","164":"B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"164":"uC"}},B:5,C:"CSS3 tab-size"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b","164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","132":"D E F A B C K 5B 6B 7B rB iB jB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC","132":"G M N O n o p q r s t u v w","164":"B C FC iB vB GC jB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","132":"E KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"164":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","132":"gC hC"},J:{"132":"D A"},K:{"1":"Y","2":"A","164":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"164":"wC"}},B:5,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 8e1925d1b95cae..6905ad1c1164d4 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS currentColor value"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 980708bab18d8b..8e0455d4678851 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 vB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k X H","8":"C K L G M N O"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","66":"q r s t u v w","72":"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"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","2":"I l J D E F A B C K L G M N O m n o p q r s t Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","66":"u v w x y z"},E:{"2":"I l 0B pB 1B","8":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB","2":"F B C VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","66":"G M N O m"},G:{"2":"pB FC uB GC HC","8":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"fC","2":"jB I H aC bC cC dC uB eC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC","2":"oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"72":"uC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F xB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","66":"r s t u v w x","72":"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"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"I m J D E F A B C K L G M N O n o p q r s t u Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"0 v w x y z"},E:{"2":"I m 3B qB 4B","8":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB","2":"F B C WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"G M N O n"},G:{"2":"qB HC wB IC JC","8":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"hC","2":"lB I H cC dC eC fC wB gC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC","2":"qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"72":"wC"}},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 2cb2036524c308..ba0c2d58270f05 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 vB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","8":"C K L G M N O"},C:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w xB yB","8":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB","456":"HB IB JB KB LB MB NB OB PB","712":"kB QB lB RB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","8":"JB KB","132":"LB MB NB OB PB kB QB lB RB SB Y TB UB"},E:{"2":"I l J D 0B pB 1B 2B 3B","8":"E F A 4B","132":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","132":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC","132":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I","132":"hC"},Q:{"132":"sC"},R:{"132":"tC"},S:{"8":"uC"}},B:1,C:"Custom Elements (V1)"}; +module.exports={A:{A:{"2":"J D E F xB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B","8":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB","456":"IB JB KB LB MB NB OB PB QB","712":"mB RB nB SB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","8":"KB LB","132":"MB NB OB PB QB mB RB nB SB TB Y UB VB"},E:{"2":"I m J D 3B qB 4B 5B 6B","8":"E F A 7B","132":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC","132":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","132":"jC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"8":"wC"}},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 a757967295fc28..232593ce18f870 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 vB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I","16":"l J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l J","388":"1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F AC BC CC DC","132":"B hB tB"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"FC","16":"pB uB","388":"GC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"aC bC cC","388":"jB I dC uB"},J:{"1":"A","388":"D"},K:{"1":"C Y iB","2":"A","132":"B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"CustomEvent"}; +module.exports={A:{A:{"2":"J D E xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","16":"m J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m J","388":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC EC FC","132":"B iB vB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"HC","16":"qB wB","388":"IC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","388":"lB I fC wB"},J:{"1":"A","388":"D"},K:{"1":"C Y jB","2":"A","132":"B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1b25a4085bd9ed..966831892d1092 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":"vB","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L G","1284":"M N O"},C:{"8":"wB jB xB yB","4612":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"I l J D E F A B C K L G M N O m","132":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","8":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB"},F:{"1":"F B C Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"8":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC","2049":"RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H fC","8":"jB I aC bC cC dC uB eC"},J:{"1":"A","8":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"516":"X"},N:{"8":"A B"},O:{"8":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"132":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:1,C:"Datalist element"}; +module.exports={A:{A:{"2":"xB","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G","1284":"M N O"},C:{"8":"yB lB zB 0B","4612":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J D E F A B C K L G M N O n","132":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","8":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"F B C Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"8":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","2049":"TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H hC","8":"lB I cC dC eC fC wB gC"},J:{"1":"A","8":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"516":"H"},N:{"8":"A B"},O:{"8":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 758e11e021d29e..2d30815e04882d 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 vB"},B:{"1":"C K L G M","129":"N O P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","4":"wB jB I l xB yB","129":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB","4":"I l J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"4":"I l 0B pB","129":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 C z hB tB EC iB","4":"F B AC BC CC DC","129":"9 G M N O m n o p q r s t u v w x y AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"4":"pB FC uB","129":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"4":"ZC"},I:{"4":"aC bC cC","129":"jB I H dC uB eC fC"},J:{"129":"D A"},K:{"1":"C hB tB iB","4":"A B","129":"Y"},L:{"129":"H"},M:{"129":"X"},N:{"1":"B","4":"A"},O:{"129":"gC"},P:{"129":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"129":"tC"},S:{"1":"uC"}},B:1,C:"dataset & data-* attributes"}; +module.exports={A:{A:{"1":"B","4":"J D E F A xB"},B:{"1":"C K L G M","129":"N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","4":"yB lB I m zB 0B","129":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB","4":"I m J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"4":"I m 3B qB","129":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C iB vB GC jB","4":"F B CC DC EC FC","129":"G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"4":"qB HC wB","129":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"4":"cC dC eC","129":"lB I H fC wB gC hC"},J:{"129":"D A"},K:{"1":"C iB vB jB","4":"A B","129":"Y"},L:{"129":"X"},M:{"129":"H"},N:{"1":"B","4":"A"},O:{"129":"iC"},P:{"129":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"129":"vC"},S:{"1":"wC"}},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 0d3eba7361cff8..85b6200028cd63 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 vB","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Data URIs"}; +module.exports={A:{A:{"2":"J D xB","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 51afef3f703f84..29988252b21d2f 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":"vB","132":"J D E F A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","132":"C K L G M N"},C:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","132":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB","260":"JB KB LB MB","772":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L G M N O m n o p q","260":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB","772":"0 1 2 3 4 r s t u v w x y z"},E:{"1":"C K L G iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB","132":"J D E F A 1B 2B 3B 4B","260":"B qB hB"},F:{"1":"OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F B C AC BC CC DC hB tB EC","132":"iB","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","772":"G M N O m n o p q r"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB GC","132":"E HC IC JC KC LC MC"},H:{"132":"ZC"},I:{"1":"H","16":"jB aC bC cC","132":"I dC uB","772":"eC fC"},J:{"132":"D A"},K:{"1":"Y","16":"A B C hB tB","132":"iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"260":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","260":"I hC iC jC kC"},Q:{"260":"sC"},R:{"132":"tC"},S:{"132":"uC"}},B:6,C:"Date.prototype.toLocaleDateString"}; +module.exports={A:{A:{"16":"xB","132":"J D E F A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N"},C:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","260":"KB LB MB NB","772":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r","260":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB","772":"0 1 2 3 4 5 s t u v w x y z"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB","132":"J D E F A 4B 5B 6B 7B","260":"B rB iB"},F:{"1":"PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B C CC DC EC FC iB vB GC","132":"jB","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","772":"G M N O n o p q r s"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC","132":"E JC KC LC MC NC OC"},H:{"132":"bC"},I:{"1":"H","16":"lB cC dC eC","132":"I fC wB","772":"gC hC"},J:{"132":"D A"},K:{"1":"Y","16":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"260":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","260":"I jC kC lC mC"},Q:{"260":"uC"},R:{"132":"vC"},S:{"132":"wC"}},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 5c93b684ac8b61..f14a7a9894de15 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 vB"},B:{"1":"b c d e f g h i j k X H","2":"C K L G M N O P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T","66":"U V W Z a"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B","16":"9B"},F:{"1":"fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qC rC","2":"I hC iC jC kC lC qB mC nC oC pC"},Q:{"16":"sC"},R:{"16":"tC"},S:{"2":"uC"}},B:7,C:"Declarative Shadow DOM"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"b c d e f g h i j k l H X","2":"C K L G M N O P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","66":"U V W Z a"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB","16":"BC"},F:{"1":"gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},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 645b3434d5a098..142a3b5b7800c3 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Decorators"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 ead6b6f877014e..6fc4eccb2e8171 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 vB","8":"J D E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB","8":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB","194":"EB FB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"I l J D E F A B","257":"0 1 2 m n o p q r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G iB 5B 6B 7B rB sB 8B 9B","8":"I l 0B pB 1B","257":"J D E F A 2B 3B 4B","1025":"B qB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"C hB tB EC iB","8":"F B AC BC CC DC"},G:{"1":"E HC IC JC KC LC PC QC RC SC TC UC VC WC XC YC rB sB","8":"pB FC uB GC","1025":"MC NC OC"},H:{"8":"ZC"},I:{"1":"I H dC uB eC fC","8":"jB aC bC cC"},J:{"1":"A","8":"D"},K:{"1":"Y","8":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"769":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Details & Summary elements"}; +module.exports={A:{A:{"2":"F A B xB","8":"J D E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","8":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","194":"FB GB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J D E F A B","257":"0 1 2 3 n o p q r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","8":"I m 3B qB 4B","257":"J D E F A 5B 6B 7B","1025":"B rB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"C iB vB GC jB","8":"F B CC DC EC FC"},G:{"1":"E JC KC LC MC NC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB IC","1025":"OC PC QC"},H:{"8":"bC"},I:{"1":"I H fC wB gC hC","8":"lB cC dC eC"},J:{"1":"A","8":"D"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"769":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2c02e4f75e7270..323f5ad352fdeb 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 vB","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB xB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"I l yB"},D:{"2":"I l J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","4":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC","4":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"aC bC cC","4":"jB I H dC uB eC fC"},J:{"2":"D","4":"A"},K:{"1":"C iB","2":"A B hB tB","4":"Y"},L:{"4":"H"},M:{"4":"X"},N:{"1":"B","2":"A"},O:{"4":"gC"},P:{"4":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"4":"sC"},R:{"4":"tC"},S:{"4":"uC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB zB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"I m 0B"},D:{"2":"I m J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","4":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC","4":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"cC dC eC","4":"lB I H fC wB gC hC"},J:{"2":"D","4":"A"},K:{"1":"C jB","2":"A B iB vB","4":"Y"},L:{"4":"X"},M:{"4":"H"},N:{"1":"B","2":"A"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"4":"wC"}},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 8b5010c83a7572..08d3af91807f8c 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"C Y iB","2":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Window.devicePixelRatio"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2110fabc33f85c..2121129891908c 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB","194":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","1218":"Q R mB S T U V W Z a b c d e f g h i"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y","322":"0 1 2 3 z"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O AC BC CC DC hB tB EC iB","578":"m n o p q"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:1,C:"Dialog element"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","194":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","1218":"Q R oB S T U V W Z a b c d e f g h i"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z","322":"0 1 2 3 4"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O CC DC EC FC iB vB GC jB","578":"n o p q r"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 0df5070e838a3b..6aada07fa357c1 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":"vB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","16":"F"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","129":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"EventTarget.dispatchEvent"}; +module.exports={A:{A:{"1":"B","16":"xB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","129":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1a8c3558b071c7..6a89ac51994860 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 vB"},B:{"132":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I l y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","388":"J D E F A B C K L G M N O m n o p q r s t u v w x"},E:{"132":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"132":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"132":"ZC"},I:{"132":"jB I H aC bC cC dC uB eC fC"},J:{"132":"D A"},K:{"132":"A B C Y hB tB iB"},L:{"132":"H"},M:{"132":"X"},N:{"132":"A B"},O:{"132":"gC"},P:{"132":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"132":"sC"},R:{"132":"tC"},S:{"132":"uC"}},B:6,C:"DNSSEC and DANE"}; +module.exports={A:{A:{"132":"J D E F A B xB"},B:{"132":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"132":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I m z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","388":"J D E F A B C K L G M N O n o p q r s t u v w x y"},E:{"132":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"132":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"132":"lB I H cC dC eC fC wB gC hC"},J:{"132":"D A"},K:{"132":"A B C Y iB vB jB"},L:{"132":"X"},M:{"132":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"132":"wC"}},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 693299cc531a66..ff612d10972275 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 vB","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L G M"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E xB yB","516":"F A B C K L G M N O m n o p q r s t u v w x y"},D:{"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p"},E:{"1":"J A B C 1B 4B qB hB","2":"I l K L G 0B pB iB 5B 6B 7B rB sB 8B 9B","1028":"D E F 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC"},G:{"1":"KC LC MC NC OC PC QC","2":"pB FC uB GC HC RC SC TC UC VC WC XC YC rB sB","1028":"E IC JC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"16":"D","1028":"A"},K:{"1":"Y iB","16":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"164":"A","260":"B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Do Not Track API"}; +module.exports={A:{A:{"2":"J D E xB","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E zB 0B","516":"F A B C K L G M N O n o p q r s t u v w x y z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q"},E:{"1":"J A B C 4B 7B rB iB","2":"I m K L G 3B qB jB 8B 9B AC sB tB uB kB BC","1028":"D E F 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"1":"MC NC OC PC QC RC SC","2":"qB HC wB IC JC TC UC VC WC XC YC ZC aC sB tB uB kB","1028":"E KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"16":"D","1028":"A"},K:{"1":"Y jB","16":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"164":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 51e4148b4a5a77..fa9a0613e28531 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v"},E:{"1":"E F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G AC BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"document.currentScript"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 268d705d1d9b1f..280f310f7cc282 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","16":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","16":"F"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:"document.evaluate & XPath"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e843cb7decfad3..332ff309cbab90 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","16":"F AC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC","16":"uB GC HC"},H:{"2":"ZC"},I:{"1":"H dC uB eC fC","2":"jB I aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:"Document.execCommand()"}; +module.exports={A:{A:{"1":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","16":"wB IC JC"},H:{"2":"bC"},I:{"1":"H fC wB gC hC","2":"lB I cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e74d0f09f8824e..b213137cf06160 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 vB"},B:{"2":"C K L G M N O P Q R S T","132":"U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T","132":"U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB AC BC CC DC hB tB EC iB","132":"ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","132":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","132":"Y"},L:{"132":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Document Policy"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T","132":"U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","132":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB CC DC EC FC iB vB GC jB","132":"aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","132":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 ba5212e5d5dc38..a60c6a1c894f83 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","16":"C K"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB xB yB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"document.scrollingElement"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 6dd3522b8618dd..aa33b4f6cec8a4 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F AC BC CC DC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"document.head"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 6fda431178a287..0a4750d7315292 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB"},D:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"JB KB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","194":"7"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"194":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"DOM manipulation convenience methods"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"8"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"194":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 ce7686846dda7a..d8cdb3e59e695c 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":"vB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Document Object Model Range"}; +module.exports={A:{A:{"1":"F A B","2":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 9da3ddb8114a73..0890a66a5ed49b 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"DOMContentLoaded"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"DOMContentLoaded"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js index d6fbbc50328d0a..25fef5864d1cce 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L G M N O m n o p q r s"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","16":"F B AC BC CC DC hB tB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB GC HC"},H:{"16":"ZC"},I:{"1":"I H dC uB eC fC","16":"jB aC bC cC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"16":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F B CC DC EC FC iB vB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC"},H:{"16":"bC"},I:{"1":"I H fC wB gC hC","16":"lB cC dC eC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; 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 0c0475d89505ae..3ad111b7094227 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 vB","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","1028":"XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2564":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB","3076":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB"},D:{"16":"I l J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB","388":"E","1028":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"16":"I 0B pB","132":"l J D E F A 1B 2B 3B 4B qB","1028":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB","1028":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"16":"pB FC uB","132":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"132":"I dC uB eC fC","292":"jB aC bC cC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C hB tB iB","1028":"Y"},L:{"1028":"H"},M:{"1028":"X"},N:{"132":"A B"},O:{"132":"gC"},P:{"132":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"132":"sC"},R:{"132":"tC"},S:{"2564":"uC"}},B:4,C:"DOMMatrix"}; +module.exports={A:{A:{"2":"J D E F xB","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1028":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2564":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB","3076":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},D:{"16":"I m J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB","388":"E","1028":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"16":"I 3B qB","132":"m J D E F A 4B 5B 6B 7B rB","1028":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","1028":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"16":"qB HC wB","132":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"132":"I fC wB gC hC","292":"lB cC dC eC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C iB vB jB","1028":"Y"},L:{"1028":"X"},M:{"1028":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"2564":"wC"}},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 a86e3f1660491f..5ea3529eeaae78 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Download attribute"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 3ff5644d4dadf8..f37f6da4391f7b 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 vB","772":"A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","8":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","8":"F B AC BC CC DC hB tB EC"},G:{"1":"YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","1025":"H"},J:{"2":"D A"},K:{"1":"iB","8":"A B C hB tB","1025":"Y"},L:{"1025":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"Drag and Drop"}; +module.exports={A:{A:{"644":"J D E F xB","772":"A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","8":"F B CC DC EC FC iB vB GC"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D A"},K:{"1":"jB","8":"A B C iB vB","1025":"Y"},L:{"1025":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 1af5a9cb73557a..d82765ca60d0fa 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Element.closest()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 84fc73cf915c06..aac573089b9abd 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","16":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","16":"F AC BC CC DC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"C Y iB","16":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"document.elementFromPoint()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","16":"F CC DC EC FC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"C Y jB","16":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5f19353736a309..05c9a1347015c0 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB"},E:{"1":"L G 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B","132":"A B C K qB hB iB 5B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB AC BC CC DC hB tB EC iB"},G:{"1":"XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC","132":"MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","132":"A B C K rB iB jB 8B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","132":"OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 e2c6e988bcd453..0676f8b07fd767 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 vB","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","132":"2 3 4 5 6 7 8"},E:{"1":"C K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B","164":"D E F A B 3B 4B qB hB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o AC BC CC DC hB tB EC iB","132":"p q r s t u v"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"16":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:2,C:"Encrypted Media Extensions"}; +module.exports={A:{A:{"2":"J D E F A xB","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"3 4 5 6 7 8 9"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B","164":"D E F A B 6B 7B rB iB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB","132":"q r s t u v w"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"16":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 77f7829083737c..d3f54c97b42e57 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":"vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"EOT - Embedded OpenType fonts"}; +module.exports={A:{A:{"1":"J D E F A B","2":"xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 e6e08d1c0aca5b..324649248a2fd5 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 vB","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","4":"wB jB xB yB","132":"I l J D E F A B C K L G M N O m n"},D:{"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"I l J D E F A B C K L G M N O","132":"m n o p"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","4":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","4":"F B C AC BC CC DC hB tB EC","132":"iB"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","4":"pB FC uB GC"},H:{"132":"ZC"},I:{"1":"H eC fC","4":"jB aC bC cC","132":"dC uB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C hB tB","132":"iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"ECMAScript 5"}; +module.exports={A:{A:{"1":"A B","2":"J D xB","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","4":"yB lB zB 0B","132":"I m J D E F A B C K L G M N O n o"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I m J D E F A B C K L G M N O","132":"n o p q"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","4":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"qB HC wB IC"},H:{"132":"bC"},I:{"1":"H gC hC","4":"lB cC dC eC","132":"fC wB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 24ac0760a38f1f..a68d5557e323b8 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","132":"9 AB BB CB DB EB FB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v AC BC CC DC hB tB EC iB","132":"0 1 2 w x y z"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"ES6 classes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB","132":"0 1 2 3 x y z"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 9a57f9da3b93bb..a6d6e12a89afab 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s xB yB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"ES6 Generators"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 c22cfed5914d05..f0776dc0362229 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB xB yB","194":"UB"},D:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"JavaScript modules: dynamic import()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B","194":"VB"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 e1afec247b6d03..241eb35ab9acf2 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB xB yB","322":"LB MB NB OB PB kB"},D:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB","194":"QB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B","3076":"qB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB AC BC CC DC hB tB EC iB","194":"EB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC","3076":"NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"JavaScript modules via script tag"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B","322":"MB NB OB PB QB mB"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","194":"RB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","3076":"rB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","194":"FB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","3076":"PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 de6b12983e0848..76d6fa1ac3842f 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G xB yB","132":"M N O m n o p q r","260":"s t u v w x","516":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O","1028":"0 m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","1028":"G M N O m n"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC","1028":"dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"ES6 Number"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G zB 0B","132":"M N O n o p q r s","260":"t u v w x y","516":"z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O","1028":"0 1 n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","1028":"G M N O n o"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC","1028":"fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 48ac132f8fa913..d403293fb4689a 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"String.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 0bed9773ae72d7..47e6dcca178ea4 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 vB","388":"B"},B:{"257":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L","769":"G M N O"},C:{"2":"wB jB I l xB yB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","257":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"I l J D E F A B C K L G M N O m n","4":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB","257":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B","4":"E F 3B 4B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","4":"0 1 2 3 4 G M N O m n o p q r s t u v w x y z","257":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC","4":"E IC JC KC LC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","4":"eC fC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C hB tB iB","257":"Y"},L:{"257":"H"},M:{"257":"X"},N:{"2":"A","388":"B"},O:{"257":"gC"},P:{"4":"I","257":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"257":"sC"},R:{"4":"tC"},S:{"4":"uC"}},B:6,C:"ECMAScript 2015 (ES6)"}; +module.exports={A:{A:{"2":"J D E F A xB","388":"B"},B:{"257":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L","769":"G M N O"},C:{"2":"yB lB I m zB 0B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N O n o","4":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","257":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","4":"E F 6B 7B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","4":"0 1 2 3 4 5 G M N O n o p q r s t u v w x y z","257":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","4":"E KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","4":"gC hC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C iB vB jB","257":"Y"},L:{"257":"X"},M:{"257":"H"},N:{"2":"A","388":"B"},O:{"257":"iC"},P:{"4":"I","257":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"257":"uC"},R:{"4":"vC"},S:{"4":"wC"}},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 4219b9939c477d..ddadc28034c8b0 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB"},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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","4":"F AC BC CC DC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"D A"},K:{"1":"C Y hB tB iB","4":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Server-sent events"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","4":"F CC DC EC FC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"C Y iB vB jB","4":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 8d3dd8f2e52939..9ea0ac17783584 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 9a85c9ae0678ee..54a8fd9bb10893 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 vB"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB xB yB","260":"cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"cB dB eB fB gB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB","132":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB","1025":"Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB","772":"C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB AC BC CC DC hB tB EC iB","132":"EB FB GB HB IB JB KB LB MB NB OB PB QB","1025":"dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC","772":"PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1025":"H"},M:{"260":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"mC nC oC pC qC rC","2":"I hC iC jC","132":"kC lC qB"},Q:{"132":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Feature Policy"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB zB 0B","260":"dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"dB eB fB gB hB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","132":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","1025":"Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","772":"C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","132":"FB GB HB IB JB KB LB MB NB OB PB QB RB","1025":"eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC","772":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1025":"X"},M:{"260":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC","132":"mC nC rB"},Q:{"132":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 0eebe9b2851f2f..4af0aac6cf8b73 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","1025":"6","1218":"1 2 3 4 5"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","260":"7","772":"8"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t AC BC CC DC hB tB EC iB","260":"u","772":"v"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Fetch"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1025":"7","1218":"2 3 4 5 6"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","260":"8","772":"9"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","260":"v","772":"w"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 4408633c0e92bd..886723cca658b1 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":"vB","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 Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G","16":"M N O m"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","16":"F AC"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC"},H:{"388":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A","260":"B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"disabled attribute of the fieldset element"}; +module.exports={A:{A:{"16":"xB","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 Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","16":"M N O n"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"388":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 f0b7d259ebde10..2c2d3040463391 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 vB","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB","260":"I l J D E F A B C K L G M N O m n o p q r s t u yB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l","260":"0 1 2 3 4 K L G M N O m n o p 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 qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB","260":"J D E F 2B 3B 4B","388":"1B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B AC BC CC DC","260":"C G M N O m n o p q r hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","260":"E HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H fC","2":"aC bC cC","260":"eC","388":"jB I dC uB"},J:{"260":"A","388":"D"},K:{"1":"Y","2":"A B","260":"C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","260":"B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"File API"}; +module.exports={A:{A:{"2":"J D E F xB","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","260":"I m J D E F A B C K L G M N O n o p q r s t u v 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","260":"0 1 2 3 4 5 K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","260":"J D E F 5B 6B 7B","388":"4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC","260":"C G M N O n o p q r s iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","260":"E JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H hC","2":"cC dC eC","260":"gC","388":"lB I fC wB"},J:{"260":"A","388":"D"},K:{"1":"Y","2":"A B","260":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 a91132c83b8e69..5e329939743c0a 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 vB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB xB"},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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F B AC BC CC DC"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"C Y hB tB iB","2":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"FileReader API"}; +module.exports={A:{A:{"2":"J D E F xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F B CC DC EC FC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"C Y iB vB jB","2":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2c4adbf28088e1..e501a51e1cbda5 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F AC BC","16":"B CC DC hB tB"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"C Y tB iB","2":"A","16":"B hB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"FileReaderSync"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC","16":"B EC FC iB vB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"C Y vB jB","2":"A","16":"B iB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 a185fc568eb74b..3043ab96e87978 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 vB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"I l J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","36":"E F A B C"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D","33":"A"},K:{"2":"A B C Y hB tB iB"},L:{"33":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I","33":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Filesystem & FileWriter API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"I m J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"E F A B C"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","33":"A"},K:{"2":"A B C Y iB vB jB"},L:{"33":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","33":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f26bb858a8df9d..8c4c2a7b8c683c 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB"},D:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB","16":"BB CB DB","388":"EB FB GB HB IB JB KB LB MB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","516":"B C hB iB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"aC bC cC","16":"jB I dC uB eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y iB","16":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","129":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:6,C:"FLAC audio format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB","16":"CB DB EB","388":"FB GB HB IB JB KB LB MB NB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","516":"B C iB jB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","16":"lB I fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","16":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","129":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 7f8b1d1637a025..078793524e0c4c 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 vB"},B:{"1":"T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O P Q R S"},C:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB xB yB"},D:{"1":"T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S"},E:{"1":"G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B"},F:{"1":"bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB AC BC CC DC hB tB EC iB"},G:{"1":"XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"gap property for Flexbox"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 78eaa9ea9baf5b..2cf83b8f5cf755 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 vB","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","164":"wB jB I l J D E F A B C K L G M N O m n o xB yB","516":"p q r s t u"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"o p q r s t u v","164":"I l J D E F A B C K L G M N O m n"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","33":"D E 2B 3B","164":"I l J 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B C AC BC CC DC hB tB EC","33":"G M"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","33":"E IC JC","164":"pB FC uB GC HC"},H:{"1":"ZC"},I:{"1":"H eC fC","164":"jB I aC bC cC dC uB"},J:{"1":"A","164":"D"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","292":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS Flexible Box Layout Module"}; +module.exports={A:{A:{"2":"J D E F xB","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","164":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","516":"q r s t u v"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"p q r s t u v w","164":"I m J D E F A B C K L G M N O n o"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"D E 5B 6B","164":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC","33":"G M"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E KC LC","164":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","164":"lB I cC dC eC fC wB"},J:{"1":"A","164":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","292":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2428911551bd5d..c849e37c7bc654 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB"},D:{"1":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB iB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB AC BC CC DC hB tB EC iB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"display: flow-root"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B"},D:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 0048fd7448d9e1..4e21aa80c1010d 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F AC BC CC DC","16":"B hB tB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"I H dC uB eC fC","2":"aC bC cC","16":"jB"},J:{"1":"D A"},K:{"1":"C Y iB","2":"A","16":"B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"focusin & focusout events"}; +module.exports={A:{A:{"1":"J D E F A B","2":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC EC FC","16":"B iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","2":"cC dC eC","16":"lB"},J:{"1":"D A"},K:{"1":"C Y jB","2":"A","16":"B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"focusin & focusout events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js index a3d11dbf59d8da..ca7b7eb31567bc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"preventScroll support in focus"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"preventScroll support in focus"}; 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 4d1275d9fe1a78..30bec34daccdc0 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c"},D:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","260":"KB LB MB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B","16":"F","132":"A 4B qB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC","132":"KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"132":"uC"}},B:5,C:"system-ui value for font-family"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B","132":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","260":"LB MB NB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","16":"F","132":"A 7B rB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","132":"MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"132":"wC"}},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 afa4d7e86ae168..a2f069e825316e 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","33":"0 G M N O m n o p q r s t u v w x y z","164":"I l J D E F A B C K L"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB","292":"M N O m n"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"D E F 0B pB 2B 3B","4":"I l J 1B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 G M N O m n o p q r s t u v w x y z"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E IC JC KC","4":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB","33":"eC fC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","33":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS font-feature-settings"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"0 1 G M N O n o p q r s t u v w x y z","164":"I m J D E F A B C K L"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB","292":"M N O n o"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"D E F 3B qB 5B 6B","4":"I m J 4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 G M N O n o p q r s t u v w x y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E KC LC MC","4":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 7d4e996330399d..494338b54bf08a 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q xB yB","194":"0 r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v","33":"w x y z"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B","33":"D E F 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G AC BC CC DC hB tB EC iB","33":"M N O m"},G:{"1":"QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC","33":"E JC KC LC MC NC OC PC"},H:{"2":"ZC"},I:{"1":"H fC","2":"jB I aC bC cC dC uB","33":"eC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 font-kerning"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","194":"0 1 s t 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w","33":"0 x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B","33":"D E F 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G CC DC EC FC iB vB GC jB","33":"M N O n"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","33":"E LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB","33":"gC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 4b16796b15b684..55d330ffb479d4 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","194":"2 3 4 5 6 7"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS Font Loading"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"3 4 5 6 7 8"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS Font Loading"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js index 29f158d7452678..3fb361ccb26ff1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U","194":"V"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"@font-face metrics overrides"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U","194":"V"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"@font-face metrics overrides"}; 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 14889d97ba0c84..7423f069f66bc5 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 vB"},B:{"2":"C K L G M N O","194":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","194":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C G M N O m n o p q r s t u v w AC BC CC DC hB tB EC iB","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 OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"258":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"194":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"CSS font-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","194":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","194":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"258":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"194":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,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 22a681622f208f..badb06feb2ad42 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 vB"},B:{"2":"C K L G M N O","676":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r xB yB","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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"0B pB","676":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","676":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"804":"uC"}},B:7,C:"CSS font-smooth"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","676":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B","804":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","676":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","676":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"804":"wC"}},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 af79d18d55423d..bbefbb5c25839b 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 vB","4":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","4":"C K L G M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","194":"3 4 5 6 7 8 9 AB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","4":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","4":"G M N O m n o p"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","4":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","4":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","4":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","4":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:4,C:"Font unicode-range subsetting"}; +module.exports={A:{A:{"2":"J D E xB","4":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"4 5 6 7 8 9 AB BB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","4":"G M N O n o p q"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","4":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","4":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","4":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 f4df48b59bb6ce..065db2130004db 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 vB","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","130":"I l J D E F A B C K L G M N O m n o p q","322":"0 r s t u v w x y z"},D:{"2":"I l J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"D E F 0B pB 2B 3B","130":"I l J 1B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","130":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB IC JC KC","130":"FC uB GC HC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","130":"H eC fC"},J:{"2":"D","130":"A"},K:{"2":"A B C hB tB iB","130":"Y"},L:{"130":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"130":"gC"},P:{"130":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"130":"sC"},R:{"130":"tC"},S:{"1":"uC"}},B:5,C:"CSS font-variant-alternates"}; +module.exports={A:{A:{"2":"J D E F xB","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","130":"I m J D E F A B C K L G M N O n o p q r","322":"0 1 s t u v w x y z"},D:{"2":"I m J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"D E F 3B qB 5B 6B","130":"I m J 4B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","130":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB KC LC MC","130":"HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","130":"H gC hC"},J:{"2":"D","130":"A"},K:{"2":"A B C iB vB jB","130":"Y"},L:{"130":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"130":"iC"},P:{"130":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"130":"uC"},R:{"130":"vC"},S:{"1":"wC"}},B:5,C:"CSS font-variant-alternates"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js index 0909a6b5152e32..ebc653c74b19e3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q xB yB","132":"0 r s t u v w x y z"},D:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB AC BC CC DC hB tB EC iB"},G:{"2":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:4,C:"CSS font-variant-east-asian "}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","132":"0 1 s t u v w x y z"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"2":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:4,C:"CSS font-variant-east-asian "}; 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 b9c2896e1e6b59..54c52e8d15d7f8 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:2,C:"CSS font-variant-numeric"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 678336636c56ca..efaff8e1b8cecc 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","2":"F AC"},G:{"1":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","260":"pB FC"},H:{"2":"ZC"},I:{"1":"I H dC uB eC fC","2":"aC","4":"jB bC cC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"@font-face Web fonts"}; +module.exports={A:{A:{"1":"F A B","132":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F CC"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","260":"qB HC"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","2":"cC","4":"lB dC eC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 a78b8bacecaed8..caad2d5d2b9cad 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"1":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Form attribute"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 09e748930fbb8d..3c8a59a6eaa358 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","2":"F AC","16":"BC CC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"1":"ZC"},I:{"1":"I H dC uB eC fC","2":"aC bC cC","16":"jB"},J:{"1":"A","2":"D"},K:{"1":"B C Y hB tB iB","16":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Attributes for form submission"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC","16":"DC EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","2":"cC dC eC","16":"lB"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","16":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5d23a016aac606..d15c1bae67feb9 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","132":"l J D E F A 1B 2B 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","2":"F AC"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB","132":"E FC uB GC HC IC JC KC LC MC"},H:{"516":"ZC"},I:{"1":"H fC","2":"jB aC bC cC","132":"I dC uB eC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"132":"uC"}},B:1,C:"Form validation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m J D E F A 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F CC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","132":"E HC wB IC JC KC LC MC NC OC"},H:{"516":"bC"},I:{"1":"H hC","2":"lB cC dC eC","132":"I fC wB gC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},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 bb2acbc2388f68..6438ea1818be06 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":"vB","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"wB jB xB yB"},D:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB"},E:{"4":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"0B pB"},F:{"1":"F B C JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","4":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},G:{"2":"pB","4":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB","4":"eC fC"},J:{"2":"D","4":"A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"4":"X"},N:{"4":"A B"},O:{"1":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","4":"I hC iC jC"},Q:{"1":"sC"},R:{"4":"tC"},S:{"4":"uC"}},B:1,C:"HTML5 form features"}; +module.exports={A:{A:{"2":"xB","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"4":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"F B C KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","4":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"2":"qB","4":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","4":"gC hC"},J:{"2":"D","4":"A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"4":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","4":"I jC kC lC"},Q:{"1":"uC"},R:{"4":"vC"},S:{"4":"wC"}},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 2e93449604ce38..71a755521b7f3c 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 vB","548":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","516":"C K L G M N O"},C:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F xB yB","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB","1700":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB"},D:{"1":"ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L","676":"G M N O m","804":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB"},E:{"2":"I l 0B pB","548":"sB 8B 9B","676":"1B","804":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B C AC BC CC DC hB tB EC","804":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC","2052":"QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D","292":"A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","548":"B"},O:{"804":"gC"},P:{"1":"qB mC nC oC pC qC rC","804":"I hC iC jC kC lC"},Q:{"804":"sC"},R:{"804":"tC"},S:{"1":"uC"}},B:1,C:"Full Screen API"}; +module.exports={A:{A:{"2":"J D E F A xB","548":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","516":"C K L G M N O"},C:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB","1700":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB"},D:{"1":"aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L","676":"G M N O n","804":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB"},E:{"2":"I m 3B qB","548":"tB uB kB BC","676":"4B","804":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC","804":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","2052":"SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","292":"A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","548":"B"},O:{"804":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","804":"I jC kC lC mC nC"},Q:{"804":"uC"},R:{"804":"vC"},S:{"1":"wC"}},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 d4e94bcef8f848..74cde09706fff3 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n","33":"o p q r"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"Gamepad API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o","33":"p q r s"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 2b8ec02523ee51..18413a5bf690a9 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":"vB","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB xB yB","8":"wB jB","129":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB","4":"I","129":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"I 0B pB","129":"A"},F:{"1":"0 1 2 3 4 5 B C M N O m n o p q r s t u v w x y z DC hB tB EC iB","2":"F G AC","8":"BC CC","129":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"E pB FC uB GC HC IC JC KC LC","129":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I aC bC cC dC uB eC fC","129":"H"},J:{"1":"D A"},K:{"1":"B C hB tB iB","8":"A","129":"Y"},L:{"129":"H"},M:{"129":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I","129":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"129":"sC"},R:{"129":"tC"},S:{"1":"uC"}},B:2,C:"Geolocation"}; +module.exports={A:{A:{"1":"F A B","2":"xB","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB zB 0B","8":"yB lB","129":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","4":"I","129":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I 3B qB","129":"A"},F:{"1":"0 1 2 3 4 5 6 B C M N O n o p q r s t u v w x y z FC iB vB GC jB","2":"F G CC","8":"DC EC","129":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E qB HC wB IC JC KC LC MC NC","129":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I cC dC eC fC wB gC hC","129":"H"},J:{"1":"D A"},K:{"1":"B C iB vB jB","8":"A","129":"Y"},L:{"129":"X"},M:{"129":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I","129":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"129":"uC"},R:{"129":"vC"},S:{"1":"wC"}},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 2048ab34b1bd77..c202ad1a16f340 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 vB","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB","260":"I l J D E F A B","1156":"jB","1284":"xB","1796":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","16":"F AC","132":"BC CC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","132":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2049":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Element.getBoundingClientRect()"}; +module.exports={A:{A:{"644":"J D xB","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","260":"I m J D E F A B","1156":"lB","1284":"zB","1796":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","16":"F CC","132":"DC EC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","132":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2049":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 63b1388b498113..9517e3be112da0 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB","132":"jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","260":"I l J D E F A"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","260":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","260":"F AC BC CC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","260":"pB FC uB"},H:{"260":"ZC"},I:{"1":"I H dC uB eC fC","260":"jB aC bC cC"},J:{"1":"A","260":"D"},K:{"1":"B C Y hB tB iB","260":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"getComputedStyle"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","132":"lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","260":"I m J D E F A"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","260":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","260":"F CC DC EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","260":"qB HC wB"},H:{"260":"bC"},I:{"1":"I H fC wB gC hC","260":"lB cC dC eC"},J:{"1":"A","260":"D"},K:{"1":"B C Y iB vB jB","260":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 66f99a7c200344..89ffd4121a9014 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":"vB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","8":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"getElementsByClassName"}; +module.exports={A:{A:{"1":"F A B","2":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 580152132230cf..f64da55e29a81b 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 vB","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","33":"B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"crypto.getRandomValues()"}; +module.exports={A:{A:{"2":"J D E F A xB","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","33":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e379bcdcb7f745..437b5bb34c3e6a 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y TB UB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"Gyroscope"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 69d8b839570b75..4decab5ae1e703 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB xB yB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"2":"I l J D 0B pB 1B 2B 3B","129":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","194":"E F A 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB"},G:{"2":"pB FC uB GC HC IC","129":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","194":"E JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"navigator.hardwareConcurrency"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D 3B qB 4B 5B 6B","129":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","194":"E F A 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC JC KC","129":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","194":"E LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 014c380ac4ca8f..eec470e0c2c4ba 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","8":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"I"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","8":"F AC BC CC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"2":"ZC"},I:{"1":"jB I H bC cC dC uB eC fC","2":"aC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","8":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Hashchange event"}; +module.exports={A:{A:{"1":"E F A B","8":"J D xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","8":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","8":"F CC DC EC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","2":"cC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","8":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 4974489e855197..b8dc2746f42869 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","130":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC","130":"OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"HEIF/ISO Base Media File Format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","130":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","130":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 118cba51eea4ec..ec935356d4ca1a 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 vB","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","516":"B C hB iB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","258":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","258":"Y"},L:{"258":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I","258":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"HEVC/H.265 video format"}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","516":"B C iB jB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","258":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","258":"Y"},L:{"258":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","258":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 2f584c1b9f5873..186f95bcd6df26 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F B AC BC CC DC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"1":"ZC"},I:{"1":"I H dC uB eC fC","2":"jB aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"C Y hB tB iB","2":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"hidden attribute"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F B CC DC EC FC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","2":"lB cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"C Y iB vB jB","2":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2d59feaad3a94e..7a805b16531466 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m","33":"n o p q"},E:{"1":"E F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"High Resolution Time API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n","33":"o p q r"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 b297a4fa358f3d..36f2271d354d8e 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","4":"l 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W tB EC iB","2":"F B AC BC CC DC hB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC","4":"uB"},H:{"2":"ZC"},I:{"1":"H bC cC uB eC fC","2":"jB I aC dC"},J:{"1":"D A"},K:{"1":"C Y hB tB iB","2":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Session history management"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","4":"m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W vB GC jB","2":"F B CC DC EC FC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","4":"wB"},H:{"2":"bC"},I:{"1":"H dC eC wB gC hC","2":"lB I cC fC"},J:{"1":"D A"},K:{"1":"C Y iB vB jB","2":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 eade0a9f2f8062..8336888fad949a 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"pB FC uB GC","129":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC","257":"bC cC"},J:{"1":"A","16":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"516":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"16":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:4,C:"HTML Media Capture"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC","129":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC","257":"dC eC"},J:{"1":"A","16":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"516":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:4,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 f7d16a103e667f..c4521ec989db4a 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":"vB","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 Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB","132":"jB xB yB","260":"I l J D E F A B C K L G M N O m n"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l","260":"J D E F A B C K L G M N O m n o p q r s"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","132":"I 0B pB","260":"l J 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","132":"F B AC BC CC DC","260":"C hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","132":"pB","260":"FC uB GC HC"},H:{"132":"ZC"},I:{"1":"H eC fC","132":"aC","260":"jB I bC cC dC uB"},J:{"260":"D A"},K:{"1":"Y","132":"A","260":"B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"HTML5 semantic elements"}; +module.exports={A:{A:{"2":"xB","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 Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","132":"lB zB 0B","260":"I m J D E F A B C K L G M N O n o"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m","260":"J D E F A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"I 3B qB","260":"m J 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","132":"F B CC DC EC FC","260":"C iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB","260":"HC wB IC JC"},H:{"132":"bC"},I:{"1":"H gC hC","132":"cC","260":"lB I dC eC fC wB"},J:{"260":"D A"},K:{"1":"Y","132":"A","260":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 f728f009c8ba47..2e98f3fd17bc70 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 vB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:7,C:"HTTP Live Streaming (HLS)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 0289d2e51c708b..7696922530bf6f 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 vB","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB","2":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","513":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB","2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","513":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B","260":"F A 4B qB"},F:{"1":"0 1 2 3 4 v w x y z","2":"F B C G M N O m n o p q r s t u AC BC CC DC hB tB EC iB","513":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","513":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","513":"Y"},L:{"513":"H"},M:{"513":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I","513":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"513":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"HTTP/2 protocol"}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","513":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","513":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","260":"F A 7B rB"},F:{"1":"0 1 2 3 4 5 w x y z","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB","513":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","513":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","513":"Y"},L:{"513":"X"},M:{"513":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I","513":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"513":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1e7271411f8005..601fd76956719f 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 vB"},B:{"1":"W Z a b c d e f g h i j k X H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB xB yB","194":"aB bB cB dB eB fB gB P Q R mB S T U V W"},D:{"1":"W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","322":"P Q R S T","578":"U V"},E:{"2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB 5B","1090":"L G 6B 7B rB sB 8B 9B"},F:{"1":"cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB AC BC CC DC hB tB EC iB","578":"bB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC","66":"WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"HTTP/3 protocol"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"W Z a b c d e f g h i j k l H X","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB zB 0B","194":"bB cB dB eB fB gB hB P Q R oB S T U V W"},D:{"1":"W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","322":"P Q R S T","578":"U V"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","1090":"L G 9B AC sB tB uB kB BC"},F:{"1":"dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","578":"cB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","66":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 b0c819a26e49e7..7841905eb31828 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M xB yB","4":"N O m n o p q r s t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC"},H:{"2":"ZC"},I:{"1":"jB I H bC cC dC uB eC fC","2":"aC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"sandbox attribute for iframes"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","4":"N O n o p q r s t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","2":"cC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 a722f14da410fa..e2852a5f4652c4 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","66":"n o p q r s t"},E:{"2":"I l J E F A B C K L G 0B pB 1B 2B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","130":"D 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","130":"IC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"seamless attribute for iframes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"o p q r s t u"},E:{"2":"I m J E F A B C K L G 3B qB 4B 5B 7B rB iB jB 8B 9B AC sB tB uB kB BC","130":"D 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","130":"KC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 c898c0fd2269a8..1fcc35544ae7ed 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":"vB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","8":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB","8":"jB I l J D E F A B C K L G M N O m n o p q r xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K","8":"L G M N O m"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB","8":"I l 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B AC BC CC DC","8":"C hB tB EC iB"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB","8":"FC uB GC"},H:{"2":"ZC"},I:{"1":"H eC fC","8":"jB I aC bC cC dC uB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A B","8":"C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"srcdoc attribute for iframes"}; +module.exports={A:{A:{"2":"xB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","8":"lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","8":"L G M N O n"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB","8":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC","8":"C iB vB GC jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","8":"HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","8":"lB I cC dC eC fC wB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A B","8":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5cd6fa0b1de08d..ea70edf91e6141 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 vB"},B:{"2":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","322":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","322":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"322":"sC"},R:{"1":"tC"},S:{"194":"uC"}},B:5,C:"ImageCapture API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","322":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"322":"uC"},R:{"1":"vC"},S:{"194":"wC"}},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 c8969b2121f27e..2efd4246d6f0b6 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 vB","161":"B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k X H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A","161":"B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Input Method Editor API"}; +module.exports={A:{A:{"2":"J D E F A xB","161":"B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A","161":"B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 1afb64a6b2253c..0617f8c7c166ee 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 858fd519870053..716815ab4037e2 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 vB"},B:{"1":"a b c d e f g h i j k X H","2":"C K L G M N O","194":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H xB yB","322":"nB oB"},D:{"1":"a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB","194":"cB dB eB fB gB P Q R S T U V W Z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB AC BC CC DC hB tB EC iB","194":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qC rC","2":"I hC iC jC kC lC qB mC nC oC pC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Import maps"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","194":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","322":"X pB"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","194":"dB eB fB gB hB P Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","194":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 a64cde79dc2cce..dbf3e7b94092e6 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 vB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k X H","8":"C K L G M N O"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w xB yB","8":"x y NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","72":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","66":"0 1 x y z","72":"2"},E:{"2":"I l 0B pB 1B","8":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB UB","2":"F B C G M VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","66":"N O m n o","72":"p"},G:{"2":"pB FC uB GC HC","8":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"8":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC","2":"oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"HTML Imports"}; +module.exports={A:{A:{"2":"J D E F xB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B","8":"y z OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","72":"0 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":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"0 1 2 y z","72":"3"},E:{"2":"I m 3B qB 4B","8":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB","2":"F B C G M WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"N O n o p","72":"q"},G:{"2":"qB HC wB IC JC","8":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"8":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC","2":"qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 7c8711c7938e06..f675bbe86351dc 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB","16":"xB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB"},G:{"1":"RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"indeterminate checkbox"}; +module.exports={A:{A:{"1":"J D E F A B","16":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB","16":"zB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 776778a504c4f3..f293f03256f968 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 vB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","33":"A B C K L G","36":"I l J D E F"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"A","8":"I l J D E F","33":"q","36":"B C K L G M N O m n o p"},E:{"1":"A B C K L G qB hB iB 5B 7B rB sB 8B 9B","8":"I l J D 0B pB 1B 2B","260":"E F 3B 4B","516":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F AC BC","8":"B C CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC YC rB sB","8":"pB FC uB GC HC IC","260":"E JC KC LC","516":"XC"},H:{"2":"ZC"},I:{"1":"H eC fC","8":"jB I aC bC cC dC uB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A","8":"B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"IndexedDB"}; +module.exports={A:{A:{"2":"J D E F xB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"A B C K L G","36":"I m J D E F"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"A","8":"I m J D E F","33":"r","36":"B C K L G M N O n o p q"},E:{"1":"A B C K L G rB iB jB 8B AC sB tB uB kB BC","8":"I m J D 3B qB 4B 5B","260":"E F 6B 7B","516":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC","8":"B C EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC aC sB tB uB kB","8":"qB HC wB IC JC KC","260":"E LC MC NC","516":"ZC"},H:{"2":"bC"},I:{"1":"H gC hC","8":"lB I cC dC eC fC wB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A","8":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 106da614b06cad..0763fea46f5940 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB xB yB","132":"BB CB DB","260":"EB FB GB HB"},D:{"1":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB","132":"FB GB HB IB","260":"JB KB LB MB NB OB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","132":"2 3 4 5","260":"6 7 8 9 AB BB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC","16":"MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I","260":"hC iC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"260":"uC"}},B:4,C:"IndexedDB 2.0"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B","132":"CB DB EB","260":"FB GB HB IB"},D:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","132":"GB HB IB JB","260":"KB LB MB NB OB PB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"3 4 5 6","260":"7 8 9 AB BB CB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","16":"OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I","260":"jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"260":"wC"}},B:4,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 8d8bb8ba943fb1..7609fed81fd9db 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":"vB","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","36":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS inline-block"}; +module.exports={A:{A:{"1":"E F A B","4":"xB","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","36":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 ab56cb44a3ba18..1fb91addbffb33 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","16":"F"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"HTMLElement.innerText"}; +module.exports={A:{A:{"1":"J D E F A B","16":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 ba17d5726d897c..f4b8480a6d5bc0 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 vB","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w xB yB","516":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"N O m n o p q r s t","2":"I l J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 u v w x y z","260":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"J 1B 2B","2":"I l 0B pB","2052":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"pB FC uB","1025":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1025":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2052":"A B"},O:{"1025":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"260":"sC"},R:{"1":"tC"},S:{"516":"uC"}},B:1,C:"autocomplete attribute: on & off values"}; +module.exports={A:{A:{"1":"J D E F A xB","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B","516":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"N O n o p q r s t u","2":"I m J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 8 v w x y z","260":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J 4B 5B","2":"I m 3B qB","2052":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB","1025":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1025":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2052":"A B"},O:{"1025":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"260":"uC"},R:{"1":"vC"},S:{"516":"wC"}},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 a4493fd29f3faf..c35975da2c19a2 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F G M AC BC CC DC"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC","129":"RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:1,C:"Color input type"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F G M CC DC EC FC"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","129":"TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 254edcbfa71c97..6112d782eb0d6e 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB","1090":"KB LB MB NB","2052":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d","4100":"e f g h i j k X H nB oB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m","2052":"n o p q r"},E:{"2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B","4100":"G 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"pB FC uB","260":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB aC bC cC","514":"I dC uB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2052":"uC"}},B:1,C:"Date and time input types"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","1090":"LB MB NB OB","2052":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d","4100":"e f g h i j k l H X pB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n","2052":"o p q r s"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","4100":"G 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB","260":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","514":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2052":"wC"}},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 66b1c51e204ea0..51802f348a51df 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","132":"aC bC cC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Email, telephone & URL input types"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","132":"cC dC eC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 367f51a13ac3b6..c8229835179c09 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 vB","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2561":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB","1537":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB yB","1796":"jB xB"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L","1025":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB","1537":"0 1 G M N O m n o p q r s t u v w x y z"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","16":"I l J 0B pB","1025":"D E F A B C 2B 3B 4B qB hB","1537":"1B","4097":"K iB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","16":"F B C AC BC CC DC hB tB","260":"EC","1025":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","1537":"G M N O m n o"},G:{"1":"TC UC VC WC XC YC rB sB","16":"pB FC uB","1025":"E JC KC LC MC NC OC PC QC","1537":"GC HC IC","4097":"RC SC"},H:{"2":"ZC"},I:{"16":"aC bC","1025":"H fC","1537":"jB I cC dC uB eC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C hB tB iB","1025":"Y"},L:{"1":"H"},M:{"1537":"X"},N:{"2561":"A B"},O:{"1537":"gC"},P:{"1025":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1025":"sC"},R:{"1025":"tC"},S:{"1537":"uC"}},B:1,C:"input event"}; +module.exports={A:{A:{"2":"J D E xB","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2561":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB","1537":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB 0B","1796":"lB zB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","1025":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB","1537":"0 1 2 G M N O n o p q r s t u v w x y z"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB","1025":"D E F A B C 5B 6B 7B rB iB","1537":"4B","4097":"K jB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","16":"F B C CC DC EC FC iB vB","260":"GC","1025":"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","1537":"G M N O n o p"},G:{"1":"VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","1025":"E LC MC NC OC PC QC RC SC","1537":"IC JC KC","4097":"TC UC"},H:{"2":"bC"},I:{"16":"cC dC","1025":"H hC","1537":"lB I eC fC wB gC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C iB vB jB","1025":"Y"},L:{"1":"X"},M:{"1537":"H"},N:{"2561":"A B"},O:{"1537":"iC"},P:{"1025":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1025":"uC"},R:{"1025":"vC"},S:{"1537":"wC"}},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 68717b1fc6f147..9b89f3a8d74361 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","132":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I","16":"l J D E o p q r s","132":"F A B C K L G M N O m n"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","132":"J D E F A B 2B 3B 4B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"2":"HC IC","132":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","514":"pB FC uB GC"},H:{"2":"ZC"},I:{"2":"aC bC cC","260":"jB I dC uB","514":"H eC fC"},J:{"132":"A","260":"D"},K:{"2":"A B C hB tB iB","514":"Y"},L:{"260":"H"},M:{"2":"X"},N:{"514":"A","1028":"B"},O:{"2":"gC"},P:{"260":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"260":"sC"},R:{"260":"tC"},S:{"1":"uC"}},B:1,C:"accept attribute for file input"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","132":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","16":"m J D E p q r s t","132":"F A B C K L G M N O n o"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","132":"J D E F A B 5B 6B 7B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"JC KC","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","514":"qB HC wB IC"},H:{"2":"bC"},I:{"2":"cC dC eC","260":"lB I fC wB","514":"H gC hC"},J:{"132":"A","260":"D"},K:{"2":"A B C iB vB jB","514":"Y"},L:{"260":"X"},M:{"2":"H"},N:{"514":"A","1028":"B"},O:{"2":"iC"},P:{"260":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"260":"uC"},R:{"260":"vC"},S:{"1":"wC"}},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 40854ab9028553..2f5d1ed182f2af 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Directory selection from file input"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f76d1024a31130..aac020c07da8bc 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","2":"F AC BC CC"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC"},H:{"130":"ZC"},I:{"130":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"130":"A B C Y hB tB iB"},L:{"132":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"130":"gC"},P:{"130":"I","132":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"132":"sC"},R:{"132":"tC"},S:{"2":"uC"}},B:1,C:"Multiple file selection"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC EC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"130":"bC"},I:{"130":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"130":"A B C Y iB vB jB"},L:{"132":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"130":"iC"},P:{"130":"I","132":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"2":"wC"}},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 bbcd25203608c1..db9628ef90b419 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M xB yB","4":"N O m n","194":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","66":"NB OB PB kB QB lB RB SB Y TB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","66":"AB BB CB DB EB FB GB HB IB JB"},G:{"1":"RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","2":"I hC iC jC kC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"194":"uC"}},B:1,C:"inputmode attribute"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","4":"N O n o","194":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","66":"OB PB QB mB RB nB SB TB Y UB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB","66":"BB CB DB EB FB GB HB IB JB KB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},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 8d0e82adad3264..9ffe3767426030 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:1,C:"Minimum length attribute for input fields"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 553b38a982ea42..820bf1512538ab 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 vB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","129":"C K","1025":"L G M N O"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB","513":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"388":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB aC bC cC","388":"I H dC uB eC fC"},J:{"2":"D","388":"A"},K:{"1":"A B C hB tB iB","388":"Y"},L:{"388":"H"},M:{"641":"X"},N:{"388":"A B"},O:{"388":"gC"},P:{"388":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"388":"sC"},R:{"388":"tC"},S:{"513":"uC"}},B:1,C:"Number input type"}; +module.exports={A:{A:{"2":"J D E F xB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K","1025":"L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","513":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"388":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB cC dC eC","388":"I H fC wB gC hC"},J:{"2":"D","388":"A"},K:{"1":"A B C iB vB jB","388":"Y"},L:{"388":"X"},M:{"641":"H"},N:{"388":"A B"},O:{"388":"iC"},P:{"388":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"388":"uC"},R:{"388":"vC"},S:{"513":"wC"}},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 667018d876edb6..de9b231975fc18 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l","388":"J D E F A 1B 2B 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB","388":"E GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H fC","2":"jB I aC bC cC dC uB eC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Pattern attribute for input fields"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","388":"J D E F A 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","388":"E IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5169ead83222c6..bbaae94b0aedc6 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","132":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W tB EC iB","2":"F AC BC CC DC","132":"B hB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB H aC bC cC uB eC fC","4":"I dC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"input placeholder attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W vB GC jB","2":"F CC DC EC FC","132":"B iB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB H cC dC eC wB gC hC","4":"I fC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2586bdba75ec2f..c3eed3bea56856 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"H uB eC fC","4":"jB I aC bC cC dC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Range input type"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H wB gC hC","4":"lB I cC dC eC fC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 3f192459b87d40..43bc971f60fc05 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 vB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","129":"C K L G M N O"},C:{"2":"wB jB xB yB","129":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L o p q r s","129":"G M N O m n"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F AC BC CC DC","16":"B hB tB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"129":"ZC"},I:{"1":"H eC fC","16":"aC bC","129":"jB I cC dC uB"},J:{"1":"D","129":"A"},K:{"1":"C Y","2":"A","16":"B hB tB","129":"iB"},L:{"1":"H"},M:{"129":"X"},N:{"129":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"129":"uC"}},B:1,C:"Search input type"}; +module.exports={A:{A:{"2":"J D E F xB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M N O"},C:{"2":"yB lB zB 0B","129":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L p q r s t","129":"G M N O n o"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC EC FC","16":"B iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"129":"bC"},I:{"1":"H gC hC","16":"cC dC","129":"lB I eC fC wB"},J:{"1":"D","129":"A"},K:{"1":"C Y","2":"A","16":"B iB vB","129":"jB"},L:{"1":"X"},M:{"129":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"129":"wC"}},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 ee2164b358cc3b..72e913518aa894 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","16":"F AC BC CC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Selection controls for input & textarea"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","16":"F CC DC EC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 46c8709f042b1c..cb98807fe851e7 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","16":"F"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 31cb9da22e5d22..ebb9c4b02e93b8 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":"vB","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","16":"F AC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Element.insertAdjacentHTML()"}; +module.exports={A:{A:{"1":"A B","16":"xB","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 bc0c4619f7822c..8347195e08f5c9 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:6,C:"Internationalization API"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 3405c45ddf83b0..ebfedc8731ae04 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"mC nC oC pC qC rC","2":"I hC iC jC kC lC qB"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"IntersectionObserver V2"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 1c7392056628c4..75d87392a27499 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 vB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB","194":"JB KB LB"},D:{"1":"PB kB QB lB RB SB Y","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","516":"IB JB KB LB MB NB OB","1025":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","2":"0 1 2 3 4 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","516":"5 6 7 8 9 AB BB","1025":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","1025":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"516":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I","516":"hC iC"},Q:{"1025":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"IntersectionObserver"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B","194":"KB LB MB"},D:{"1":"QB mB RB nB SB TB Y","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","516":"JB KB LB MB NB OB PB","1025":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","516":"6 7 8 9 AB BB CB","1025":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","1025":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"516":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I","516":"jC kC"},Q:{"1025":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 1e57a158102280..7f464ba65a4df9 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N","130":"O"},C:{"1":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB xB yB"},D:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB iB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB AC BC CC DC hB tB EC iB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Intl.PluralRules API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N","130":"O"},C:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB zB 0B"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 a06ffd50e96212..5fa676a4c1eef6 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 vB"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB","932":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB xB yB","2308":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"I l J D E F A B C K L G M N O m n o","545":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB","1537":"DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J 0B pB 1B","516":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","548":"F A 4B qB","676":"D E 2B 3B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","513":"1","545":"G M N O m n o p q r s t u v w x y z","1537":"0 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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC uB GC HC","516":"WC XC YC rB sB","548":"KC LC MC NC OC PC QC RC SC TC UC VC","676":"E IC JC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","545":"eC fC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C hB tB iB","1537":"Y"},L:{"1537":"H"},M:{"2308":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"545":"I","1537":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"545":"sC"},R:{"1537":"tC"},S:{"932":"uC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB","932":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B","2308":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N O n o p","545":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB","1537":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J 3B qB 4B","516":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","548":"F A 7B rB","676":"D E 5B 6B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","513":"2","545":"0 G M N O n o p q r s t u v w x y z","1537":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC","516":"YC ZC aC sB tB uB kB","548":"MC NC OC PC QC RC SC TC UC VC WC XC","676":"E KC LC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","545":"gC hC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C iB vB jB","1537":"Y"},L:{"1537":"X"},M:{"2308":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"545":"I","1537":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"545":"uC"},R:{"1537":"vC"},S:{"932":"wC"}},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 21f4a2784087a5..01ed68186739c6 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","129":"l 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"JPEG 2000 image format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","129":"m 4B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 43ba7a3baede14..b3308814aba256 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","578":"c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a xB yB","322":"b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b","194":"c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB AC BC CC DC hB tB EC iB","194":"fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"JPEG XL image format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","578":"c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a zB 0B","322":"b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","194":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB CC DC EC FC iB vB GC jB","194":"gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 19efc81c37bfc3..2155af887538c6 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 vB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"JPEG XR image format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 5f98d289719341..806a8a3e194137 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB xB yB"},D:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Lookbehind in JS regular expressions"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB zB 0B"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 aa4afd64891ab9..a2d154fa5c0507 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 vB","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"JSON parsing"}; +module.exports={A:{A:{"1":"F A B","2":"J D xB","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 42d90caa8eee02..4f3ed632e533ff 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G","132":"M N O"},C:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB"},D:{"1":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","132":"OB PB kB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B","132":"qB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB AC BC CC DC hB tB EC iB","132":"BB CB DB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC","132":"NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC","132":"jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"132":"uC"}},B:5,C:"CSS justify-content: space-evenly"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G","132":"M N O"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","132":"PB QB mB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","132":"rB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CC DC EC FC iB vB GC jB","132":"CB DB EB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","132":"PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC","132":"lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"132":"wC"}},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 1614790a927415..8c5d8e9c03d06c 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 vB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"aC bC cC","132":"jB I dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:"High-quality kerning pairs & ligatures"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"cC dC eC","132":"lB I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 cdfbf388a748df..2da223449ed814 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","16":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC","16":"C"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"Y iB","2":"A B hB tB","16":"C"},L:{"1":"H"},M:{"130":"X"},N:{"130":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:"KeyboardEvent.charCode"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","16":"C"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"130":"H"},N:{"130":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e1a59ceabe2d3d..bc486d9985fb65 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","194":"9 AB BB CB DB EB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v AC BC CC DC hB tB EC iB","194":"0 1 w x y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"194":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I","194":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"194":"tC"},S:{"1":"uC"}},B:5,C:"KeyboardEvent.code"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","194":"AB BB CB DB EB FB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB","194":"0 1 2 x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"194":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","194":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"194":"vC"},S:{"1":"wC"}},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 90bab45f906499..f2aa3fa6c9de5c 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B G M AC BC CC DC hB tB EC","16":"C"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y iB","2":"A B hB tB","16":"C"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"KeyboardEvent.getModifierState()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B G M CC DC EC FC iB vB GC","16":"C"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 7db0004522003e..08b5d9a7a94745 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 vB","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p xB yB","132":"q r s t u v"},D:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"0 1 2 3 4 F B G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC","16":"C"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"1":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y iB","2":"A B hB tB","16":"C"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:5,C:"KeyboardEvent.key"}; +module.exports={A:{A:{"2":"J D E xB","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B","132":"r s t u v w"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"0 1 2 3 4 5 F B G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC","16":"C"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 4653cdd8ac55a3..2c8abe190a6e30 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L G M N O m n o p q r s t u v w"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"J 0B pB","132":"I l 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC","16":"C","132":"G M"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB","132":"GC HC IC"},H:{"2":"ZC"},I:{"1":"H eC fC","16":"aC bC","132":"jB I cC dC uB"},J:{"132":"D A"},K:{"1":"Y iB","2":"A B hB tB","16":"C"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"KeyboardEvent.location"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"J 3B qB","132":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","16":"C","132":"G M"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","132":"IC JC KC"},H:{"2":"bC"},I:{"1":"H gC hC","16":"cC dC","132":"lB I eC fC wB"},J:{"132":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 790c8ec3854899..2de3a83a973bbf 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","16":"l"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","16":"F AC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB","16":"aC bC","132":"eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"132":"H"},M:{"132":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"2":"I","132":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"132":"tC"},S:{"1":"uC"}},B:7,C:"KeyboardEvent.which"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB","16":"cC dC","132":"gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"132":"X"},M:{"132":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"2":"I","132":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"132":"vC"},S:{"1":"wC"}},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 20fb4f5cb10e43..f4b1137ed5b065 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 vB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"B","2":"A"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Resource Hints: Lazyload"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 fc74af87f66843..318326b336605c 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 vB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","194":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 m n o p q r s t u v w x y z","516":"8 9 AB BB CB DB EB FB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B","1028":"A qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","322":"G M N O m n o p q r s t u","516":"0 1 2 v w x y z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC","1028":"MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","516":"I"},Q:{"1":"sC"},R:{"516":"tC"},S:{"1":"uC"}},B:6,C:"let"}; +module.exports={A:{A:{"2":"J D E F A xB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","194":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 n o p q r s t u v w x y z","516":"9 AB BB CB DB EB FB GB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","1028":"A rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","322":"G M N O n o p q r s t u v","516":"0 1 2 3 w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","1028":"OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","516":"I"},Q:{"1":"uC"},R:{"516":"vC"},S:{"1":"wC"}},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 18dd01ed4e582a..725f20ea195338 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"QC RC SC TC UC VC WC XC YC rB sB","130":"E pB FC uB GC HC IC JC KC LC MC NC OC PC"},H:{"130":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D","130":"A"},K:{"1":"Y","130":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"130":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"PNG favicons"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","130":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"130":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D","130":"A"},K:{"1":"Y","130":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"130":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1ed08e716545fc..601eb511fb3a91 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 vB"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB xB yB","260":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","513":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","1537":"Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB LB MB NB OB PB QB RB SB Y TB UB AC BC CC DC hB tB EC iB","1537":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"QC RC SC TC UC VC WC XC YC rB sB","130":"E pB FC uB GC HC IC JC KC LC MC NC OC PC"},H:{"130":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D","130":"A"},K:{"2":"Y","130":"A B C hB tB iB"},L:{"1537":"H"},M:{"2":"X"},N:{"130":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC","1537":"oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"513":"uC"}},B:1,C:"SVG favicons"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB zB 0B","260":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","513":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","1537":"Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB MB NB OB PB QB RB SB TB Y UB VB CC DC EC FC iB vB GC jB","1537":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","130":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"130":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","130":"A"},K:{"2":"Y","130":"A B C iB vB jB"},L:{"1537":"X"},M:{"2":"H"},N:{"130":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC","1537":"qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"513":"wC"}},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 79638301784089..4e202836b76774 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 vB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB","260":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"16":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"16":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"16":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"16":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","16":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Resource Hints: dns-prefetch"}; +module.exports={A:{A:{"1":"A B","2":"J D E xB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB","260":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"16":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 8b995a26a66305..a16613dd542018 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","2":"I hC iC jC kC"},Q:{"16":"sC"},R:{"16":"tC"},S:{"2":"uC"}},B:1,C:"Resource Hints: modulepreload"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},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 23615ad1e7272f..32e552a00b1854 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L","260":"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 kB QB lB RB SB Y TB UB VB WB XB YB","2":"0 1 2 3 4 5 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","129":"6"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"16":"X"},N:{"2":"A B"},O:{"16":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Resource Hints: preconnect"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB","2":"0 1 2 3 4 5 6 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","129":"7"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"16":"H"},N:{"2":"A B"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 203b9c556454a6..cca2e111d361f1 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D"},E:{"2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB","194":"L G 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC","194":"VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"I H eC fC","2":"jB aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Resource Hints: prefetch"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","194":"L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","194":"XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"I H gC hC","2":"lB cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 11185dbdc4155a..f7992919be64b9 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M","1028":"N O"},C:{"1":"U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB xB yB","132":"NB","578":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T"},D:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","322":"B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC","322":"OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"Resource Hints: preload"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","1028":"N O"},C:{"1":"U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB zB 0B","132":"OB","578":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T"},D:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","322":"B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","322":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 34cc73c9c2d8d5..4999a660d3904c 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"1":"B","2":"A"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"Resource Hints: prerender"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 9640089484a90b..26248952676ce1 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB xB yB","132":"dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB","66":"dB eB"},E:{"2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB","322":"L G 5B 6B 7B rB","580":"sB 8B 9B"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB AC BC CC DC hB tB EC iB","66":"RB SB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC","322":"VC WC XC YC rB","580":"sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"nC oC pC qC rC","2":"I hC iC jC kC lC qB mC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"Lazy loading via attribute for images & iframes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB zB 0B","132":"eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB","66":"eB fB"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","322":"L G 8B 9B AC sB","580":"tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","66":"SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","322":"XC YC ZC aC sB","580":"tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 6193b2f97b2f03..7d48bc8d534e6b 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":"vB","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","132":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L G M N O m n o p q"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","132":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F B C AC BC CC DC hB tB EC","132":"iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","132":"E pB FC uB GC HC IC JC KC LC"},H:{"132":"ZC"},I:{"1":"H eC fC","132":"jB I aC bC cC dC uB"},J:{"132":"D A"},K:{"1":"Y","16":"A B C hB tB","132":"iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","132":"A"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","132":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"4":"uC"}},B:6,C:"localeCompare()"}; +module.exports={A:{A:{"1":"B","16":"xB","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","132":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"E qB HC wB IC JC KC LC MC NC"},H:{"132":"bC"},I:{"1":"H gC hC","132":"lB I cC dC eC fC wB"},J:{"132":"D A"},K:{"1":"Y","16":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","132":"A"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"4":"wC"}},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 1a8e294d054ae1..1a8ead79f45cec 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y TB UB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"194":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"Magnetometer"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"194":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 3c5ba3c9121a91..bf9908c6817efb 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 vB","36":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","36":"C K L"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB","36":"0 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","36":"0 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","36":"l J D 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B AC BC CC DC hB","36":"C G M N O m n tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB","36":"FC uB GC HC IC"},H:{"2":"ZC"},I:{"1":"H","2":"aC","36":"jB I bC cC dC uB eC fC"},J:{"36":"D A"},K:{"1":"Y","2":"A B","36":"C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"36":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","36":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"matches() DOM method"}; +module.exports={A:{A:{"2":"J D E xB","36":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","36":"C K L"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","36":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","36":"m J D 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC iB","36":"C G M N O n o vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","36":"HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"cC","36":"lB I dC eC fC wB gC hC"},J:{"36":"D A"},K:{"1":"Y","2":"A B","36":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","36":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 3a24f57929d416..456571dea02b0d 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B C AC BC CC DC hB tB EC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"1":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"matchMedia"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 a7c2e4770029ae..08cd61dd0da1a4 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 vB","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h","584":"i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","129":"wB jB xB yB"},D:{"1":"r","8":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h","584":"i j k X H nB oB zB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","260":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"2":"F","4":"B C AC BC CC DC hB tB EC iB","8":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB","584":"S T U V W"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","8":"pB FC uB"},H:{"8":"ZC"},I:{"8":"jB I H aC bC cC dC uB eC fC"},J:{"1":"A","8":"D"},K:{"8":"A B C Y hB tB iB"},L:{"8":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"4":"gC"},P:{"8":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"8":"sC"},R:{"8":"tC"},S:{"1":"uC"}},B:2,C:"MathML"}; +module.exports={A:{A:{"2":"F A B xB","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h","584":"i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","129":"yB lB zB 0B"},D:{"1":"s","8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h","584":"i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","260":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"2":"F","4":"B C CC DC EC FC iB vB GC jB","8":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB","584":"S T U V W"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB"},H:{"8":"bC"},I:{"8":"lB I H cC dC eC fC wB gC hC"},J:{"1":"A","8":"D"},K:{"8":"A B C Y iB vB jB"},L:{"8":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"4":"iC"},P:{"8":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"8":"uC"},R:{"8":"vC"},S:{"1":"wC"}},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 9b9ff9a1c61f08..35c93960439f16 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":"vB","900":"J D E F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","1025":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","900":"wB jB xB yB","1025":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"l 0B","900":"I pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F","132":"B C AC BC CC DC hB tB EC iB"},G:{"1":"FC uB GC HC IC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB","2052":"E JC"},H:{"132":"ZC"},I:{"1":"jB I cC dC uB eC fC","16":"aC bC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C hB tB iB","4097":"Y"},L:{"4097":"H"},M:{"4097":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"4097":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1025":"uC"}},B:1,C:"maxlength attribute for input and textarea elements"}; +module.exports={A:{A:{"1":"A B","16":"xB","900":"J D E F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","1025":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","900":"yB lB zB 0B","1025":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"m 3B","900":"I qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F","132":"B C CC DC EC FC iB vB GC jB"},G:{"1":"HC wB IC JC KC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB","2052":"E LC"},H:{"132":"bC"},I:{"1":"lB I eC fC wB gC hC","16":"cC dC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C iB vB jB","4097":"Y"},L:{"4097":"X"},M:{"4097":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"4097":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1025":"wC"}},B:1,C:"maxlength attribute for input and textarea elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js index 3dabedcc89245c..0bd9ac0f6b1fed 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E vB"},B:{"1":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},D:{"1":"0 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","2":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H","16":"nB oB zB"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB"},F:{"1":"B C G M N O m n o p q r BC CC DC hB tB EC iB","2":"0 1 2 3 4 5 6 7 8 9 F s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"16":"ZC"},I:{"1":"I H dC uB eC fC","16":"jB aC bC cC"},J:{"16":"D A"},K:{"1":"C Y iB","16":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Media attribute"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X","16":"pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"B C G M N O n o p q r s DC EC FC iB vB GC jB","2":"0 1 2 3 4 5 6 7 8 9 F t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"16":"bC"},I:{"1":"I H fC wB gC hC","16":"lB cC dC eC"},J:{"16":"D A"},K:{"1":"C Y jB","16":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Media attribute"}; 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 3b326d75c24777..b4eb2975d7ec61 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 vB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","132":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"I l J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l 0B pB 1B","132":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC uB GC HC IC","132":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","132":"H eC fC"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","132":"Y"},L:{"132":"H"},M:{"132":"X"},N:{"132":"A B"},O:{"2":"gC"},P:{"2":"I hC","132":"iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"132":"uC"}},B:2,C:"Media Fragments"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m 3B qB 4B","132":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC KC","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","132":"H gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"132":"H"},N:{"132":"A B"},O:{"2":"iC"},P:{"2":"I jC","132":"kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"132":"wC"}},B:2,C:"Media Fragments"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js index ae794c58cb5e37..f4c21d12a53e92 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p 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:{"2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB","16":"L G 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Media Session API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","16":"L G 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Media Session API"}; 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 6ce5525e9fab9c..aeca78e78fbdf9 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","324":"IB JB KB LB MB NB OB PB kB QB lB"},E:{"2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","132":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","324":"3 4 5 6 7 8 9 AB BB CB DB EB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"260":"X"},N:{"2":"A B"},O:{"132":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I","132":"hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"260":"uC"}},B:5,C:"Media Capture from DOM Elements API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","324":"JB KB LB MB NB OB PB QB mB RB nB"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","132":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","324":"4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"260":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","132":"jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"260":"wC"}},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 ec2b467115c2df..bdbd9740222f07 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB","194":"EB FB"},E:{"1":"G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB","322":"K L iB 5B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","194":"1 2"},G:{"1":"XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC","578":"QC RC SC TC UC VC WC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:5,C:"MediaRecorder API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB","194":"FB GB"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","322":"K L jB 8B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"2 3"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","578":"SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 280b142c053921..e0d605a9cb9cc0 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 vB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r xB yB","66":"0 1 2 3 4 5 6 7 8 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M","33":"q r s t u v w x","66":"N O m n o p"},E:{"1":"E F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC","260":"SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H fC","2":"jB I aC bC cC dC uB eC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","2":"I hC iC jC kC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Media Source Extensions"}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B","66":"0 1 2 3 4 5 6 7 8 9 t u v w x y z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M","33":"r s t u v w x y","66":"N O n o p q"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC","260":"UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 eb438dbd691771..37dfc4b4d142a5 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D xB yB","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T","450":"U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","66":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 F B C G M N O m n o p q r s t u v w x y z EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","66":"2 3 4 5 6 7 8 9 AB BB CB DB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"450":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Context menu item (menuitem element)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D zB 0B","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T","450":"U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 F B C G M N O n o p q r s t u v w x y z FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"3 4 5 6 7 8 9 AB BB CB DB EB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"450":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 94fe533b75ed40..dcd72781fc51be 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","132":"bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","258":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB"},E:{"1":"G 7B rB sB 8B 9B","2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"513":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I","16":"hC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"theme-color Meta Tag"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","258":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"513":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","16":"jC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 e4d431d2988cf5..dbf713935ee7bd 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F AC BC CC DC"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"meter element"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 612b8d7cb1f137..aaf04295010150 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"Web MIDI API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 79f4e36eafe26a..090e771dc09f46 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 vB","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"CSS min/max-width/height"}; +module.exports={A:{A:{"1":"F A B","8":"J xB","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 caebe6436d6632..20ab1298920f75 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","132":"I l J D E F A B C K L G M N O m n o xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","2":"aC bC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"MP3 audio format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","132":"I m J D E F A B C K L G M N O n o p zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","2":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 3500a4df6df332..57a6850cd70962 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 vB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","386":"o p"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","386":"p q"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 30f9a975744f00..284541f3d12af3 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n xB yB","4":"0 1 o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H eC fC","4":"jB I aC bC dC uB","132":"cC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"260":"X"},N:{"1":"A B"},O:{"4":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"MPEG-4/H.264 video format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o zB 0B","4":"0 1 2 p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","4":"lB I cC dC fC wB","132":"eC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"260":"H"},N:{"1":"A B"},O:{"4":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 471d08e773f23a..b26dbe4443e368 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 Multiple backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 affcd799dd2368..889ba655b273c5 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 vB"},B:{"1":"C K L G M N O","516":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"132":"JB KB LB MB NB OB PB kB QB lB RB SB Y","164":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB","516":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c","1028":"d e f g h i j k X H nB oB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB","516":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","132":"F 4B","164":"D E 3B","420":"I l J 0B pB 1B 2B"},F:{"1":"C hB tB EC iB","2":"F B AC BC CC DC","420":"0 1 2 3 G M N O m n o p q r s t u v w x 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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","132":"KC LC","164":"E IC JC","420":"pB FC uB GC HC"},H:{"1":"ZC"},I:{"420":"jB I aC bC cC dC uB eC fC","516":"H"},J:{"420":"D A"},K:{"1":"C hB tB iB","2":"A B","516":"Y"},L:{"516":"H"},M:{"516":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","420":"I"},Q:{"132":"sC"},R:{"132":"tC"},S:{"164":"uC"}},B:4,C:"CSS3 Multiple column layout"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O","516":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"132":"KB LB MB NB OB PB QB mB RB nB SB TB Y","164":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B","516":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c","1028":"d e f g h i j k l H X pB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","516":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","132":"F 7B","164":"D E 6B","420":"I m J 3B qB 4B 5B"},F:{"1":"C iB vB GC jB","2":"F B CC DC EC FC","420":"0 1 2 3 4 G M N O n o p q r s t u v w x y z","516":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"MC NC","164":"E KC LC","420":"qB HC wB IC JC"},H:{"1":"bC"},I:{"420":"lB I cC dC eC fC wB gC hC","516":"H"},J:{"420":"D A"},K:{"1":"C iB vB jB","2":"A B","516":"Y"},L:{"516":"X"},M:{"516":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","420":"I"},Q:{"132":"uC"},R:{"132":"vC"},S:{"164":"wC"}},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 0df7c21da577d5..05301fd834542f 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 vB","260":"F A B"},B:{"132":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L G M N O"},C:{"2":"wB jB I l xB yB","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"16":"I l J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"16":"0B pB","132":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"C EC iB","2":"F AC BC CC DC","16":"B hB tB","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"16":"pB FC","132":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"16":"aC bC","132":"jB I H cC dC uB eC fC"},J:{"132":"D A"},K:{"1":"C iB","2":"A","16":"B hB tB","132":"Y"},L:{"132":"H"},M:{"260":"X"},N:{"260":"A B"},O:{"132":"gC"},P:{"132":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"132":"sC"},R:{"132":"tC"},S:{"260":"uC"}},B:5,C:"Mutation events"}; +module.exports={A:{A:{"2":"J D E xB","260":"F A B"},B:{"132":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N O"},C:{"2":"yB lB I m zB 0B","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"16":"I m J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"16":"3B qB","132":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"C GC jB","2":"F CC DC EC FC","16":"B iB vB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"16":"qB HC","132":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"cC dC","132":"lB I H eC fC wB gC hC"},J:{"132":"D A"},K:{"1":"C jB","2":"A","16":"B iB vB","132":"Y"},L:{"132":"X"},M:{"260":"H"},N:{"260":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"260":"wC"}},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 ba5e8d9438d518..74db6c464f4fd6 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 vB","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N","33":"O m n o p q r s t"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","33":"HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB aC bC cC","8":"I dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","8":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Mutation Observer"}; +module.exports={A:{A:{"1":"B","2":"J D E xB","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N","33":"O n o p q r s t u"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","8":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","8":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 53364d9ce55d89..7e264382854751 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":"vB","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","4":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Web Storage - name/value pairs"}; +module.exports={A:{A:{"1":"E F A B","2":"xB","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","4":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 6aef553fb0b1e0..3cc0712a17f180 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 vB"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB","194":"cB dB eB fB gB P Q R S T U","260":"V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B","516":"rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB AC BC CC DC hB tB EC iB","194":"RB SB Y TB UB VB WB XB YB ZB","260":"aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","516":"rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"File System Access API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","194":"dB eB fB gB hB P Q R S T U","260":"V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC","516":"sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","194":"SB TB Y UB VB WB XB YB ZB aB","260":"bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","516":"sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f8262841a0ebc7..dbb1defdd5342f 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l","33":"J D E F A B C"},E:{"1":"E F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"I H dC uB eC fC","2":"jB aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Navigation Timing API"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","33":"J D E F A B C"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","2":"lB cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Navigation Timing API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js index 866cad2391e021..dbfe02dc5989a5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y xB yB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"16":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"16":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"16":"sC"},R:{"16":"tC"},S:{"1":"uC"}},B:2,C:"Navigator Language API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"16":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"16":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"1":"wC"}},B:2,C:"Navigator Language 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 b846546a5bdee1..948d39a631d6b3 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 vB"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB","1028":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB AC BC CC DC hB tB EC iB","1028":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"aC eC fC","132":"jB I bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","132":"I","516":"hC iC jC"},Q:{"1":"sC"},R:{"516":"tC"},S:{"260":"uC"}},B:7,C:"Network Information API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB","1028":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB CC DC EC FC iB vB GC jB","1028":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"cC gC hC","132":"lB I dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","132":"I","516":"jC kC lC"},Q:{"1":"uC"},R:{"516":"vC"},S:{"260":"wC"}},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 c3e394a3bff69f..d3026d1c077ec4 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I","36":"l J D E F A B C K L G M N O m n o"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","36":"H eC fC"},J:{"1":"A","2":"D"},K:{"2":"A B C hB tB iB","36":"Y"},L:{"513":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"36":"I","258":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"258":"tC"},S:{"1":"uC"}},B:1,C:"Web Notifications"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},D:{"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","36":"m J D E F A B C K L G M N O n o p"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","36":"H gC hC"},J:{"1":"A","2":"D"},K:{"2":"A B C iB vB jB","36":"Y"},L:{"513":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"36":"I","258":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"258":"vC"},S:{"1":"wC"}},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 b31e0fb9d5298f..f8a089145a3e56 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB"},D:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:6,C:"Object.entries"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 350c3103988d16..e1c22168598a4c 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G","260":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B","132":"E F 3B 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F G M N O AC BC CC","33":"B C DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC","132":"E JC KC LC"},H:{"33":"ZC"},I:{"1":"H fC","2":"jB I aC bC cC dC uB eC"},J:{"2":"D A"},K:{"1":"Y","2":"A","33":"B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 object-fit/object-position"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","132":"E F 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F G M N O CC DC EC","33":"B C FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","132":"E LC MC NC"},H:{"33":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"2":"D A"},K:{"1":"Y","2":"A","33":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e8b62b61d9aaee..8b0165724ed6c9 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 q r s t u v w x y z","2":"4 5 6 7 8 9 F B C G M N O m n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"I","2":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:7,C:"Object.observe data binding"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 r s t u v w x y z","2":"5 6 7 8 9 F B C G M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I","2":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 e0e5b7a504dcfe..e63d0002de2306 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB"},D:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 qB hB iB 5B 6B 7B rB sB 8B 9B","8":"I l J D E F A 0B pB 1B 2B 3B 4B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","8":"0 1 2 3 4 5 6 7 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","8":"E pB FC uB GC HC IC JC KC LC MC"},H:{"8":"ZC"},I:{"1":"H","8":"jB I aC bC cC dC uB eC fC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","8":"I hC"},Q:{"1":"sC"},R:{"8":"tC"},S:{"1":"uC"}},B:6,C:"Object.values method"}; +module.exports={A:{A:{"8":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"E qB HC wB IC JC KC LC MC NC OC"},H:{"8":"bC"},I:{"1":"H","8":"lB I cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","8":"I jC"},Q:{"1":"uC"},R:{"8":"vC"},S:{"1":"wC"}},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 c2cbb2ad9ff02c..2c51fbcb443d45 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 vB"},B:{"1":"K L G M N O","2":"C P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D","130":"A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O","2":"C P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","130":"A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 0be2eb0a4cdba3..5559cb6dee7795 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 vB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S xB yB","2":"T U V W Z a b c d e f g h i j k X H nB oB","4":"jB","8":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T","2":"U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB DC hB tB EC iB","2":"F bB cB dB eB fB gB P Q R mB S T U V W AC","8":"BC CC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I aC bC cC dC uB eC fC","2":"H"},J:{"1":"D A"},K:{"1":"B C hB tB iB","2":"A Y"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:"Offline web applications"}; +module.exports={A:{A:{"1":"A B","2":"F xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S zB 0B","2":"T U V W Z a b c d e f g h i j k l H X pB","4":"lB","8":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","2":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB FC iB vB GC jB","2":"F cB dB eB fB gB hB P Q R oB S T U V W CC","8":"DC EC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I cC dC eC fC wB gC hC","2":"H"},J:{"1":"D A"},K:{"1":"B C iB vB jB","2":"A Y"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 4e004145c1d145..0f2c55f846d172 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB xB yB","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y TB UB VB WB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB AC BC CC DC hB tB EC iB","322":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qB mC nC oC pC qC rC","2":"I hC iC jC kC lC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"194":"uC"}},B:1,C:"OffscreenCanvas"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","322":"QB mB RB nB SB TB Y UB VB WB XB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB CC DC EC FC iB vB GC jB","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"194":"wC"}},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 5370a5643cb7a4..45cc6aef1e0e14 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B","132":"G 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"A","2":"D"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Ogg Vorbis audio format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","132":"G 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 b6cde7655caffa..991ee0d5ddc60c 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 vB","8":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:6,C:"Ogg/Theora video format"}; +module.exports={A:{A:{"2":"J D E xB","8":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 89cc3706ff8e8f..da51beda534bc7 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G","16":"M N O m"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC","16":"C"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Reversed attribute of ordered lists"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","16":"M N O n"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","16":"C"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 9ce6ffe9704702..4eedcfa3a3b29b 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G"},C:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB xB yB"},D:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p 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 qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"\"once\" event listener option"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 2f0d0d525c0f50..50a51dc08e5344 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 vB","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB","516":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC","4":"iB"},G:{"1":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Online/offline status"}; +module.exports={A:{A:{"1":"F A B","2":"J D xB","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB","516":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC","4":"jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 13ca63a5836fb3..a883c868d67ddc 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","132":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC","132":"OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Opus"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","132":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","132":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 066b5ff71256dd..523a70f52555c6 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB lB RB SB Y TB UB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"Orientation Sensor"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 58ff4b7c492bc1..31a95e7d46bed6 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 vB","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC","129":"iB","260":"F B AC BC CC DC hB tB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"C Y iB","260":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"388":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS outline properties"}; +module.exports={A:{A:{"2":"J D xB","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC","129":"jB","260":"F B CC DC EC FC iB vB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"C Y jB","260":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"388":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 f3623d820477ae..d8c9593363fb8f 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB xB yB"},D:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p 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 qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 3a3f98c5094c61..820ad375162966 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"PageTransitionEvent"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 0a2b704b3e7057..7adc9309a68f6a 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F xB yB","33":"A B C K L G M N"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K","33":"L G M N O m n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B C AC BC CC DC hB tB EC","33":"G M N O m"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB","33":"eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","33":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Page Visibility"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B","33":"A B C K L G M N"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","33":"0 L G M N O n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC","33":"G M N O n"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1a963f080422a7..00d53164152c55 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB"},D:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"Passive event listeners"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 48bcf6fb0ea065..45ae3946b2e3cd 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 vB"},B:{"2":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H xB yB","16":"nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H","16":"nB oB zB"},E:{"1":"C K iB","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB hB","16":"L G 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB AC BC CC DC hB tB EC iB","16":"KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C hB tB iB","16":"Y"},L:{"16":"H"},M:{"16":"X"},N:{"2":"A","16":"B"},O:{"16":"gC"},P:{"2":"I hC iC","16":"jC kC lC qB mC nC oC pC qC rC"},Q:{"16":"sC"},R:{"16":"tC"},S:{"2":"uC"}},B:1,C:"Password Rules"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","16":"X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X","16":"pB 1B 2B"},E:{"1":"C K jB","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB iB","16":"L G 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB CC DC EC FC iB vB GC jB","16":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C iB vB jB","16":"Y"},L:{"16":"X"},M:{"16":"H"},N:{"2":"A","16":"B"},O:{"16":"iC"},P:{"2":"I jC kC","16":"lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},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 b3261816298c93..4761e17351155a 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K","132":"L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x xB yB","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B","132":"E F 3B"},F:{"1":"MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p AC BC CC DC hB tB EC iB","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"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC","16":"E","132":"JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"gC"},P:{"1":"qB mC nC oC pC qC rC","132":"I hC iC jC kC lC"},Q:{"132":"sC"},R:{"132":"tC"},S:{"1":"uC"}},B:1,C:"Path2D"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K","132":"L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","132":"E F 6B"},F:{"1":"NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB","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"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","16":"E","132":"LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","132":"I jC kC lC mC nC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"1":"wC"}},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 e1022ec807b874..b13f56533333fd 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB xB yB","4162":"MB NB OB PB kB QB lB RB SB Y TB","16452":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB MB NB OB PB","1090":"kB QB","8196":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B","514":"A B qB","8196":"C hB"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","194":"7 8 9 AB BB CB DB EB","8196":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB"},G:{"1":"RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC","514":"MC NC OC","8196":"PC QC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"2049":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"nC oC pC qC rC","2":"I","8196":"hC iC jC kC lC qB mC"},Q:{"8196":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"Payment Request API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB zB 0B","4162":"NB OB PB QB mB RB nB SB TB Y UB","16452":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB OB PB QB","1090":"mB RB","8196":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","514":"A B rB","8196":"C iB"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"8 9 AB BB CB DB EB FB","8196":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","514":"OC PC QC","8196":"RC SC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"2049":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I","8196":"jC kC lC mC nC rB oC"},Q:{"8196":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,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 31f93ebfa3075a..87f810d5036dac 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 vB","132":"B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Built-in PDF viewer"}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 3949846aab180d..a0543a8e45da66 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB xB yB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:7,C:"Permissions API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB zB 0B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"1":"BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,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 c288cbe1b09990..4cf7bc4a811c62 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 vB"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB xB yB","258":"cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB","258":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB","258":"C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB AC BC CC DC hB tB EC iB","258":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB","322":"aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC","258":"PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","258":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","258":"Y"},L:{"388":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC","258":"kC lC qB mC nC oC pC qC rC"},Q:{"258":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Permissions Policy"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB zB 0B","258":"dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","258":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","258":"C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","258":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB","322":"bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC","258":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","258":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","258":"Y"},L:{"388":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC","258":"mC nC rB oC pC qC rC sC kB tC"},Q:{"258":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 9eb9e29b1cf846..b3dde27bf9f383 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB xB yB","132":"aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","1090":"VB","1412":"ZB","1668":"WB XB YB"},D:{"1":"YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB","2114":"XB"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B","4100":"A B C K qB hB iB"},F:{"1":"bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","8196":"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 Y TB UB VB WB XB YB ZB aB"},G:{"1":"WC XC YC rB sB","2":"E pB FC uB GC HC IC JC","4100":"KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"16388":"H"},M:{"16388":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Picture-in-Picture"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB zB 0B","132":"bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1090":"WB","1412":"aB","1668":"XB YB ZB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB","2114":"YB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","4100":"A B C K rB iB jB"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","8196":"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 Y UB VB WB XB YB ZB aB bB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","4100":"MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"16388":"X"},M:{"16388":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,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 18c819feea8661..33c6ffe37fb7b3 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","578":"1 2 3 4"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","194":"4"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB","322":"r"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Picture element"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","578":"2 3 4 5"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","194":"5"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB","322":"s"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 7852693abf016a..2d0783f4c98a9b 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"2":"wB","194":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"194":"uC"}},B:1,C:"Ping attribute"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"2":"yB","194":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"194":"wC"}},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 8287f68e91d299..9ab4f45589a209 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":"vB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"PNG alpha transparency"}; +module.exports={A:{A:{"1":"D E F A B","2":"xB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 19a80ce12f4877..0f431daeacc200 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:"CSS pointer-events (for HTML)"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 f1510c34d03d11..15076ce8d60285 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 vB","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB","8":"0 1 2 3 4 5 6 7 J D E F A B C K L G M N O m n o p q r s t u v w x y z","328":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o","8":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","584":"JB KB LB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B","8":"D E F A B C 2B 3B 4B qB hB","1096":"iB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","8":"0 1 2 3 4 5 G M N O m n o p q r s t u v w x y z","584":"6 7 8"},G:{"1":"TC UC VC WC XC YC rB sB","8":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC","6148":"SC"},H:{"2":"ZC"},I:{"1":"H","8":"jB I aC bC cC dC uB eC fC"},J:{"8":"D A"},K:{"1":"Y","2":"A","8":"B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","36":"A"},O:{"8":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"hC","8":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"328":"uC"}},B:2,C:"Pointer events"}; +module.exports={A:{A:{"1":"B","2":"J D E F xB","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","8":"0 1 2 3 4 5 6 7 8 J D E F A B C K L G M N O n o p q r s t u v w x y z","328":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p","8":"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","584":"KB LB MB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","8":"D E F A B C 5B 6B 7B rB iB","1096":"jB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","8":"0 1 2 3 4 5 6 G M N O n o p q r s t u v w x y z","584":"7 8 9"},G:{"1":"VC WC XC YC ZC aC sB tB uB kB","8":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC","6148":"UC"},H:{"2":"bC"},I:{"1":"H","8":"lB I cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"1":"Y","2":"A","8":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","36":"A"},O:{"8":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"jC","8":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"328":"wC"}},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 7a401654d8da5e..3f68743e02856b 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K xB yB","33":"0 1 2 3 4 5 6 7 L G M N O m n o p q r s t u 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G","33":"0 1 2 3 p q r s t u v w x y z","66":"M N O m n o"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"G M N O m n o p q"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:2,C:"Pointer Lock API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K zB 0B","33":"0 1 2 3 4 5 6 7 8 L G M N O n o p q r s t u v 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","33":"0 1 2 3 4 q r s t u v w x y z","66":"M N O n o p"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"G M N O n o p q r"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 68fd2911d53ea4..c49adcb028c80a 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 vB"},B:{"2":"C K L G M N O P Q R S T","322":"b c d e f g h i j k X H","450":"U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB","194":"dB eB fB gB P Q R S T","322":"V W Z a b c d e f g h i j k X H nB oB zB","450":"U"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB AC BC CC DC hB tB EC iB","194":"RB SB Y TB UB VB WB XB YB ZB aB","322":"bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"450":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Portals"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T","322":"b c d e f g h i j k l H X","450":"U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB","194":"eB fB gB hB P Q R S T","322":"V W Z a b c d e f g h i j k l H X pB 1B 2B","450":"U"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","194":"SB TB Y UB VB WB XB YB ZB aB bB","322":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"450":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f9afc84a9aa775..7a4ee8d4f064d0 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB xB yB"},D:{"1":"eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB"},F:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB AC BC CC DC hB tB EC iB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"nC oC pC qC rC","2":"I hC iC jC kC lC qB mC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"prefers-color-scheme media query"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB zB 0B"},D:{"1":"fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 d333d3c3e793a8..34555bd711fa59 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB xB yB"},D:{"1":"cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"mC nC oC pC qC rC","2":"I hC iC jC kC lC qB"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"prefers-reduced-motion media query"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B"},D:{"1":"dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"prefers-reduced-motion media query"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js index 483dec2481e602..c53b87f842ad10 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB"},E:{"1":"G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B"},F:{"1":"RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB AC BC CC DC hB tB EC iB"},G:{"1":"XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"mC nC oC pC qC rC","2":"I hC iC jC kC lC qB"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Private class fields"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Private class fields"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js index ca204ab63195ff..e76d2eb88d53e3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O P Q R S"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S"},E:{"1":"G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B"},F:{"1":"YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB AC BC CC DC hB tB EC iB"},G:{"1":"XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Public class fields"}; 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 ef2a3a8e7e72b8..8da41a1d638d89 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F AC BC CC DC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC","132":"IC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"progress element"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","132":"KC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2f9d211ffe7284..78548ef9ea9dee 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 vB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N"},C:{"1":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB xB yB"},D:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Promise.prototype.finally"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N"},C:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB zB 0B"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 bb4c12fb5f08af..d260f7b9bf246b 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","4":"u v","8":"wB jB I l J D E F A B C K L G M N O m n o p q r s t xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"z","8":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"I l J D 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","4":"m","8":"F B C G M N O AC BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","8":"pB FC uB GC HC IC"},H:{"8":"ZC"},I:{"1":"H fC","8":"jB I aC bC cC dC uB eC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Promises"}; +module.exports={A:{A:{"8":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","4":"v w","8":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0","8":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m J D 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","4":"n","8":"F B C G M N O CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB IC JC KC"},H:{"8":"bC"},I:{"1":"H hC","8":"lB I cC dC eC fC wB gC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 48d8874174049e..43f6cefa242518 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:4,C:"Proximity API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 c0d07f2f8e733d..ea4037adf056a8 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"5 6 7 8 9 I l J D E F A B C K L G M N O AB BB CB DB EB FB","66":"0 1 2 3 4 m n o p q r s t u v w x y z"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C s t u v w x y z AC BC CC DC hB tB EC iB","66":"G M N O m n o p q r"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:6,C:"Proxy object"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"6 7 8 9 I m J D E F A B C K L G M N O AB BB CB DB EB FB GB","66":"0 1 2 3 4 5 n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C t u v w x y z CC DC EC FC iB vB GC jB","66":"G M N O n o p q r s"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:6,C:"Proxy object"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js index ed7c4dc7998b9c..dcaa1ca7dbbee1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB xB yB","4":"YB ZB aB bB cB","132":"XB"},D:{"1":"aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB"},E:{"1":"G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB 5B","260":"L"},F:{"1":"QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB AC BC CC DC hB tB EC iB"},G:{"1":"WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"mC nC oC pC qC rC","2":"I hC iC jC kC lC qB"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B","4":"ZB aB bB cB dB","132":"YB"},D:{"1":"bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","260":"L"},F:{"1":"RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Public class fields"}; 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 fc5619d8a7c7b9..a2c0e3bb6cef94 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB","2":"0 1 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB","2":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB","2":"F B C G M N O m UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","4":"q","16":"n o p r"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB","2":"mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"HTTP Public Key Pinning"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB","2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB","2":"F B C G M N O n VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","4":"r","16":"o p q s"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB","2":"oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 7cf92f7e21c146..bf034374cebdc7 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 vB"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB xB yB","257":"BB DB EB FB GB HB IB KB LB MB NB OB PB kB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","1281":"CB JB QB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB","257":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","388":"BB CB DB EB FB GB"},E:{"2":"I l J D E F 0B pB 1B 2B 3B","514":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B","2114":"9B"},F:{"2":"0 1 2 3 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","16":"4 5 6 7 8","257":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"257":"uC"}},B:5,C:"Push API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B","257":"CB EB FB GB HB IB JB LB MB NB OB PB QB mB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1281":"DB KB RB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB","257":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","388":"CB DB EB FB GB HB"},E:{"2":"I m J D E F 3B qB 4B 5B 6B","514":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB","4100":"kB BC"},F:{"2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","16":"5 6 7 8 9","257":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"257":"wC"}},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 1ea3d521386e68..becf63e608bb12 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":"vB","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","8":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","8":"F AC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"querySelector/querySelectorAll"}; +module.exports={A:{A:{"1":"F A B","2":"xB","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","8":"F CC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e2dec3e495c18e..60ee1a38e91a2e 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB jB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L G M N O m n o p q r s"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F AC","132":"B C BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB GC HC"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"257":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"readonly attribute of input and textarea elements"}; +module.exports={A:{A:{"1":"J D E F A B","16":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"257":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 fea89167a22066..8967dccff3f6c0 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 vB","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V","2":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","513":"W Z a b c d e f g h i j k X H nB oB"},D:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T","2":"I l J D E F A B C K L G M N O m n","260":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB","513":"U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"C hB iB","2":"I l J D 0B pB 1B 2B","132":"E F A B 3B 4B qB","1025":"K L G 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB","2":"F B C AC BC CC DC hB tB EC iB","513":"bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"QC RC SC TC","2":"pB FC uB GC HC IC","132":"E JC KC LC MC NC OC PC","1025":"UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"513":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Referrer Policy"}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","513":"W Z a b c d e f g h i j k l H X pB"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","2":"I m J D E F A B C K L G M N O n o","260":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB","513":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"C iB jB","2":"I m J D 3B qB 4B 5B","132":"E F A B 6B 7B rB","1025":"K L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB","2":"F B C CC DC EC FC iB vB GC jB","513":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"SC TC UC VC","2":"qB HC wB IC JC KC","132":"E LC MC NC OC PC QC RC","1025":"WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"513":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e4b7a2897870cf..615d4d4675bd49 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 vB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB"},D:{"2":"I l J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B AC BC CC DC hB tB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D","129":"A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"Custom protocol handling"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"2":"I m J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B CC DC EC FC iB vB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","129":"A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 1f1203ee3a233d..6f7ed7a94f82e9 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:1,C:"rel=noopener"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 3746e9aff4fa67..9015ce5861925d 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 vB","132":"B"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","16":"C"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L G"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Link type \"noreferrer\""}; +module.exports={A:{A:{"2":"J D E F A xB","132":"B"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 b180c9537879e6..270bb5976b7855 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 vB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M","132":"N"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w xB yB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB","132":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E 0B pB 1B 2B 3B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","2":"I","132":"hC iC jC kC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:1,C:"relList (DOMTokenList)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","132":"N"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","132":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I","132":"jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 5bee8dd58260c3..7ce8c6e5ae4edc 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 vB","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB"},G:{"1":"E FC uB HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB","260":"GC"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"C Y iB","2":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"rem (root em) units"}; +module.exports={A:{A:{"1":"B","2":"J D E xB","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E HC wB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","260":"IC"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e029a866b95956..d27a0a95a3345f 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","33":"B C K L G M N O m n o p","164":"I l J D E F A"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F","33":"p q","164":"O m n o","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","33":"HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"requestAnimationFrame"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"B C K L G M N O n o p q","164":"I m J D E F A"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F","33":"q r","164":"O n o p","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 39588304d675f4..f45abdb9e2952d 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB","194":"KB LB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB"},E:{"2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB","322":"L G 5B 6B 7B rB sB 8B 9B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC","322":"VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"requestIdleCallback"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","194":"LB MB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","322":"L G 8B 9B AC sB tB uB kB BC"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","322":"XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 376d0a02207331..3b705e0bc6bb67 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB xB yB"},D:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB OB PB kB QB lB RB SB"},E:{"1":"L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB iB","66":"K"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","194":"8 9 AB BB CB DB EB FB GB HB IB"},G:{"1":"VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"lC qB mC nC oC pC qC rC","2":"I hC iC jC kC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Resize Observer"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B"},D:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB NB OB PB QB mB RB nB SB TB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB","66":"K"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,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 8157ee29c28d4e..d5c2248348095d 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x xB yB","194":"0 1 y z"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Resource Timing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","194":"0 1 2 z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 d7f4498db2dd45..efa0973eceb12b 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB","194":"BB CB DB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x AC BC CC DC hB tB EC iB","194":"0 y z"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Rest parameters"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB","194":"CB DB EB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y CC DC EC FC iB vB GC jB","194":"0 1 z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 d6e9e7ca3162dc..533efd06cb6f14 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L","516":"G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o xB yB","33":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB"},D:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p","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"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"33":"tC"},S:{"1":"uC"}},B:5,C:"WebRTC Peer-to-peer connections"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","516":"G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","33":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q","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"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"1":"wC"}},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 2c1ebf5aec2c7c..e3804bfa1688a8 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 vB"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"0 1 2 3 4 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"I"},E:{"4":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"I 0B pB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","8":"F B C AC BC CC DC hB tB EC iB"},G:{"4":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","8":"pB FC uB"},H:{"8":"ZC"},I:{"4":"jB I H dC uB eC fC","8":"aC bC cC"},J:{"4":"A","8":"D"},K:{"4":"Y","8":"A B C hB tB iB"},L:{"4":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"4":"gC"},P:{"4":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"4":"sC"},R:{"4":"tC"},S:{"1":"uC"}},B:1,C:"Ruby annotation"}; +module.exports={A:{A:{"4":"J D E F A B xB"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I"},E:{"4":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I 3B qB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"F B C CC DC EC FC iB vB GC jB"},G:{"4":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB"},H:{"8":"bC"},I:{"4":"lB I H fC wB gC hC","8":"cC dC eC"},J:{"4":"A","8":"D"},K:{"4":"Y","8":"A B C iB vB jB"},L:{"4":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"1":"wC"}},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 28430d705a6306..7413e21afedbb4 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y","2":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J 1B","2":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"2B","129":"I 0B pB"},F:{"1":"F B C G M N O AC BC CC DC hB tB EC iB","2":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"FC uB GC HC IC","2":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","129":"pB"},H:{"1":"ZC"},I:{"1":"jB I aC bC cC dC uB eC","2":"H fC"},J:{"1":"D A"},K:{"1":"A B C hB tB iB","2":"Y"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"display: run-in"}; +module.exports={A:{A:{"1":"E F A B","2":"J D xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J 4B","2":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"5B","129":"I 3B qB"},F:{"1":"F B C G M N O CC DC EC FC iB vB GC jB","2":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"HC wB IC JC KC","2":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","129":"qB"},H:{"1":"bC"},I:{"1":"lB I cC dC eC fC wB gC","2":"H hC"},J:{"1":"D A"},K:{"1":"A B C iB vB jB","2":"Y"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,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 8a4b53b7e65f31..99efd5badefb6a 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 vB","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W Z a b c d e f g h i j k X H"},C:{"1":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB xB yB"},D:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","513":"Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"G 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB hB","2052":"L","3076":"C K iB 5B"},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 Y TB UB VB WB XB YB","2":"0 1 2 3 4 5 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","513":"ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC","2052":"QC RC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"513":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"16":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:6,C:"'SameSite' cookie attribute"}; +module.exports={A:{A:{"2":"J D E F A xB","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W Z a b c d e f g h i j k l H X"},C:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","513":"Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB iB","2052":"L","3076":"C K jB 8B"},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 Y UB VB WB XB YB ZB","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","513":"aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","2052":"SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"513":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"16":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 dbd54686044222..204f0c467e4957 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 vB","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","36":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N xB yB","36":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","36":"B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","16":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"Screen Orientation"}; +module.exports={A:{A:{"2":"J D E F A xB","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","36":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B","36":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","36":"B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 862b3a428bf86a..a22e0a428f1044 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","132":"l"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"async attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 7a1bb9ac7d32d7..c06a1f02169ed9 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","257":"I l J D E F A B C K L G M N O m n o p q r s t u v w x xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"defer attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","132":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","257":"I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 94bfbd62def35c..0e46951150d877 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 vB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","132":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","132":"0 1 2 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB"},E:{"1":"9B","2":"I l 0B pB","132":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F AC BC CC DC","16":"B hB tB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB EC iB"},G:{"16":"pB FC uB","132":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","16":"aC bC","132":"jB I cC dC uB eC fC"},J:{"132":"D A"},K:{"1":"Y","132":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"132":"gC"},P:{"132":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"132":"tC"},S:{"1":"uC"}},B:5,C:"scrollIntoView"}; +module.exports={A:{A:{"2":"J D xB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"1":"BC","2":"I m 3B qB","132":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC FC","16":"B iB vB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GC jB"},G:{"16":"qB HC wB","132":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","16":"cC dC","132":"lB I eC fC wB gC hC"},J:{"132":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"132":"vC"},S:{"1":"wC"}},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 ae9091f786b413..f8684ee5cde130 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 72f0cd1c38f18c..5b5699a89631c1 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r 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":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB","2":"F B C bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s 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":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB","2":"F B C cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 c45d9835d0a1d3..ddb6fb4f24c133 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":"vB","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","132":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","2180":"AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","132":"F B C AC BC CC DC hB tB EC iB"},G:{"16":"uB","132":"pB FC","516":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H eC fC","16":"jB I aC bC cC dC","1025":"uB"},J:{"1":"A","16":"D"},K:{"1":"Y","16":"A B C hB tB","132":"iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","16":"A"},O:{"1025":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2180":"uC"}},B:5,C:"Selection API"}; +module.exports={A:{A:{"1":"F A B","16":"xB","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B","2180":"BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","132":"F B C CC DC EC FC iB vB GC jB"},G:{"16":"wB","132":"qB HC","516":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","16":"lB I cC dC eC fC","1025":"wB"},J:{"1":"A","16":"D"},K:{"1":"Y","16":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","16":"A"},O:{"1025":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2180":"wC"}},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 b8aa9cceb3dc50..a684e12bd91e5b 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB xB yB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB","196":"QB lB RB SB","324":"Y"},E:{"2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB","516":"K L G iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Server Timing"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","196":"RB nB SB TB","324":"Y"},E:{"2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","516":"K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 9af2fdff1fdee9..705c58d0e3ea1c 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L","322":"G M"},C:{"1":"BB DB EB FB GB HB IB KB LB MB NB OB PB kB lB RB SB Y TB UB VB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","194":"0 1 2 3 4 5 6 7 8 9 AB","513":"CB JB QB WB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","4":"7 8 9 AB BB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t AC BC CC DC hB tB EC iB","4":"u v w x y"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","4":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","4":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"4":"tC"},S:{"2":"uC"}},B:4,C:"Service Workers"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","322":"G M"},C:{"1":"CB EB FB GB HB IB JB LB MB NB OB PB QB mB nB SB TB Y UB VB WB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"1 2 3 4 5 6 7 8 9 AB BB","513":"DB KB RB XB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","4":"8 9 AB BB CB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","4":"v w x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","4":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","4":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"4":"vC"},S:{"2":"wC"}},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 9820bfe13b0031..636eb29ca86637 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 vB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js index 27beba80825fdb..d257fe35e87a5d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","2":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"1":"jB I H bC cC dC uB eC fC","260":"aC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C hB tB iB"},L:{"1":"H"},M:{"16":"X"},N:{"16":"A B"},O:{"16":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","16":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"SHA-2 SSL certificates"}; +module.exports={A:{A:{"1":"J D E F A B","2":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","260":"cC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"16":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"SHA-2 SSL certificates"}; 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 c34dceaf83aee6..20a7dcac11fcda 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 vB"},B:{"1":"P","2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","66":"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 kB QB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","2":"I l J D E F A B C K L G M N O m n o p q r Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"0 1 s t u v w x y z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB","2":"F B C VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","33":"G M N O m n o"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB","33":"eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC","2":"oC pC qC rC","33":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P","2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","66":"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 mB RB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"I m J D E F A B C K L G M N O n o p q r s Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},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 Y UB VB","2":"F B C WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","33":"G M N O n o p"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB","33":"gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC","2":"qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1d0cca09aa6b54..4f674f6d156aae 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB xB yB","322":"PB","578":"kB QB lB RB"},D:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC","132":"MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I","4":"hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Shadow DOM (V1)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB zB 0B","322":"QB","578":"mB RB nB SB"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","132":"OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","4":"jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 e8ba7df9743c9e..55b6db4509c1f7 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 vB"},B:{"1":"P Q R S T U V W Z a b","2":"C K L G","194":"M N O","513":"c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB xB yB","194":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB","450":"cB dB eB fB gB","513":"P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB","194":"QB lB RB SB Y TB UB VB","513":"c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A 0B pB 1B 2B 3B 4B","194":"B C K L G qB hB iB 5B 6B 7B","513":"rB sB 8B 9B"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB AC BC CC DC hB tB EC iB","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC","194":"NC OC PC QC RC SC TC UC VC WC XC YC","513":"rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"513":"H"},M:{"513":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Shared Array Buffer"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b","2":"C K L G","194":"M N O","513":"c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB zB 0B","194":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","450":"dB eB fB gB hB","513":"P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","194":"RB nB SB TB Y UB VB WB","513":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B","194":"B C K L G rB iB jB 8B 9B AC","513":"sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC","194":"PC QC RC SC TC UC VC WC XC YC ZC aC","513":"sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"513":"X"},M:{"513":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 e95ed35d277af2..70bf3c51f13b84 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"l J 1B","2":"I D E F A B C K L G 0B pB 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","2":"F AC BC CC"},G:{"1":"GC HC","2":"E pB FC uB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"B C hB tB iB","2":"Y","16":"A"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"I","2":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:1,C:"Shared Web Workers"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J 4B kB BC","2":"I D E F A B C K L G 3B qB 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC EC"},G:{"1":"IC JC kB","2":"E qB HC wB KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C iB vB jB","2":"Y","16":"A"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I","2":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 9d4778b5f48306..51306e5c031f79 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 vB","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB"},H:{"1":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Server Name Indication"}; +module.exports={A:{A:{"1":"F A B","2":"J xB","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 2d0c453d26a248..be2d7e7f98c011 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","2":"wB jB I l J D E F A B C IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","2":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"E F A B C 4B qB hB","2":"I l J D 0B pB 1B 2B 3B","129":"K L G iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 9 G M N O m n o p q r s t u v w x y z BB iB","2":"7 8 F B C AB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC"},G:{"1":"E JC KC LC MC NC OC PC QC","2":"pB FC uB GC HC IC","257":"RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I dC uB eC fC","2":"H aC bC cC"},J:{"2":"D A"},K:{"1":"iB","2":"A B C Y hB tB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"B","2":"A"},O:{"2":"gC"},P:{"1":"I","2":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"16":"tC"},S:{"1":"uC"}},B:7,C:"SPDY protocol"}; +module.exports={A:{A:{"1":"B","2":"J D E F A xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","2":"yB lB I m J D E F A B C JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","2":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"E F A B C 7B rB iB","2":"I m J D 3B qB 4B 5B 6B","129":"K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 G M N O n o p q r s t u v w x y z AB CB jB","2":"8 9 F B C BB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC"},G:{"1":"E LC MC NC OC PC QC RC SC","2":"qB HC wB IC JC KC","257":"TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I fC wB gC hC","2":"H cC dC eC"},J:{"2":"D A"},K:{"1":"jB","2":"A B C Y iB vB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I","2":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"16":"vC"},S:{"1":"wC"}},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 a64d0be8b3e4a2..085114689fe9be 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 vB"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o xB yB","322":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"I l J D E F A B C K L G M N O m n o p 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L 0B pB 1B 2B 3B 4B qB hB iB 5B","2084":"G 6B 7B rB sB 8B 9B"},F:{"2":"F B C G M N O m n o p q r s t AC BC CC DC hB tB EC iB","1026":"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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","2084":"XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"164":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"164":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"164":"sC"},R:{"164":"tC"},S:{"322":"uC"}},B:7,C:"Speech Recognition API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","322":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N O n o p 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","2084":"G 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","1026":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","2084":"ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"164":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"322":"wC"}},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 81bc19c2798d53..2eb8ddca9d90a1 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 vB"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x xB yB","194":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","257":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B"},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","2":"F B C G M N O m n o p q r s t AC BC CC DC hB tB EC iB","257":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:7,C:"Speech Synthesis API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","194":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"0 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","257":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},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","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","257":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 34defacd42f44f..c66b37a650a256 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"4":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"4":"ZC"},I:{"4":"jB I H aC bC cC dC uB eC fC"},J:{"1":"A","4":"D"},K:{"4":"A B C Y hB tB iB"},L:{"4":"H"},M:{"4":"X"},N:{"4":"A B"},O:{"4":"gC"},P:{"4":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"4":"tC"},S:{"2":"uC"}},B:1,C:"Spellcheck attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"4":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"4":"lB I H cC dC eC fC wB gC hC"},J:{"1":"A","4":"D"},K:{"4":"A B C Y iB vB jB"},L:{"4":"X"},M:{"4":"H"},N:{"4":"A B"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"4":"vC"},S:{"2":"wC"}},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 fe693d1fbcada5..4cf695f95f42a1 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB iB","2":"K L G 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC","2":"SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:7,C:"Web SQL Database"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB","2":"K L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC","2":"UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 3a4934efb99942..6cad6bdfe18ec8 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","260":"C","514":"K L G"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y xB yB","194":"0 1 2 3 4 z"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","260":"1 2 3 4"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B 2B","260":"E 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n AC BC CC DC hB tB EC iB","260":"o p q r"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC","260":"E JC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Srcset and sizes attributes"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C","514":"K L G"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"0 1 2 3 4 5"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","260":"2 3 4 5"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","260":"E 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o CC DC EC FC iB vB GC jB","260":"p q r s"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","260":"E LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 40ace5f5a960b4..7d5413dcd6aed1 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M xB yB","129":"3 4 5 6 7 8","420":"0 1 2 N O m n o p q r s t u v w x y z"},D:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n","420":"0 1 2 3 4 5 6 7 8 9 o p 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 hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B G M N AC BC CC DC hB tB EC","420":"0 1 2 3 4 5 6 C O m n o p q r s t u v w x y z iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC","513":"VC WC XC YC rB sB","1537":"OC PC QC RC SC TC UC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","420":"A"},K:{"1":"Y","2":"A B hB tB","420":"C iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","420":"I hC"},Q:{"1":"sC"},R:{"420":"tC"},S:{"2":"uC"}},B:4,C:"getUserMedia/Stream API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","129":"4 5 6 7 8 9","420":"0 1 2 3 N O n o p q r s t u v w x y z"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o","420":"0 1 2 3 4 5 6 7 8 9 p q 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 iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B G M N CC DC EC FC iB vB GC","420":"0 1 2 3 4 5 6 7 C O n o p q r s t u v w x y z jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","513":"XC YC ZC aC sB tB uB kB","1537":"QC RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","420":"A"},K:{"1":"Y","2":"A B iB vB","420":"C jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","420":"I jC"},Q:{"1":"uC"},R:{"420":"vC"},S:{"2":"wC"}},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 48e45b80fa9699..495f95698704d1 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 vB","130":"B"},B:{"1":"a b c d e f g h i j k X H","16":"C K","260":"L G","1028":"P Q R S T U V W Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB xB yB","5124":"X H nB oB","7172":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k","7746":"OB PB kB QB lB RB SB Y"},D:{"1":"a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","260":"JB KB LB MB NB OB PB","1028":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z"},E:{"2":"I l J D E F 0B pB 1B 2B 3B 4B","1028":"G 6B 7B rB sB 8B 9B","3076":"A B C K L qB hB iB 5B"},F:{"1":"eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","260":"6 7 8 9 AB BB CB","1028":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB"},G:{"2":"E pB FC uB GC HC IC JC KC LC","16":"MC","1028":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"5124":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qC rC","2":"I hC iC","1028":"jC kC lC qB mC nC oC pC"},Q:{"1028":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"Streams"}; +module.exports={A:{A:{"2":"J D E F A xB","130":"B"},B:{"1":"a b c d e f g h i j k l H X","16":"C K","260":"L G","1028":"P Q R S T U V W Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB zB 0B","5124":"l H X pB","7172":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k","7746":"PB QB mB RB nB SB TB Y"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","260":"KB LB MB NB OB PB QB","1028":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z"},E:{"2":"I m J D E F 3B qB 4B 5B 6B 7B","1028":"G 9B AC sB tB uB kB BC","3076":"A B C K L rB iB jB 8B"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","260":"7 8 9 AB BB CB DB","1028":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC","16":"OC","1028":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"5124":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC","1028":"lC mC nC rB oC pC qC rC"},Q:{"1028":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 69f3ae51bdc751..376469962a9331 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 vB","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Strict Transport Security"}; +module.exports={A:{A:{"2":"J D E F A xB","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 c8305d7f0df948..9200871520c45e 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","2":"wB jB I l J D E F A B C K L G M N O m n lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","322":"MB NB OB PB kB QB"},D:{"2":"4 5 6 7 8 9 I l J D E F A B C K L G M N O m AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","194":"0 1 2 3 n o p q r s t u v w x y z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:7,C:"Scoped CSS"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"yB lB I m J D E F A B C K L G M N O n o nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","322":"NB OB PB QB mB RB"},D:{"2":"5 6 7 8 9 I m J D E F A B C K L G M N O n AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","194":"0 1 2 3 4 o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,C:"Scoped CSS"}; 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 4b4664168dc997..5e24638d1f3913 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w x y AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC","194":"OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Subresource Integrity"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","194":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 1425dad23767bc..1b4bbeaa6247f2 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","516":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","260":"I l J D E F A B C K L G M N O m n o p q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"I"},E:{"1":"l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B","132":"I pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","132":"pB FC"},H:{"260":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"Y","260":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"SVG in CSS backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","516":"C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","260":"I m J D E F A B C K L G M N O n o p q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B","132":"I qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB HC"},H:{"260":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","260":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 d034466e97d052..c6ddf300c8d0b0 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I","4":"l J D"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"SVG filters"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","4":"m J D"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 77808a6268373a..71dcd97992870f 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 vB","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","2":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","130":"5 6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B"},F:{"1":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB","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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","130":"0 1 2 3 s t u v w x y z"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"258":"ZC"},I:{"1":"jB I dC uB eC fC","2":"H aC bC cC"},J:{"1":"D A"},K:{"1":"A B C hB tB iB","2":"Y"},L:{"130":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"I","130":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"130":"tC"},S:{"2":"uC"}},B:2,C:"SVG fonts"}; +module.exports={A:{A:{"2":"F A B xB","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","2":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","130":"6 7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},F:{"1":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB","2":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","130":"0 1 2 3 4 t u v w x y z"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"258":"bC"},I:{"1":"lB I fC wB gC hC","2":"H cC dC eC"},J:{"1":"D A"},K:{"1":"A B C iB vB jB","2":"Y"},L:{"130":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I","130":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"130":"vC"},S:{"2":"wC"}},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 9c944cd79e1e38..9966592351c3e1 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 vB","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},D:{"1":"HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},E:{"1":"C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D F A B 0B pB 1B 2B 4B qB","132":"E 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"G M N O m n o p","4":"B C BC CC DC hB tB EC","16":"F AC","132":"0 1 2 3 q r s t u v w x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC KC LC MC NC OC","132":"E JC"},H:{"1":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D","132":"A"},K:{"1":"Y iB","4":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","132":"I"},Q:{"1":"sC"},R:{"132":"tC"},S:{"1":"uC"}},B:4,C:"SVG fragment identifiers"}; +module.exports={A:{A:{"2":"J D E xB","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D F A B 3B qB 4B 5B 7B rB","132":"E 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"G M N O n o p q","4":"B C DC EC FC iB vB GC","16":"F CC","132":"0 1 2 3 4 r s t u v w x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC MC NC OC PC QC","132":"E LC"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","132":"A"},K:{"1":"Y jB","4":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"132":"vC"},S:{"1":"wC"}},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 64f005aefc112a..587a02c6ca7b3a 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 vB","388":"F A B"},B:{"4":"P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB","4":"jB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"0B pB","4":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"4":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB","4":"H eC fC"},J:{"1":"A","2":"D"},K:{"4":"A B C Y hB tB iB"},L:{"4":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"4":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"4":"sC"},R:{"4":"tC"},S:{"1":"uC"}},B:2,C:"SVG effects for HTML"}; +module.exports={A:{A:{"2":"J D E xB","388":"F A B"},B:{"4":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB","4":"lB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","4":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"4":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","4":"H gC hC"},J:{"1":"A","2":"D"},K:{"4":"A B C Y iB vB jB"},L:{"4":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"1":"wC"}},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 8b82a4cc899065..63935c6294d1b2 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":"vB","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","8":"I l J"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"I l 0B pB","129":"J D E 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"B DC hB tB","8":"F AC BC CC"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","8":"pB FC uB","129":"E GC HC IC JC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"aC bC cC","129":"jB I dC uB"},J:{"1":"A","129":"D"},K:{"1":"C Y iB","8":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"129":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Inline SVG in HTML5"}; +module.exports={A:{A:{"2":"xB","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m 3B qB","129":"J D E 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"B FC iB vB","8":"F CC DC EC"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB","129":"E IC JC KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","129":"lB I fC wB"},J:{"1":"A","129":"D"},K:{"1":"C Y jB","8":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 c3e16798f99dc3..1f863bbdef7c20 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L G M N O m n o p q r s t u"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B","4":"pB","132":"I l J D E 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","132":"E pB FC uB GC HC IC JC"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"aC bC cC","132":"jB I dC uB"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"SVG in HTML img element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B","4":"qB","132":"I m J D E 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"E qB HC wB IC JC KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","132":"lB I fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 499dbe1a2c38eb..9e5649bc55a403 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":"vB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"I"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"0B pB","132":"I l 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","132":"pB FC uB GC"},H:{"2":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"SVG SMIL animation"}; +module.exports={A:{A:{"2":"xB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB","132":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 19a97f558888d7..fe511fa031e08d 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":"vB","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","4":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","4":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"H eC fC","2":"aC bC cC","132":"jB I dC uB"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"257":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"SVG (basic support)"}; +module.exports={A:{A:{"2":"xB","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","4":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","132":"lB I fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"257":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 529975ab99ffbc..17640961ca3ff8 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB","132":"ZB aB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"16":"gC"},P:{"1":"mC nC oC pC qC rC","2":"I hC iC jC kC lC qB"},Q:{"16":"sC"},R:{"16":"tC"},S:{"2":"uC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB","132":"aB bB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"16":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},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 8518567b3b5eb2..b80fff562bf6b7 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"16":"wB jB xB yB","129":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"16":"I l 0B pB","257":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","16":"F"},G:{"769":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"16":"jB I H aC bC cC dC uB eC fC"},J:{"16":"D A"},K:{"16":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"16":"gC"},P:{"16":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"16":"tC"},S:{"129":"uC"}},B:1,C:"tabindex global attribute"}; +module.exports={A:{A:{"1":"D E F A B","16":"J xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"16":"yB lB zB 0B","129":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"16":"I m 3B qB","257":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"769":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"16":"vC"},S:{"129":"wC"}},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 34a1f62219357c..6e1e69a3e6965e 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 vB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","16":"C"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B","129":"C"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v AC BC CC DC hB tB EC iB"},G:{"1":"KC LC MC NC OC PC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC","129":"QC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"ES6 Template Literals (Template Strings)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B","129":"C"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","129":"SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 87604f34f66d02..8564fae69c3762 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 vB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s","132":"0 1 t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D 0B pB 1B","388":"E 3B","514":"2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","132":"G M N O m n o"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC","388":"E JC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"HTML templates"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C","388":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t","132":"0 1 2 u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B","388":"E 6B","514":"5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","132":"G M N O n o p"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","388":"E LC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 dcfdf9556fb55a..1dfa054195f935 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"Temporal"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 11371959288d72..3a29474bdf16a9 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 vB","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","16":"I l"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"B C"},E:{"2":"I J 0B pB 1B","16":"l D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC tB EC iB","16":"hB"},G:{"2":"pB FC uB GC HC","16":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC dC uB eC fC","16":"cC"},J:{"2":"A","16":"D"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Test feature - updated"}; +module.exports={A:{A:{"2":"J D E A B xB","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"I m"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"B C"},E:{"2":"I J 3B qB 4B","16":"m D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC vB GC jB","16":"iB"},G:{"2":"qB HC wB IC JC","16":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC fC wB gC hC","16":"eC"},J:{"2":"A","16":"D"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 d333f0182eaf83..c8b5c9fc6e495e 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 vB"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l xB yB","1028":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","1060":"0 1 2 J D E F A B C K L G M N O m n o p q r s t u v w x y z"},D:{"2":"I l J D E F A B C K L G M N O m n o p q r s","226":"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","2052":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D 0B pB 1B 2B","772":"K L G iB 5B 6B 7B rB sB 8B 9B","804":"E F A B C 4B qB hB","1316":"3B"},F:{"2":"0 1 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","226":"2 3 4 5 6 7 8 9 AB","2052":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"pB FC uB GC HC IC","292":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"2052":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2052":"gC"},P:{"2":"I hC iC","2052":"jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"1":"tC"},S:{"1028":"uC"}},B:4,C:"text-decoration styling"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m zB 0B","1028":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1060":"0 1 2 3 J D E F A B C K L G M N O n o p q r s t u v w x y z"},D:{"2":"I m J D E F A B C K L G M N O n o p q r s t","226":"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","2052":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D 3B qB 4B 5B","772":"K L G jB 8B 9B AC sB tB uB kB BC","804":"E F A B C 7B rB iB","1316":"6B"},F:{"2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","226":"3 4 5 6 7 8 9 AB BB","2052":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC KC","292":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"2052":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2052":"iC"},P:{"2":"I jC kC","2052":"lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"1028":"wC"}},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 087b93332d034e..ced192f7d24fbc 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 vB"},B:{"1":"k X H","2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB xB yB","322":"CB"},D:{"1":"k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B","164":"D 2B"},F:{"1":"V W","2":"F B C AC BC CC DC hB tB EC iB","164":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB","164":"eC fC"},J:{"2":"D","164":"A"},K:{"2":"A B C hB tB iB","164":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"164":"gC"},P:{"164":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"164":"sC"},R:{"164":"tC"},S:{"1":"uC"}},B:4,C:"text-emphasis styling"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"k l H X","2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB zB 0B","322":"DB"},D:{"1":"k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","164":"D 5B"},F:{"1":"V W","2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","164":"gC hC"},J:{"2":"D","164":"A"},K:{"2":"A B C iB vB jB","164":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"1":"wC"}},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 64d06b66253c55..f1ffc76d2aa129 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":"vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","8":"wB jB I l J xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","33":"F AC BC CC DC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"Y iB","33":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 Text-overflow"}; +module.exports={A:{A:{"1":"J D E F A B","2":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB I m J zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","33":"F CC DC EC FC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y jB","33":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 2faca8a132bf6d..e9f62044e68987 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s u v w x y z AB BB CB DB EB FB GB HB IB JB KB","258":"t"},E:{"2":"I l J D E F A B C K L G 0B pB 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","258":"1B"},F:{"1":"AB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z BB AC BC CC DC hB tB EC iB"},G:{"2":"pB FC uB","33":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"33":"X"},N:{"161":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"CSS text-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","258":"u"},E:{"2":"I m J D E F A B C K L G 3B qB 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","258":"4B"},F:{"1":"BB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CB CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB","33":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"33":"H"},N:{"161":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 5f66a1ce42e083..aa7f6620f19f82 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 vB"},B:{"2":"C K L","33":"P Q R S T U V W Z a b c d e f g h i j k X H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB xB yB","161":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","450":"FB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"33":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"33":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","36":"pB"},H:{"2":"ZC"},I:{"2":"jB","33":"I H aC bC cC dC uB eC fC"},J:{"33":"D A"},K:{"2":"A B C hB tB iB","33":"Y"},L:{"33":"H"},M:{"161":"X"},N:{"2":"A B"},O:{"33":"gC"},P:{"33":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"33":"sC"},R:{"33":"tC"},S:{"161":"uC"}},B:7,C:"CSS text-stroke and text-fill"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L","33":"P Q R S T U V W Z a b c d e f g h i j k l H X","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B","161":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","450":"GB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"33":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"33":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","36":"qB"},H:{"2":"bC"},I:{"2":"lB","33":"I H cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"161":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"161":"wC"}},B:7,C:"CSS text-stroke and text-fill"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js index b9a49a7ea28c5d..391475ced8a066 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB xB yB","130":"XB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"text-underline-offset"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B","130":"YB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"text-underline-offset"}; 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 60aa33d6e8c14b..e66cc57188d226 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","16":"F"},G:{"1":"E FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Node.textContent"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e7955fd6aa55e5..07498f570b5241 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O xB yB","132":"m"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"TextEncoder & TextDecoder"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B","132":"n"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 368ee56712f82c..dbadfb193009c0 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 vB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB","2":"wB jB I l J D E F A B C K L G M N O m n o p xB yB","66":"q","129":"WB XB YB ZB aB bB cB dB eB fB","388":"gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T","2":"I l J D E F A B C K L G M N O m n o","1540":"U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"D E F A B C K 3B 4B qB hB iB","2":"I l J 0B pB 1B 2B","513":"L G 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB iB","2":"F B C AC BC CC DC hB tB EC","1540":"bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"1":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"129":"X"},N:{"1":"B","66":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"TLS 1.1"}; +module.exports={A:{A:{"1":"B","2":"J D xB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B","66":"r","129":"XB YB ZB aB bB cB dB eB fB gB","388":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","2":"I m J D E F A B C K L G M N O n o p","1540":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K 6B 7B rB iB jB","2":"I m J 3B qB 4B 5B","513":"L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB jB","2":"F B C CC DC EC FC iB vB GC","1540":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"129":"H"},N:{"1":"B","66":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 54c643b66c6ca3..504f18c2df6f0e 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 vB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q xB yB","66":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F G AC","66":"B C BC CC DC hB tB EC iB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"1":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y iB","2":"A B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","66":"A"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"TLS 1.2"}; +module.exports={A:{A:{"1":"B","2":"J D xB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","66":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F G CC","66":"B C DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","66":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 926cb9948951cc..7fe2e4b550aece 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB","132":"QB lB RB","450":"IB JB KB LB MB NB OB PB kB"},D:{"1":"YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","706":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB"},E:{"1":"L G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB","1028":"K iB 5B"},F:{"1":"OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB","706":"LB MB NB"},G:{"1":"RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"qB mC nC oC pC qC rC","2":"I hC iC jC kC lC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:6,C:"TLS 1.3"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B","132":"RB nB SB","450":"JB KB LB MB NB OB PB QB mB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","706":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","1028":"K jB 8B"},F:{"1":"PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB","706":"MB NB OB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"TLS 1.3"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js index f45247a6faea45..d65709cbe19dae 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B vB"},B:{"2":"C K L","194":"P Q R S T U V W Z a b c d e f g h i j k X H","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H xB yB","16":"nB oB"},D:{"2":"0 1 2 3 4 5 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","16":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","194":"PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E 0B pB 1B 2B 3B","16":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C G M N O m n o p q r s t u v w AC BC CC DC hB tB EC iB","16":"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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC","16":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"16":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","16":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","16":"Y"},L:{"16":"H"},M:{"16":"X"},N:{"2":"A","16":"B"},O:{"16":"gC"},P:{"16":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"16":"sC"},R:{"16":"tC"},S:{"2":"uC"}},B:6,C:"Token Binding"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L","194":"P Q R S T U V W Z a b c d e f g h i j k l H X","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","16":"X pB"},D:{"2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","16":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E 3B qB 4B 5B 6B","16":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","16":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC","16":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","16":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","16":"Y"},L:{"16":"X"},M:{"16":"H"},N:{"2":"A","16":"B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:6,C:"Token Binding"}; 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 91002038709ed7..a6098ffbe6c05c 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 vB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","578":"C K L G M N O"},C:{"1":"O m n o p q r JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","4":"I l J D E F A B C K L G M N","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"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A","260":"B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:2,C:"Touch events"}; +module.exports={A:{A:{"2":"J D E F xB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","578":"C K L G M N O"},C:{"1":"O n o p q r s KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","4":"I m J D E F A B C K L G M N","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"},D:{"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 82ab83a3987efe..4171dac5ebecdb 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":"vB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","33":"I l J D E F A B C K L G xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","33":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F AC BC","33":"B C G M N O m n o p CC DC hB tB EC"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","33":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","33":"jB I aC bC cC dC uB eC fC"},J:{"33":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"CSS3 2D Transforms"}; +module.exports={A:{A:{"2":"xB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","33":"I m J D E F A B C K L G zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC","33":"B C G M N O n o p q EC FC iB vB GC"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","33":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 722c3a73b21b99..5e846ba5ba6865 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 vB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F xB yB","33":"A B C K L G"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B","33":"0 1 2 C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"sB 8B 9B","2":"0B pB","33":"I l J D E 1B 2B 3B","257":"F A B C K L G 4B qB hB iB 5B 6B 7B rB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"G M N O m n o p"},G:{"1":"sB","33":"E pB FC uB GC HC IC JC","257":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"1":"H","2":"aC bC cC","33":"jB I dC uB eC fC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS3 3D Transforms"}; +module.exports={A:{A:{"2":"J D E F xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B","33":"A B C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B","33":"0 1 2 3 C K L G M N O n o p q r s t u v w x y z"},E:{"1":"tB uB kB BC","2":"3B qB","33":"I m J D E 4B 5B 6B","257":"F A B C K L G 7B rB iB jB 8B 9B AC sB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"G M N O n o p q"},G:{"1":"tB uB kB","33":"E qB HC wB IC JC KC LC","257":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","33":"lB I fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 0e04e76a9e6644..a1532e90bccb1f 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 vB"},B:{"1":"S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"oC pC qC rC","2":"I hC iC jC kC lC qB mC nC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Trusted Types for DOM manipulation"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"qC rC sC kB tC","2":"I jC kC lC mC nC rB oC pC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 0e6964a8faf297..82f137cea03240 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 vB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W BC CC DC hB tB EC iB","2":"F AC"},G:{"1":"E uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC"},H:{"2":"ZC"},I:{"1":"jB I H bC cC dC uB eC fC","2":"aC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; +module.exports={A:{A:{"2":"J D E xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F CC"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","2":"cC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 0f3815f88bd562..3669484225a3e5 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 vB","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB","260":"1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC","260":"uB"},H:{"1":"ZC"},I:{"1":"I H dC uB eC fC","2":"jB aC bC cC"},J:{"1":"A","2":"D"},K:{"1":"C Y iB","2":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Typed Arrays"}; +module.exports={A:{A:{"1":"B","2":"J D E F xB","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","260":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","260":"wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","2":"lB cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 314511e7975cdd..8eea13f4f4d0f2 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 vB"},B:{"2":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB","322":"EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB"},D:{"2":"0 1 2 3 4 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","130":"5 6 7","513":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB iB"},F:{"2":"0 1 2 3 4 5 6 8 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","513":"7 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"322":"uC"}},B:6,C:"FIDO U2F API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","322":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB"},D:{"2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","130":"6 7 8","513":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"2":"0 1 2 3 4 5 6 7 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","513":"8 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"322":"wC"}},B:6,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 0fab7c7631e42a..59516155fba94a 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB xB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC","16":"OC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:1,C:"unhandledrejection/rejectionhandled events"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","16":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 df066034e6ac29..8c78d8202c3a65 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q r s t u v w AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Upgrade Insecure Requests"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 8ae9ef6f0bf6ee..fc4c1cc5c0c7ac 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 vB"},B:{"1":"S T U V W Z a b c d e f g h i j k X 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 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB","66":"cB dB eB fB gB P Q"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB AC BC CC DC hB tB EC iB","66":"UB VB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"oC pC qC rC","2":"I hC iC jC kC lC qB mC nC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"URL Scroll-To-Text Fragment"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","66":"dB eB fB gB hB P Q"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB","66":"VB WB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"qC rC sC kB tC","2":"I jC kC lC mC nC rB oC pC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 3eff55da20f73d..4ec7aa6bb91c41 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p","130":"q r s t u v w x y"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B 2B","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","130":"G M N O"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC","130":"IC"},H:{"2":"ZC"},I:{"1":"H fC","2":"jB I aC bC cC dC uB","130":"eC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"URL API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q","130":"r s t u v w x y z"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","130":"G M N O"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","130":"KC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB","130":"gC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 e7798f4b514d51..cea0c4b594675c 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB","132":"0 1 2 3 4 5 6 7 8 9 w x y z AB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","2":"I"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:1,C:"URLSearchParams"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","132":"0 1 2 3 4 5 6 7 8 9 x y z AB BB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 d51d9dadf0ba9f..ffe24acf18c6e3 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","132":"l 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"1":"ZC"},I:{"1":"jB I H dC uB eC fC","2":"aC bC cC"},J:{"1":"D A"},K:{"1":"C Y tB iB","2":"A B hB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"ECMAScript 5 Strict Mode"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"C Y vB jB","2":"A B iB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 58ab5bc3e73435..dbbeb87a687ff3 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 vB","33":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","33":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","33":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB xB yB"},D:{"1":"LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","33":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"9B","33":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","33":"0 1 2 3 4 5 6 7 G M N O m n o p q r s t u v w x y z"},G:{"33":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","33":"jB I aC bC cC dC uB eC fC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"33":"A B"},O:{"2":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","33":"I hC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"33":"uC"}},B:5,C:"CSS user-select: none"}; +module.exports={A:{A:{"2":"J D E F xB","33":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","33":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"BC","33":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 G M N O n o p q r s t u v w x y z"},G:{"33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","33":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"33":"A B"},O:{"2":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","33":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"33":"wC"}},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 fc35bc07ba2c3a..f29a3fc76c2f78 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"User Timing API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 f32c4c16438ca5..0a3c17907feebb 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 vB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB","4609":"RB SB Y TB UB VB WB XB YB","4674":"lB","5698":"QB","7490":"KB LB MB NB OB","7746":"PB kB","8705":"ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","4097":"UB","4290":"kB QB lB","6148":"RB SB Y TB"},E:{"1":"G 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","4609":"B C hB iB","8193":"K L 5B 6B"},F:{"1":"LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB AC BC CC DC hB tB EC iB","4097":"KB","6148":"GB HB IB JB"},G:{"1":"SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC","4097":"OC PC QC RC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"4097":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC","4097":"kC lC qB mC nC oC pC qC rC"},Q:{"4097":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Variable fonts"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","4609":"SB TB Y UB VB WB XB YB ZB","4674":"nB","5698":"RB","7490":"LB MB NB OB PB","7746":"QB mB","8705":"aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","4097":"VB","4290":"mB RB nB","6148":"SB TB Y UB"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","4609":"B C iB jB","8193":"K L 8B 9B"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB CC DC EC FC iB vB GC jB","4097":"LB","6148":"HB IB JB KB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","4097":"QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"4097":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC","4097":"mC nC rB oC pC qC rC sC kB tC"},Q:{"4097":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 444019cce1cc5f..767c2b0f456603 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","2":"F B AC BC CC DC hB tB"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"1":"ZC"},I:{"1":"H eC fC","16":"jB I aC bC cC dC uB"},J:{"16":"D A"},K:{"1":"C Y iB","2":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"1":"bC"},I:{"1":"H gC hC","16":"lB I cC dC eC fC wB"},J:{"16":"D A"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 c1ab21ba666ced..632b2cad6b7be1 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A xB yB","33":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m n o p q r s t u v w"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"Vibration API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A zB 0B","33":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 cd71bda25277f3..06f6b4f1e08430 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","260":"I l J D E F A B C K L G M N O m xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A 1B 2B 3B 4B qB","2":"0B pB","513":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC","513":"OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","132":"aC bC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Video element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"I m J D E F A B C K L G M N O n zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A 4B 5B 6B 7B rB","2":"3B qB","513":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC","513":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","132":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5e1fb8914f72bc..8df038eb1cbfc7 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 vB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","194":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB","322":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J 0B pB 1B"},F:{"2":"F B C G M N O m n o p q r s t u v w x y AC BC CC DC hB tB EC iB","322":"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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"322":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"194":"uC"}},B:1,C:"Video Tracks"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"322":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"194":"wC"}},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 6400dc31b310fa..fb1d16d975bfe1 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 vB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k","194":"X H nB oB zB"},E:{"1":"sB 8B 9B","2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"Large, Small, and Dynamic viewport units"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k","194":"l H X pB 1B 2B"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 28400612a460de..67961d9a44ac66 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 vB","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N O m","260":"n o p q r s"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC","516":"IC","772":"HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; +module.exports={A:{A:{"2":"J D E xB","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n","260":"o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","516":"KC","772":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 d5f84c7ad10805..e337ccc4310af2 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 vB","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"0B pB","4":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"4":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"4":"ZC"},I:{"2":"jB I aC bC cC dC uB","4":"H eC fC"},J:{"2":"D A"},K:{"4":"A B C Y hB tB iB"},L:{"4":"H"},M:{"4":"X"},N:{"4":"A B"},O:{"2":"gC"},P:{"4":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"4":"sC"},R:{"4":"tC"},S:{"4":"uC"}},B:2,C:"WAI-ARIA Accessibility features"}; +module.exports={A:{A:{"2":"J D xB","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"4":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","4":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"4":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"2":"lB I cC dC eC fC wB","4":"H gC hC"},J:{"2":"D A"},K:{"4":"A B C Y iB vB jB"},L:{"4":"X"},M:{"4":"H"},N:{"4":"A B"},O:{"2":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"4":"wC"}},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 13f0d20c39dccc..bf7775fc5cedd4 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 vB"},B:{"1":"b c d e f g h i j k X H","2":"C K L G M N O","194":"P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB","194":"ZB aB bB cB dB eB fB gB P Q R S T"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB AC BC CC DC hB tB EC iB","194":"PB QB RB SB Y TB UB VB WB XB YB ZB aB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"pC qC rC","2":"I hC iC jC kC lC qB mC nC oC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"Screen Wake Lock API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"b c d e f g h i j k l H X","2":"C K L G M N O","194":"P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB","194":"aB bB cB dB eB fB gB hB P Q R S T"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB CC DC EC FC iB vB GC jB","194":"QB RB SB TB Y UB VB WB XB YB ZB aB bB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 eeb5446e133ed5..afa68e1d3ca1f3 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 vB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L","578":"G"},C:{"1":"KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB xB yB","194":"EB FB GB HB IB","1025":"JB"},D:{"1":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","322":"IB JB KB LB MB NB"},E:{"1":"B C K L G hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","322":"5 6 7 8 9 AB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"194":"uC"}},B:6,C:"WebAssembly"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","578":"G"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","194":"FB GB HB IB JB","1025":"KB"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","322":"JB KB LB MB NB OB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"6 7 8 9 AB BB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},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 ec9956b3d3c5db..9d3128ef724f15 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W CC DC hB tB EC iB","2":"F AC BC"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","16":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"Wav audio format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","16":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 fd799fb2e21d9f..adf10813588989 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 vB","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","16":"F"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB"},H:{"1":"ZC"},I:{"1":"jB I H cC dC uB eC fC","16":"aC bC"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"wbr (word break opportunity) element"}; +module.exports={A:{A:{"1":"J D xB","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 df75eef401af08..617916e0268a85 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 vB"},B:{"1":"T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB","260":"kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB","516":"EB FB GB HB IB JB KB LB MB NB OB PB","580":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB","2049":"dB eB fB gB P Q"},D:{"1":"T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","132":"3 4 5","260":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S"},E:{"1":"G 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B qB","1090":"B C K hB iB","2049":"L 5B 6B"},F:{"1":"ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p AC BC CC DC hB tB EC iB","132":"q 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 Y TB UB VB WB XB YB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC","1090":"OC PC QC RC SC TC UC","2049":"VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"260":"gC"},P:{"260":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"260":"sC"},R:{"260":"tC"},S:{"516":"uC"}},B:5,C:"Web Animations API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","260":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB","516":"FB GB HB IB JB KB LB MB NB OB PB QB","580":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB","2049":"eB fB gB hB P Q"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"4 5 6","260":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","1090":"B C K iB jB","2049":"L 8B 9B"},F:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB","132":"r 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 RB SB TB Y UB VB WB XB YB ZB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","1090":"QC RC SC TC UC VC WC","2049":"XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"260":"iC"},P:{"260":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"260":"uC"},R:{"260":"vC"},S:{"516":"wC"}},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 bf18dded0d7065..ec12cfdf03a69e 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB V W Z a b c d e f g h i j k X H nB oB xB yB","578":"eB fB gB P Q R mB S T U"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC","260":"PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"2":"uC"}},B:5,C:"Add to home screen (A2HS)"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB V W Z a b c d e f g h i j k l H X pB zB 0B","578":"fB gB hB P Q R oB S T U"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC","260":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},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 7b698141c52977..5450c0bfd67775 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 vB"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB","194":"CB DB EB FB GB HB IB JB","706":"KB LB MB","1025":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","450":"3 4 5 6","706":"7 8 9","1025":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC fC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","1025":"Y"},L:{"1025":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"iC jC kC lC qB mC nC oC pC qC rC","2":"I hC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Web Bluetooth"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB","194":"DB EB FB GB HB IB JB KB","706":"LB MB NB","1025":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","450":"4 5 6 7","706":"8 9 AB","1025":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","1025":"Y"},L:{"1025":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 bb9dd85db50af9..6724d799dd5cd1 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 vB"},B:{"1":"a b c d e f g h i j k X H","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB","66":"gB P Q R S T U V W Z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y AC BC CC DC hB tB EC iB","66":"TB UB VB WB XB YB ZB aB bB cB dB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Web Serial API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB","66":"hB P Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y CC DC EC FC iB vB GC jB","66":"UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 0cbcf2931fa16c..a11c966b1bf314 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 vB"},B:{"2":"C K L G M N O P Q","516":"R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z","130":"O m n o p q r","1028":"a b c d e f g h i j k X H nB oB zB"},E:{"1":"L G 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB","2049":"K iB 5B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC","2049":"RC SC TC UC VC"},H:{"2":"ZC"},I:{"2":"jB I aC bC cC dC uB eC","258":"H fC"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","258":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I","258":"hC iC jC"},Q:{"2":"sC"},R:{"16":"tC"},S:{"2":"uC"}},B:5,C:"Web Share API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q","516":"R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z","130":"O n o p q r s","1028":"a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","2049":"K jB 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","2049":"TC UC VC WC XC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC","258":"H hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","258":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","258":"jC kC lC"},Q:{"2":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:5,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 f814bae0698f92..762145e05abbcc 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 vB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C","226":"K L G M N"},C:{"1":"QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB xB yB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB"},E:{"1":"K L G 5B 6B 7B rB sB 8B 9B","2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB","322":"iB"},F:{"1":"LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB AC BC CC DC hB tB EC iB"},G:{"1":"XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC","578":"TC","2052":"WC","3076":"UC VC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:2,C:"Web Authentication API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C","226":"K L G M N"},C:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","322":"jB"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC","578":"VC","2052":"YC","3076":"WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"tC","2":"I jC kC lC mC nC rB oC pC qC rC sC kB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:2,C:"Web Authentication 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 c54663dfe03fda..da8d7ef6be393d 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":"vB","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","129":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","129":"I l J D E F A B C K L G M N O m n o p q"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D","129":"E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB","129":"J D 1B 2B 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B AC BC CC DC hB tB EC","129":"C G M N O iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC IC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"1":"A","2":"D"},K:{"1":"C Y iB","2":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A","129":"B"},O:{"129":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"129":"uC"}},B:6,C:"WebGL - 3D Canvas graphics"}; +module.exports={A:{A:{"2":"xB","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","129":"I m J D E F A B C K L G M N O n o p q r"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D","129":"0 E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","129":"J D 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC iB vB GC","129":"C G M N O jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A","129":"B"},O:{"129":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"129":"wC"}},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 48a5e4152710e3..f2dc4aaa96d2b2 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r xB yB","194":"9 AB BB","450":"0 1 2 3 4 5 6 7 8 s t u v w x y z","2242":"CB DB EB FB GB HB"},D:{"1":"NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z","578":"AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"G 7B rB sB 8B 9B","2":"I l J D E F A 0B pB 1B 2B 3B 4B","1090":"B C K L qB hB iB 5B 6B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB"},G:{"1":"YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC","1090":"QC RC SC TC UC VC WC XC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"jC kC lC qB mC nC oC pC qC rC","2":"I hC iC"},Q:{"578":"sC"},R:{"2":"tC"},S:{"2242":"uC"}},B:6,C:"WebGL 2.0"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B","194":"AB BB CB","450":"0 1 2 3 4 5 6 7 8 9 t u v w x y z","2242":"DB EB FB GB HB IB"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","578":"BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","1090":"B C K L rB iB jB 8B 9B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","1090":"SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"578":"uC"},R:{"2":"vC"},S:{"2242":"wC"}},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 e0aed1fc2b3ddb..502b866b095e9d 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 vB"},B:{"2":"C K L G M N O P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB xB yB","194":"SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B 0B pB 1B 2B 3B 4B qB","322":"C K L G hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB AC BC CC DC hB tB EC iB","578":"bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:5,C:"WebGPU"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B","194":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","322":"C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","578":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 2879dc8bc34636..7ed7906c9d7058 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 vB"},B:{"1":"a b c d e f g h i j k X H","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB","66":"gB P Q R S T U V W Z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB AC BC CC DC hB tB EC iB","66":"UB VB WB XB YB ZB aB bB cB dB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"WebHID API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB","66":"hB P Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB","66":"VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 507987ef0b104a..3286e87568cfb6 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 vB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"16":"I l J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"F B C AC BC CC DC hB tB EC iB","132":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"CSS -webkit-user-drag property"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"16":"I m J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 73a770dffddd8f..f0dc4d13cbb636 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 vB","520":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","8":"C K","388":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","132":"I l J D E F A B C K L G M N O m n o p q r s t u"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l","132":"J D E F A B C K L G M N O m n o p q r"},E:{"2":"0B","8":"I l pB 1B","520":"J D E F A B C 2B 3B 4B qB hB","1028":"K iB 5B","7172":"L","8196":"G 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F AC BC CC","132":"B C G DC hB tB EC iB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC","1028":"RC SC TC UC VC","3076":"WC XC YC rB sB"},H:{"2":"ZC"},I:{"1":"H","2":"aC bC","132":"jB I cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"gC"},P:{"1":"hC iC jC kC lC qB mC nC oC pC qC rC","132":"I"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:6,C:"WebM video format"}; +module.exports={A:{A:{"2":"J D E xB","520":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K","388":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","132":"I m J D E F A B C K L G M N O n o p q r s t u v"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","132":"J D E F A B C K L G M N O n o p q r s"},E:{"1":"kB BC","2":"3B","8":"I m qB 4B","520":"J D E F A B C 5B 6B 7B rB iB","1028":"K jB 8B","7172":"L","8196":"G 9B AC sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC","132":"B C G FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","1028":"TC UC VC WC XC","3076":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"cC dC","132":"lB I eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 5451bdaa3ffbaa..307fe8c9e33a7a 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 vB"},B:{"2":"C K L G M N O P a b c d e f g h i j k X H","450":"Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P a b c d e f g h i j k X H nB oB zB","450":"Q R S T U V W Z"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB AC BC CC DC hB tB EC iB","450":"VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"257":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"Web NFC"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P a b c d e f g h i j k l H X","450":"Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P a b c d e f g h i j k l H X pB 1B 2B","450":"Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB CC DC EC FC iB vB GC jB","450":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"257":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 46d218c869c986..ab0678f5abe36e 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 vB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N"},C:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","8":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l","8":"J D E","132":"F A B C K L G M N O m n o p","260":"q r s t u v w x y"},E:{"1":"9B","2":"I l J D E F A B C K 0B pB 1B 2B 3B 4B qB hB iB 5B","516":"L G 6B 7B rB sB 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F AC BC CC","8":"B DC","132":"hB tB EC","260":"C G M N O iB"},G:{"1":"WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"1":"ZC"},I:{"1":"H uB eC fC","2":"jB aC bC cC","132":"I dC"},J:{"2":"D A"},K:{"1":"C Y hB tB iB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"8":"uC"}},B:7,C:"WebP image format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N"},C:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","8":"J D E","132":"F A B C K L G M N O n o p q","260":"r s t u v w x y z"},E:{"1":"kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","516":"L G 9B AC sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC","8":"B FC","132":"iB vB GC","260":"C G M N O jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"1":"bC"},I:{"1":"H wB gC hC","2":"lB cC dC eC","132":"I fC"},J:{"2":"D A"},K:{"1":"C Y iB vB jB","2":"A","132":"B"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"8":"wC"}},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 5d019d4a999cc1..07a17a0dacd69c 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB xB yB","132":"I l","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","132":"l 1B","260":"J 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F AC BC CC DC","132":"B C hB tB EC"},G:{"1":"E HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC","132":"uB GC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","129":"D"},K:{"1":"Y iB","2":"A","132":"B C hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Web Sockets"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","132":"I m","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m 4B","260":"J 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC EC FC","132":"B C iB vB GC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","132":"wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","129":"D"},K:{"1":"Y jB","2":"A","132":"B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Web Sockets"}; 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 e78f6d68c5f517..a9fd696297141e 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q 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 kB QB"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O m n o p q r s t u v w x y z AC BC CC DC hB tB EC iB","66":"8 9 AB BB CB DB EB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"1":"kC lC qB mC nC oC pC qC rC","2":"I hC iC jC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:7,C:"WebUSB"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","66":"MB NB OB PB QB mB RB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"9 AB BB CB DB EB FB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 f553c8f42e1c6a..d45ef3f0735fab 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 vB"},B:{"2":"C K L Q R S T U V W Z a b c d e f g h i j k X H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB xB yB","129":"MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","194":"LB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","66":"OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P"},E:{"2":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","66":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C Y hB tB iB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"513":"I","516":"hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"2":"sC"},R:{"66":"tC"},S:{"2":"uC"}},B:7,C:"WebVR API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L Q R S T U V W Z a b c d e f g h i j k l H X","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B","129":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","194":"MB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"513":"I","516":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"66":"vC"},S:{"2":"wC"}},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 5f396038afaddd..06f92aa0394da1 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"wB jB I l J D E F A B C K L G M N O m n o p q xB yB","66":"r s t u v w x","129":"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I l J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB I aC bC cC dC uB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"2":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"129":"uC"}},B:5,C:"WebVTT - Web Video Text Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","66":"s t u v w x y","129":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB","257":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"129":"wC"}},B:5,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 ca1bae2d69b861..b7d62b7bc35f98 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":"vB","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","8":"wB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","8":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W DC hB tB EC iB","2":"F AC","8":"BC CC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"H aC eC fC","2":"jB I bC cC dC uB"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","8":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Web Workers"}; +module.exports={A:{A:{"1":"A B","2":"xB","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC","8":"DC EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H cC gC hC","2":"lB I dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","8":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 12ae55a1c8cd58..a8f05632bffd77 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 vB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB xB yB","322":"fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y","66":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","132":"P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"2":"I l J D E F A B C 0B pB 1B 2B 3B 4B qB hB iB","578":"K L G 5B 6B 7B rB sB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB AC BC CC DC hB tB EC iB","66":"JB KB LB MB NB OB PB QB RB SB Y TB","132":"UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W"},G:{"2":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"2":"ZC"},I:{"2":"jB I H aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"2":"A B C hB tB iB","132":"Y"},L:{"132":"H"},M:{"322":"X"},N:{"2":"A B"},O:{"2":"gC"},P:{"2":"I hC iC jC kC lC qB mC","132":"nC oC pC qC rC"},Q:{"2":"sC"},R:{"2":"tC"},S:{"2":"uC"}},B:4,C:"WebXR Device API"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB zB 0B","322":"gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y","66":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","132":"P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB","578":"K L G 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB","66":"KB LB MB NB OB PB QB RB SB TB Y UB","132":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"322":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC","132":"pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 e5aff6976d7400..47b64461ee38f4 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 vB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k X 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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L G M N O m n o p q r s t u v xB yB","194":"0 1 2 w x y z"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p q AC BC CC DC hB tB EC iB"},G:{"1":"LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS will-change property"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","194":"0 1 2 3 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,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 05dcf3822be47a..3c8198646c1427 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB yB","2":"wB jB xB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"I"},E:{"1":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I l 0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W hB tB EC iB","2":"F B AC BC CC DC"},G:{"1":"E GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB"},H:{"2":"ZC"},I:{"1":"H eC fC","2":"jB aC bC cC dC uB","130":"I"},J:{"1":"D A"},K:{"1":"B C Y hB tB iB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:2,C:"WOFF - Web Open Font Format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F B CC DC EC FC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC fC wB","130":"I"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 d0805ee19ab698..510d65dd6a2f6f 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 vB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k X H","2":"C K"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"0 1 2 3 4 5 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","2":"0 1 2 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z"},E:{"1":"C K L G iB 5B 6B 7B rB sB 8B 9B","2":"I l J D E F 0B pB 1B 2B 3B 4B","132":"A B qB hB"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C G M N O m n o p AC BC CC DC hB tB EC iB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"E pB FC uB GC HC IC JC KC LC"},H:{"2":"ZC"},I:{"1":"H","2":"jB I aC bC cC dC uB eC fC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}; +module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","132":"A B rB iB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,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 dbb3fb63bba5f6..da29bbdb96d3b3 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB I l J D E F A B C K L xB yB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB"},E:{"1":"F A B C K L G 4B qB hB iB 5B 6B 7B rB sB 8B 9B","4":"I l J D E 0B pB 1B 2B 3B"},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 Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","2":"F B C AC BC CC DC hB tB EC iB","4":"G M N O m n o p q r s t u v w x"},G:{"1":"KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","4":"E pB FC uB GC HC IC JC"},H:{"2":"ZC"},I:{"1":"H","4":"jB I aC bC cC dC uB eC fC"},J:{"4":"D A"},K:{"1":"Y","2":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"4":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"4":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:5,C:"CSS3 word-break"}; +module.exports={A:{A:{"1":"J D E F A B xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","4":"G M N O n o p q r s t u v w x y"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","4":"lB I cC dC eC fC wB gC hC"},J:{"4":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"4":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,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 43a4d6c82178fe..8b1f62e398b418 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 vB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k X H","4":"C K L G M N"},C:{"1":"GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","4":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB"},D:{"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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","4":"I l J D E F A B C K L G M N O m n o p"},E:{"1":"D E F A B C K L G 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","4":"I l J 0B pB 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F AC BC","4":"B C CC DC hB tB EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","4":"pB FC uB GC HC"},H:{"4":"ZC"},I:{"1":"H eC fC","4":"jB I aC bC cC dC uB"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"4":"uC"}},B:5,C:"CSS3 Overflow-wrap"}; +module.exports={A:{A:{"4":"J D E F A B xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G M N"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I m J D E F A B C K L G M N O n o p q"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC","4":"B C EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"qB HC wB IC JC"},H:{"4":"bC"},I:{"1":"H gC hC","4":"lB I cC dC eC fC wB"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"4":"wC"}},B:5,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 4450d06b34e093..e71ccf191ac9f3 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 vB","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB","2":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"0B pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB","2":"F"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"Cross-document messaging"}; +module.exports={A:{A:{"2":"J D xB","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 a4bf08a929de25..8d26cf7a532d47 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 vB"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB","4":"I l J D E F A B C K L G M N YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","16":"wB jB xB yB"},D:{"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 NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J D E F A B C K L G M N O m n o p q r s"},E:{"4":"J D E F A B C K L G 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","16":"I l 0B pB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W EC iB","16":"F B AC BC CC DC hB tB"},G:{"4":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","16":"pB FC uB GC HC"},H:{"2":"ZC"},I:{"4":"I H dC uB eC fC","16":"jB aC bC cC"},J:{"4":"D A"},K:{"4":"Y iB","16":"A B C hB tB"},L:{"4":"H"},M:{"4":"X"},N:{"1":"A B"},O:{"4":"gC"},P:{"4":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"4":"sC"},R:{"4":"tC"},S:{"1":"uC"}},B:6,C:"X-Frame-Options HTTP header"}; +module.exports={A:{A:{"1":"E F A B","2":"J D xB"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB","4":"I m J D E F A B C K L G M N ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},D:{"4":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"4":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F B CC DC EC FC iB vB"},G:{"4":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC"},H:{"2":"bC"},I:{"4":"I H fC wB gC hC","16":"lB cC dC eC"},J:{"4":"D A"},K:{"4":"Y jB","16":"A B C iB vB"},L:{"4":"X"},M:{"4":"H"},N:{"1":"A B"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"1":"wC"}},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 5b247b202814cd..c74a3cf09b15d3 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 vB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","2":"wB jB","260":"A B","388":"J D E F","900":"I l xB yB"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","16":"I l J","132":"w x","388":"D E F A B C K L G M N O m n o p q r s t u v"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","2":"I 0B pB","132":"D 2B","388":"l J 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W iB","2":"F B AC BC CC DC hB tB EC","132":"G M N"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","2":"pB FC uB","132":"IC","388":"GC HC"},H:{"2":"ZC"},I:{"1":"H fC","2":"aC bC cC","388":"eC","900":"jB I dC uB"},J:{"132":"A","388":"D"},K:{"1":"C Y iB","2":"A B hB tB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:1,C:"XMLHttpRequest advanced features"}; +module.exports={A:{A:{"2":"J D E F xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"A B","388":"J D E F","900":"I m zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J","132":"x y","388":"D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"D 5B","388":"m J 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","132":"G M N"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","132":"KC","388":"IC JC"},H:{"2":"bC"},I:{"1":"H hC","2":"cC dC eC","388":"gC","900":"lB I fC wB"},J:{"132":"A","388":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 074302e12b5f47..a19e09b25311a6 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"1":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"1":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"1":"ZC"},I:{"1":"jB I H aC bC cC dC uB eC fC"},J:{"1":"D A"},K:{"1":"A B C Y hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"2":"tC"},S:{"1":"uC"}},B:1,C:"XHTML served as application/xhtml+xml"}; +module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},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 e370a313a72d27..0c56473c10c649 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 vB","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 wB jB I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB xB yB"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I l J D E F A B C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB"},E:{"8":"I l J D E F A B C K L G 0B pB 1B 2B 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W AC BC CC DC hB tB EC iB"},G:{"8":"E pB FC uB GC HC IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB"},H:{"8":"ZC"},I:{"8":"jB I H aC bC cC dC uB eC fC"},J:{"8":"D A"},K:{"8":"A B C Y hB tB iB"},L:{"8":"H"},M:{"8":"X"},N:{"2":"A B"},O:{"8":"gC"},P:{"8":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"8":"sC"},R:{"8":"tC"},S:{"8":"uC"}},B:7,C:"XHTML+SMIL animation"}; +module.exports={A:{A:{"2":"F A B xB","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"8":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"8":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"8":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"8":"bC"},I:{"8":"lB I H cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"8":"A B C Y iB vB jB"},L:{"8":"X"},M:{"8":"H"},N:{"2":"A B"},O:{"8":"iC"},P:{"8":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"8":"uC"},R:{"8":"vC"},S:{"8":"wC"}},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 e6078658b2ceca..590ec049b4013f 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 vB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k X H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W Z a b c d e f g h i j k X H nB oB","132":"B","260":"wB jB I l J D xB yB","516":"E F A"},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 kB QB lB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R S T U V W Z a b c d e f g h i j k X H nB oB zB","132":"I l J D E F A B C K L G M N O m n o p q r s t u v w x"},E:{"1":"E F A B C K L G 3B 4B qB hB iB 5B 6B 7B rB sB 8B 9B","132":"I l J D 0B pB 1B 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Y TB UB VB WB XB YB ZB aB bB cB dB eB fB gB P Q R mB S T U V W","16":"F AC","132":"B C G M N BC CC DC hB tB EC iB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC rB sB","132":"pB FC uB GC HC IC"},H:{"132":"ZC"},I:{"1":"H eC fC","132":"jB I aC bC cC dC uB"},J:{"132":"D A"},K:{"1":"Y","16":"A","132":"B C hB tB iB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"gC"},P:{"1":"I hC iC jC kC lC qB mC nC oC pC qC rC"},Q:{"1":"sC"},R:{"1":"tC"},S:{"1":"uC"}},B:4,C:"DOM Parsing and Serialization"}; +module.exports={A:{A:{"1":"A B","260":"J D E F xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"B","260":"yB lB I m J D zB 0B","516":"E F A"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v w x y"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"I m J D 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C G M N DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB HC wB IC JC KC"},H:{"132":"bC"},I:{"1":"H gC hC","132":"lB I cC dC eC fC wB"},J:{"132":"D A"},K:{"1":"Y","16":"A","132":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},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 99e628e753b038..40f27b2f01e751 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:{"48":0.00388,"52":0.04267,"60":0.00776,"72":0.01552,"78":0.08922,"84":0.00776,"87":0.00388,"91":0.0194,"94":0.0194,"95":0.01164,"96":0.01164,"97":0.03879,"98":0.69434,"99":1.24516,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 88 89 90 92 93 100 101 3.5 3.6"},D:{"38":0.00776,"40":0.00776,"43":0.03491,"44":0.01164,"45":0.00776,"49":0.17843,"67":0.01164,"69":0.00388,"70":0.01552,"75":0.00388,"78":0.0194,"79":0.12025,"81":0.01164,"83":0.02327,"84":0.00388,"86":0.00776,"87":0.06982,"88":0.00776,"89":0.0194,"90":0.00776,"91":0.11249,"92":0.05043,"93":0.00776,"94":0.00776,"95":0.32196,"96":0.08146,"97":0.10085,"98":0.91157,"99":2.6222,"100":14.03422,"101":0.20171,"103":0.01552,_:"4 5 6 7 8 9 10 11 12 13 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 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 71 72 73 74 76 77 80 85 102 104"},F:{"36":0.0194,"40":0.01552,"46":0.00776,"82":0.00776,"84":0.08146,"85":0.4073,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 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:{"87":0.0194,"89":0.00388,"92":0.01164,"94":0.00776,"97":0.00776,"99":0.24438,"100":1.59427,"101":0.04655,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 88 90 91 93 95 96 98"},E:{"4":0,"13":0.03103,"14":0.19783,"15":0.19395,_:"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.00776,"12.1":0.04655,"13.1":0.37238,"14.1":0.77968,"15.1":0.86502,"15.2-15.3":0.96587,"15.4":5.29484},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.06238,"10.0-10.2":0,"10.3":0.15777,"11.0-11.2":0,"11.3-11.4":0.05137,"12.0-12.1":0,"12.2-12.5":0.36692,"13.0-13.1":0,"13.2":0.01468,"13.3":0.05504,"13.4-13.7":0.2018,"14.0-14.4":0.16144,"14.5-14.8":1.32824,"15.0-15.1":2.17949,"15.2-15.3":18.63572,"15.4":13.46219},P:{"4":0.0213,"5.0-5.4":0.31222,"6.2-6.4":0.02118,"7.2-7.4":0.05618,"8.2":0.02357,"9.2":0.01065,"10.1":0.03021,"11.1-11.2":0.03371,"12.0":0.04235,"13.0":0.05326,"14.0":0.03195,"15.0":0.10588,"16.0":1.23557},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.01836},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.22498,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":23.14984},S:{"2.5":0},R:{_:"0"},M:{"0":0.23872},Q:{"10.4":0},O:{"0":0},H:{"0":0.02318}}; +module.exports={C:{"44":0.0709,"52":0.01576,"60":0.00394,"72":0.02363,"75":0.07484,"78":0.10635,"85":0.00788,"90":0.00788,"91":0.04333,"95":0.01576,"96":0.00788,"97":0.01182,"98":0.00788,"99":0.33088,"100":1.40228,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 76 77 79 80 81 82 83 84 86 87 88 89 92 93 94 101 102 103 3.5 3.6"},D:{"40":0.00788,"43":0.03545,"49":0.09848,"58":0.00394,"70":0.02363,"74":0.00394,"77":0.00788,"79":0.04727,"83":0.00394,"84":0.01576,"85":0.01576,"86":0.04727,"87":0.06696,"88":0.01576,"89":0.01576,"90":0.00788,"91":0.05121,"92":0.03545,"93":0.00394,"94":0.02757,"95":0.01576,"96":0.05909,"97":0.07484,"98":0.04333,"99":0.27179,"100":3.39148,"101":14.81852,"102":1.1817,"104":0.01576,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 71 72 73 75 76 78 80 81 103"},F:{"46":0.00394,"85":0.36239,"86":0.34663,"87":0.01576,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"85":0.01182,"87":0.01182,"99":0.02363,"100":0.05909,"101":2.09555,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 88 89 90 91 92 93 94 95 96 97 98"},E:{"4":0,"8":0.0197,"13":0.00788,"14":0.18907,"15":0.08666,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00788,"11.1":0.01576,"12.1":0.06696,"13.1":0.18907,"14.1":0.60267,"15.1":0.77598,"15.2-15.3":0.49631,"15.4":7.56288,"15.5":0.86658},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.00335,"8.1-8.4":0.01005,"9.0-9.2":0,"9.3":0.05025,"10.0-10.2":0,"10.3":0.1206,"11.0-11.2":0.00335,"11.3-11.4":0.23115,"12.0-12.1":0,"12.2-12.5":0.35175,"13.0-13.1":0.01005,"13.2":0.03685,"13.3":0.07035,"13.4-13.7":0.1943,"14.0-14.4":0.2278,"14.5-14.8":1.08541,"15.0-15.1":1.05191,"15.2-15.3":3.47399,"15.4":26.56584},P:{"4":0.02098,"5.0-5.4":0.24206,"6.2-6.4":0.01042,"7.2-7.4":0.14587,"8.2":0.05043,"9.2":0.04168,"10.1":0.01042,"11.1-11.2":0.01049,"12.0":0.05244,"13.0":0.02098,"14.0":0.01049,"15.0":0.02098,"16.0":0.3566},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.01818},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.40966,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":25.9398},S:{"2.5":0},R:{_:"0"},M:{"0":0.27275},Q:{"10.4":0},O:{"0":0},H:{"0":0.04591}}; 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 7047880d9bb698..7be3933e580ec1 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:{"24":0.00343,"34":0.0103,"42":0.00687,"50":0.00343,"52":0.0206,"56":0.00687,"66":0.00343,"68":0.01717,"78":0.02404,"79":0.01374,"80":0.0103,"81":0.0103,"82":0.01374,"83":0.00343,"84":0.02747,"87":0.00687,"88":0.00343,"91":0.0206,"92":0.00343,"94":0.16827,"95":0.00687,"97":0.0103,"98":0.18887,"99":0.52197,"100":0.0103,"101":0.00343,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 46 47 48 49 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 85 86 89 90 93 96 3.5 3.6"},D:{"22":0.00343,"35":0.39491,"38":0.0206,"49":0.02747,"56":0.00687,"59":0.00687,"60":0.0103,"63":0.00687,"64":0.00343,"65":0.01717,"66":0.00343,"67":0.0103,"68":0.00687,"69":0.01374,"71":0.00343,"72":0.00687,"73":0.00687,"74":0.0103,"75":0.03091,"76":0.05151,"77":0.00687,"78":0.01717,"79":0.08928,"80":0.02747,"81":0.01717,"83":0.07211,"84":0.14423,"85":0.12019,"86":0.12706,"87":0.1923,"88":0.0103,"89":0.04464,"90":0.03091,"91":0.33653,"92":0.04464,"93":0.09615,"94":0.28159,"95":0.03091,"96":0.09615,"97":0.13049,"98":0.29876,"99":6.01293,"100":16.18788,"101":0.20947,"102":0.01374,_:"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 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 61 62 70 103 104"},F:{"28":0.01374,"36":0.0103,"46":0.0103,"71":0.00687,"79":0.00343,"80":0.00343,"83":0.0103,"84":0.13393,"85":0.35027,"86":0.0103,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 81 82 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.00687,"16":0.00687,"17":0.0103,"18":0.02747,"84":0.01374,"85":0.00687,"89":0.00343,"92":0.0103,"94":0.00687,"95":0.00687,"96":0.0103,"97":0.03434,"98":0.04808,"99":0.57348,"100":2.12221,"101":0.02404,_:"12 13 14 79 80 81 83 86 87 88 90 91 93"},E:{"4":0,"13":0.05494,"14":0.14766,"15":0.07898,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00687,"11.1":0.01374,"12.1":0.03091,"13.1":0.1511,"14.1":0.47389,"15.1":0.13049,"15.2-15.3":0.14079,"15.4":0.72114},G:{"8":0.00279,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00699,"6.0-6.1":0,"7.0-7.1":0.01816,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12435,"10.0-10.2":0.00838,"10.3":0.07684,"11.0-11.2":0.06986,"11.3-11.4":0.02096,"12.0-12.1":0.01816,"12.2-12.5":0.49738,"13.0-13.1":0.01677,"13.2":0.00978,"13.3":0.04471,"13.4-13.7":0.19839,"14.0-14.4":0.47084,"14.5-14.8":1.52429,"15.0-15.1":0.69997,"15.2-15.3":4.71956,"15.4":5.4377},P:{"4":0.15354,"5.0-5.4":0.01062,"6.2-6.4":0.02187,"7.2-7.4":0.05118,"8.2":0.02446,"9.2":0.01093,"10.1":0.01028,"11.1-11.2":0.04094,"12.0":0.02047,"13.0":0.06142,"14.0":0.08189,"15.0":0.04094,"16.0":2.24168},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00227,"4.4":0,"4.4.3-4.4.4":0.01743},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00373,"9":0.02608,"11":0.14532,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.01313},O:{"0":4.58963},H:{"0":0.77703},L:{"0":44.48445},S:{"2.5":0},R:{_:"0"},M:{"0":0.11162},Q:{"10.4":0}}; +module.exports={C:{"34":0.00691,"52":0.01037,"68":0.0311,"77":0.00346,"78":0.03455,"79":0.00691,"80":0.01037,"81":0.01728,"82":0.00691,"83":0.00691,"84":0.01037,"91":0.01728,"97":0.00346,"98":0.01382,"99":0.15202,"100":0.66336,"101":0.00691,"102":0.00691,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 85 86 87 88 89 90 92 93 94 95 96 103 3.5 3.6"},D:{"22":0.00346,"34":0.00346,"35":0.28331,"38":0.02073,"41":0.00691,"48":0.01382,"49":0.02419,"55":0.00691,"56":0.00691,"61":0.00346,"63":0.01037,"65":0.01037,"68":0.00691,"69":0.01382,"71":0.01037,"73":0.00691,"74":0.01037,"75":0.02073,"76":0.05183,"77":0.00691,"78":0.01037,"79":0.07947,"80":0.02419,"81":0.01728,"83":0.07256,"84":0.19003,"85":0.11402,"86":0.19003,"87":0.2764,"88":0.00691,"89":0.02073,"90":0.02073,"91":0.09329,"92":0.04837,"93":0.07256,"94":0.20039,"95":0.02764,"96":0.0691,"97":0.08638,"98":0.1002,"99":0.24185,"100":3.4861,"101":17.42702,"102":1.42346,"103":0.01037,_:"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 42 43 44 45 46 47 50 51 52 53 54 57 58 59 60 62 64 66 67 70 72 104"},F:{"28":0.01382,"36":0.00691,"46":0.01037,"68":0.00691,"69":0.00691,"70":0.00691,"71":0.01037,"83":0.00346,"84":0.01382,"85":0.36969,"86":0.35241,"87":0.01728,_:"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 72 73 74 75 76 77 78 79 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00346,"17":0.00691,"18":0.02419,"81":0.01037,"84":0.01728,"85":0.01037,"86":0.00346,"92":0.00691,"95":0.00691,"96":0.00346,"97":0.00691,"98":0.01037,"99":0.03801,"100":0.14166,"101":2.4185,_:"12 13 14 16 79 80 83 87 88 89 90 91 93 94"},E:{"4":0,"12":0.00346,"13":0.0691,"14":0.18312,"15":0.07947,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00691,"11.1":0.01382,"12.1":0.0311,"13.1":0.13129,"14.1":0.61154,"15.1":0.11747,"15.2-15.3":0.13129,"15.4":1.58585,"15.5":0.14857},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0109,"6.0-6.1":0,"7.0-7.1":0.0109,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.11306,"10.0-10.2":0.00817,"10.3":0.07901,"11.0-11.2":0.02043,"11.3-11.4":0.01226,"12.0-12.1":0.01635,"12.2-12.5":0.43453,"13.0-13.1":0.01226,"13.2":0.00545,"13.3":0.0395,"13.4-13.7":0.13349,"14.0-14.4":0.44543,"14.5-14.8":1.19191,"15.0-15.1":0.46586,"15.2-15.3":1.09519,"15.4":9.5189},P:{"4":0.11459,"5.0-5.4":0.01021,"6.2-6.4":0.01051,"7.2-7.4":0.03125,"8.2":0.04047,"9.2":0.05217,"10.1":0.13125,"11.1-11.2":0.02083,"12.0":0.01042,"13.0":0.04167,"14.0":0.05209,"15.0":0.03125,"16.0":0.76047},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00125,"4.4":0,"4.4.3-4.4.4":0.02493},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01539,"9":0.01154,"11":0.14236,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.12436},Q:{"10.4":0},O:{"0":3.10233},H:{"0":0.56387},L:{"0":46.57537},S:{"2.5":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 535617afd01cbd..f8eb3bc7c918c1 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:{"18":0.00226,"24":0.00452,"29":0.00905,"33":0.00452,"37":0.00452,"38":0.01357,"39":0.00679,"42":0.00452,"43":0.00452,"44":0.00452,"45":0.00226,"47":0.00452,"48":0.01131,"50":0.00905,"52":0.00679,"56":0.00679,"58":0.00452,"63":0.00452,"65":0.00452,"71":0.00679,"72":0.01131,"73":0.00226,"78":0.00226,"81":0.02488,"85":0.00452,"88":0.00452,"89":0.00905,"91":0.0181,"94":0.00679,"95":0.00905,"96":0.02714,"97":0.01583,"98":0.35966,"99":1.09707,"100":0.0181,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 25 26 27 28 30 31 32 34 35 36 40 41 46 49 51 53 54 55 57 59 60 61 62 64 66 67 68 69 70 74 75 76 77 79 80 82 83 84 86 87 90 92 93 101 3.5 3.6"},D:{"18":0.00226,"29":0.00226,"30":0.01357,"33":0.00226,"34":0.02036,"35":0.00226,"36":0.00679,"37":0.00452,"39":0.00226,"41":0.00452,"42":0.00226,"43":0.08143,"44":0.00905,"45":0.00679,"46":0.00679,"47":0.00679,"48":0.00905,"49":0.00452,"51":0.00452,"52":0.00679,"54":0.00452,"55":0.00679,"56":0.01357,"57":0.01357,"58":0.00679,"59":0.00226,"60":0.0181,"61":0.03393,"62":0.0181,"63":0.00679,"64":0.00226,"65":0.02036,"66":0.01131,"67":0.00679,"68":0.00452,"69":0.00679,"70":0.0181,"71":0.00905,"72":0.00905,"73":0.02262,"74":0.0181,"75":0.00679,"76":0.00679,"77":0.0181,"78":0.05881,"79":0.02714,"80":0.02714,"81":0.0475,"83":0.03845,"84":0.02488,"85":0.01583,"86":0.05203,"87":0.02941,"88":0.01583,"89":0.03167,"90":0.01131,"91":0.04298,"92":0.03845,"93":0.02488,"94":0.02941,"95":0.04298,"96":0.09727,"97":0.10631,"98":0.31442,"99":2.17152,"100":9.73791,"101":0.14251,"102":0.02941,"103":0.00226,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 31 32 38 40 50 53 104"},F:{"64":0.00679,"79":0.00905,"82":0.00226,"83":0.00226,"84":0.0656,"85":0.40264,"86":0.00679,"87":0.00226,_:"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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00226},B:{"12":0.02488,"13":0.01583,"14":0.01357,"15":0.01131,"16":0.04524,"17":0.02262,"18":0.11536,"81":0.01131,"83":0.00452,"84":0.02941,"85":0.00452,"87":0.01357,"88":0.00226,"89":0.04072,"90":0.03393,"92":0.04072,"93":0.00226,"94":0.00226,"95":0.00226,"96":0.02262,"97":0.01357,"98":0.03393,"99":0.19001,"100":0.84373,"101":0.00679,_:"79 80 86 91"},E:{"4":0,"11":0.00679,"13":0.03845,"14":0.03845,"15":0.00226,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00226,"13.1":0.01131,"14.1":0.04072,"15.1":0.11536,"15.2-15.3":0.13346,"15.4":1.62864},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.01119,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05114,"10.0-10.2":0.00479,"10.3":0.09908,"11.0-11.2":0.02397,"11.3-11.4":0.04315,"12.0-12.1":0.04954,"12.2-12.5":0.94128,"13.0-13.1":0.05913,"13.2":0.07191,"13.3":0.11187,"13.4-13.7":0.21415,"14.0-14.4":0.88056,"14.5-14.8":0.99562,"15.0-15.1":1.11388,"15.2-15.3":4.382,"15.4":6.92778},P:{"4":1.00715,"5.0-5.4":0.31222,"6.2-6.4":0.23164,"7.2-7.4":0.58415,"8.2":0.04029,"9.2":0.29207,"10.1":0.03021,"11.1-11.2":0.27193,"12.0":0.06043,"13.0":0.282,"14.0":0.2115,"15.0":0.26186,"16.0":2.19558},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00165,"4.2-4.3":0.00593,"4.4":0,"4.4.3-4.4.4":0.0466},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00452,"9":0.01583,"11":0.46371,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":54.05391},S:{"2.5":0},R:{_:"0"},M:{"0":0.11609},Q:{"10.4":0},O:{"0":1.64841},H:{"0":1.47268}}; +module.exports={C:{"18":0.00604,"20":0.00403,"24":0.01007,"29":0.01007,"33":0.00403,"36":0.00403,"38":0.00604,"39":0.00604,"41":0.00201,"43":0.00604,"44":0.00403,"45":0.00403,"47":0.00403,"48":0.00201,"50":0.09461,"56":0.00403,"68":0.00403,"70":0.00201,"72":0.00604,"73":0.00201,"75":0.00201,"85":0.00604,"88":0.00403,"89":0.00201,"91":0.01409,"94":0.00403,"95":0.00403,"96":0.00403,"97":0.00604,"98":0.05033,"99":0.18318,"100":1.06488,"101":0.0302,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 21 22 23 25 26 27 28 30 31 32 34 35 37 40 42 46 49 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 71 74 76 77 78 79 80 81 82 83 84 86 87 90 92 93 102 103 3.5 3.6"},D:{"18":0.01007,"20":0.00201,"23":0.00403,"30":0.00201,"34":0.00604,"37":0.00805,"38":0.00604,"39":0.00403,"40":0.00201,"42":0.00201,"43":0.06442,"44":0.00403,"45":0.00201,"46":0.01007,"47":0.00403,"48":0.0302,"49":0.00403,"52":0.00403,"53":0.00201,"55":0.00403,"57":0.01812,"59":0.00604,"60":0.00201,"61":0.01812,"62":0.0161,"63":0.01812,"64":0.00604,"65":0.00805,"66":0.00604,"67":0.00403,"68":0.0161,"70":0.01409,"71":0.01812,"72":0.00604,"73":0.00805,"74":0.01208,"76":0.00403,"77":0.01812,"78":0.02214,"79":0.02416,"80":0.02617,"81":0.02013,"83":0.03623,"84":0.04026,"85":0.05838,"86":0.0463,"87":0.04429,"88":0.00805,"89":0.02818,"90":0.0161,"91":0.03221,"92":0.02617,"93":0.01409,"94":0.02013,"95":0.06844,"96":0.13688,"97":0.05435,"98":0.15903,"99":0.24961,"100":1.56813,"101":7.99966,"102":0.54955,"103":0.01208,"104":0.00201,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 21 22 24 25 26 27 28 29 31 32 33 35 36 41 50 51 54 56 58 69 75"},F:{"22":0.00201,"42":0.00403,"79":0.01007,"80":0.00201,"82":0.00201,"85":0.15903,"86":0.38046,"87":0.0302,_:"9 11 12 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 9.5-9.6 10.5 11.1 11.5 11.6 12.1","10.0-10.1":0,"10.6":0.00403},B:{"12":0.0161,"13":0.0161,"14":0.00805,"15":0.0161,"16":0.05033,"17":0.03422,"18":0.14494,"81":0.01007,"84":0.02416,"85":0.02013,"88":0.00201,"89":0.02416,"90":0.03422,"92":0.02818,"95":0.00201,"96":0.00403,"97":0.00805,"98":0.02416,"99":0.0161,"100":0.10669,"101":0.85351,_:"79 80 83 86 87 91 93 94"},E:{"4":0,"10":0.01007,"13":0.00403,"14":0.01812,"15":0.00604,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00805,"13.1":0.00604,"14.1":0.01409,"15.1":0.10468,"15.2-15.3":0.09059,"15.4":1.12929,"15.5":0.33013},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.02959,"8.1-8.4":0,"9.0-9.2":0.00129,"9.3":0.02316,"10.0-10.2":0.00643,"10.3":0.07848,"11.0-11.2":0.02187,"11.3-11.4":0.05918,"12.0-12.1":0.04246,"12.2-12.5":0.7076,"13.0-13.1":0.02187,"13.2":0.02573,"13.3":0.1248,"13.4-13.7":0.14152,"14.0-14.4":0.77836,"14.5-14.8":0.60725,"15.0-15.1":0.71404,"15.2-15.3":1.4345,"15.4":8.04094},P:{"4":1.07918,"5.0-5.4":0.24206,"6.2-6.4":0.39335,"7.2-7.4":0.5648,"8.2":0.05043,"9.2":0.29249,"10.1":0.03026,"11.1-11.2":0.16137,"12.0":0.06051,"13.0":0.38326,"14.0":0.19163,"15.0":0.1412,"16.0":1.28089},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.01201,"4.4":0,"4.4.3-4.4.4":0.05128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00202,"9":0.02428,"11":0.3622,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":60.47103},S:{"2.5":0},R:{_:"0"},M:{"0":0.13578},Q:{"10.4":0},O:{"0":1.71721},H:{"0":1.31571}}; 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 7b827bf07678ec..a1d0acae5cbd15 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js @@ -1 +1 @@ -module.exports={C:{"52":0.01391,"75":0.00348,"76":0.00348,"78":0.01043,"82":0.00348,"87":0.00348,"91":0.00348,"94":0.00348,"95":0.00695,"97":0.00348,"98":0.41724,"99":0.72669,"100":0.00695,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 77 79 80 81 83 84 85 86 88 89 90 92 93 96 101 3.5 3.6"},D:{"49":0.00695,"55":0.03129,"62":0.01739,"67":0.01043,"71":0.01391,"75":0.04868,"76":0.04868,"77":0.01391,"79":0.05216,"81":0.00695,"84":0.00695,"85":0.01391,"86":0.04868,"87":0.02782,"89":0.01043,"90":0.08345,"91":0.04868,"92":0.01391,"93":0.08345,"94":0.00695,"95":0.02086,"96":0.03825,"97":0.06954,"98":0.36509,"99":3.57436,"100":14.83984,"101":0.26078,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 63 64 65 66 68 69 70 72 73 74 78 80 83 88 102 103 104"},F:{"28":0.00695,"82":0.01043,"84":0.04868,"85":0.49026,"86":0.02434,_:"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 83 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.02782,"13":0.00695,"14":0.00348,"16":0.01043,"17":0.00348,"18":0.03129,"84":0.01391,"85":0.00695,"89":0.00348,"92":0.01043,"96":0.00695,"97":0.01739,"98":0.07302,"99":1.29344,"100":5.14596,"101":0.04868,_:"15 79 80 81 83 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.01043,"14":0.07997,"15":0.05563,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.13213,"11.1":0.00695,"12.1":0.03129,"13.1":0.21905,"14.1":0.70931,"15.1":0.11822,"15.2-15.3":0.27121,"15.4":0.84839},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01212,"6.0-6.1":0,"7.0-7.1":0.00909,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01515,"10.0-10.2":0.00455,"10.3":0.02576,"11.0-11.2":0.01364,"11.3-11.4":0.03182,"12.0-12.1":0.02425,"12.2-12.5":0.4334,"13.0-13.1":0.01212,"13.2":0,"13.3":0.04849,"13.4-13.7":0.10002,"14.0-14.4":0.45613,"14.5-14.8":1.36386,"15.0-15.1":0.63192,"15.2-15.3":6.30406,"15.4":5.66001},P:{"4":0.3427,"5.0-5.4":0.1544,"6.2-6.4":0.02059,"7.2-7.4":0.22847,"8.2":0.04117,"9.2":0.02077,"10.1":0.02077,"11.1-11.2":0.42578,"12.0":0.01038,"13.0":0.12462,"14.0":0.22847,"15.0":0.11423,"16.0":4.74589},I:{"0":0,"3":0,"4":0.0013,"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.02479},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05911,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":45.82219},S:{"2.5":0},R:{_:"0"},M:{"0":0.26092},Q:{"10.4":0},O:{"0":0.11089},H:{"0":0.09881}}; +module.exports={C:{"47":0.0108,"94":0.0072,"96":0.0072,"98":0.0036,"99":0.216,"100":0.8136,"101":0.0036,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 97 102 103 3.5 3.6"},D:{"49":0.018,"55":0.018,"58":0.0072,"69":0.0036,"75":0.0144,"76":0.1332,"77":0.0144,"78":0.0108,"79":0.072,"80":0.0072,"81":0.0036,"84":0.0072,"85":0.0108,"86":0.0396,"87":0.0036,"88":0.018,"89":0.036,"90":0.036,"91":0.0108,"92":0.0108,"93":0.1872,"95":0.0252,"96":0.0216,"97":0.0216,"98":0.0792,"99":0.162,"100":4.3272,"101":15.3324,"102":1.152,"103":0.0108,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 83 94 104"},F:{"28":0.0144,"85":0.2124,"86":0.1944,"87":0.018,_:"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:{"12":0.0324,"13":0.0144,"15":0.0036,"16":0.0036,"18":0.0144,"84":0.0108,"85":0.0036,"89":0.0036,"92":0.018,"93":0.0036,"94":0.0036,"96":0.0108,"97":0.0072,"98":0.0972,"99":0.0648,"100":0.486,"101":5.3028,_:"14 17 79 80 81 83 86 87 88 90 91 95"},E:{"4":0,"13":0.0144,"14":0.108,"15":0.0468,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.2448,"10.1":0.0072,"11.1":0.0396,"12.1":0.036,"13.1":0.2772,"14.1":0.5076,"15.1":0.0792,"15.2-15.3":0.1728,"15.4":1.4112,"15.5":0.2124},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.01092,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04214,"10.0-10.2":0,"10.3":0.03589,"11.0-11.2":0.00936,"11.3-11.4":0.0078,"12.0-12.1":0.00468,"12.2-12.5":0.44634,"13.0-13.1":0.0078,"13.2":0,"13.3":0.0515,"13.4-13.7":0.21224,"14.0-14.4":0.37923,"14.5-14.8":1.04249,"15.0-15.1":0.5072,"15.2-15.3":1.08307,"15.4":11.75612},P:{"4":0.32131,"5.0-5.4":0.03112,"6.2-6.4":0.03112,"7.2-7.4":0.24876,"8.2":0.10375,"9.2":0.01036,"10.1":0.03112,"11.1-11.2":0.36277,"12.0":0.02073,"13.0":0.13474,"14.0":0.13474,"15.0":0.12438,"16.0":2.03154},I:{"0":0,"3":0,"4":0.00063,"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.01857},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00489,"11":0.06351,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":44.4876},S:{"2.5":0},R:{_:"0"},M:{"0":0.16},Q:{"10.4":0},O:{"0":0.0896},H:{"0":0.15148}}; 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 07ae59c13abd93..718f121290b93f 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:{"78":0.00822,"87":0.02054,"97":0.00411,"98":0.13556,"99":0.3081,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 100 101 3.5 3.6"},D:{"22":0.00411,"65":0.00411,"67":0.01643,"69":0.02465,"76":0.09859,"79":0.01232,"80":0.00411,"81":0.00411,"87":0.00411,"90":0.04519,"91":0.02876,"92":0.2054,"94":0.00411,"95":0.00411,"97":0.10681,"98":0.01643,"99":3.94779,"100":11.53526,"101":0.22183,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 70 71 72 73 74 75 77 78 83 84 85 86 88 89 93 96 102 103 104"},F:{"84":1.10916,"85":2.66198,_:"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 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.00411,"18":0.00822,"92":0.01643,"95":0.00411,"96":0.04519,"97":0.04108,"99":1.26116,"100":5.83336,"101":0.1027,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 98"},E:{"4":0,"13":0.01643,"14":0.07805,"15":0.12735,_:"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","12.1":0.00411,"13.1":1.52818,"14.1":0.39848,"15.1":0.52582,"15.2-15.3":0.60388,"15.4":1.57747},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.01987,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01656,"12.2-12.5":0.19535,"13.0-13.1":0,"13.2":0.00662,"13.3":0.01987,"13.4-13.7":0.01656,"14.0-14.4":0.42051,"14.5-14.8":1.62243,"15.0-15.1":1.64891,"15.2-15.3":22.25041,"15.4":6.89034},P:{"4":0.46175,"5.0-5.4":0.1544,"6.2-6.4":0.02059,"7.2-7.4":0.19496,"8.2":0.04117,"9.2":0.03088,"10.1":0.03088,"11.1-11.2":0.05147,"12.0":0.02052,"13.0":0.27705,"14.0":0.02052,"15.0":0.07183,"16.0":2.41138},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.02946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09859,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":23.2349},S:{"2.5":0},R:{_:"0"},M:{"0":0.03535},Q:{"10.4":0.00589},O:{"0":0},H:{"0":0.08366}}; +module.exports={C:{"80":0.00377,"87":0.04896,"88":0.00377,"91":0.03389,"98":0.00377,"99":0.03389,"100":1.00176,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 81 82 83 84 85 86 89 90 92 93 94 95 96 97 101 102 103 3.5 3.6"},D:{"65":0.03766,"66":0.01883,"67":0.0113,"76":0.12804,"79":0.0113,"80":0.00377,"83":0.00753,"85":0.09792,"87":0.00377,"90":0.01883,"95":0.01883,"96":0.0113,"97":0.00753,"98":0.01883,"99":0.10168,"100":5.31383,"101":7.05372,"102":0.24856,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 68 69 70 71 72 73 74 75 77 78 81 84 86 88 89 91 92 93 94 103 104"},F:{"85":0.62139,"86":0.64775,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00753,"18":0.00753,"86":0.00377,"89":0.05272,"96":0.0113,"97":0.00377,"98":0.01506,"99":0.04896,"100":0.61386,"101":8.83127,_:"12 13 14 15 17 79 80 81 83 84 85 87 88 90 91 92 93 94 95"},E:{"4":0,"13":0.04143,"14":0.06026,"15":0.04143,_:"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 12.1","13.1":1.08084,"14.1":0.3879,"15.1":0.44439,"15.2-15.3":0.33894,"15.4":5.10293,"15.5":0.20336},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.01347,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.30973,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.02357,"14.0-14.4":0.26597,"14.5-14.8":0.50163,"15.0-15.1":0.86523,"15.2-15.3":4.12414,"15.4":27.5661},P:{"4":0.59439,"5.0-5.4":0.03112,"6.2-6.4":0.03112,"7.2-7.4":0.49191,"8.2":0.10375,"9.2":0.0415,"10.1":0.03112,"11.1-11.2":0.03074,"12.0":0.04099,"13.0":0.03074,"14.0":0.12298,"15.0":0.12298,"16.0":0.8096},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.0187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02636,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":27.8529},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0.10598},H:{"0":0.01771}}; 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 8420d2601ae8a3..bfa72f4311dbbd 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:{"47":0.00276,"48":0.00827,"52":0.03033,"66":0.28397,"78":0.02206,"83":0.00276,"84":0.00551,"87":0.00276,"88":0.00827,"89":0.0193,"91":0.0193,"92":0.00276,"94":0.00551,"95":0.00276,"97":0.00827,"98":0.38047,"99":1.10004,"100":0.01379,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 85 86 90 93 96 101 3.5 3.6"},D:{"38":0.02206,"43":0.00276,"47":0.02206,"49":0.06617,"53":0.00827,"54":0.00551,"56":0.00551,"62":0.00276,"63":0.01103,"64":0.00551,"65":0.00551,"66":0.00827,"68":0.02481,"69":0.00827,"70":0.00827,"71":0.00276,"72":0.00276,"73":0.01103,"74":0.01654,"75":0.00276,"76":0.0193,"77":0.02206,"78":0.00827,"79":0.13509,"80":0.01379,"81":0.01103,"83":0.05514,"84":0.02481,"85":0.06617,"86":0.05238,"87":0.10477,"88":0.0193,"89":0.03033,"90":0.03033,"91":0.04411,"92":0.02757,"93":0.0386,"94":0.0193,"95":0.04411,"96":0.07444,"97":0.10477,"98":0.2564,"99":3.06303,"100":15.25448,"101":0.20126,"102":0.00827,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 51 52 55 57 58 59 60 61 67 103 104"},F:{"32":0.00276,"36":0.00551,"40":0.00551,"46":0.00551,"69":0.00551,"77":0.00551,"84":0.09925,"85":0.42182,"86":0.04136,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 78 79 80 81 82 83 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.00551,"14":0.00276,"17":0.00551,"18":0.00827,"84":0.00276,"86":0.00827,"89":0.01103,"92":0.00551,"96":0.00551,"97":0.01379,"98":0.00827,"99":0.14612,"100":1.04766,"101":0.01103,_:"13 15 16 79 80 81 83 85 87 88 90 91 93 94 95"},E:{"4":0,"13":0.02206,"14":0.04963,"15":0.02206,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00827,"11.1":0.00827,"12.1":0.01654,"13.1":0.0579,"14.1":0.11028,"15.1":0.10477,"15.2-15.3":0.14612,"15.4":1.49154},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00601,"6.0-6.1":0.06908,"7.0-7.1":0.03304,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06007,"10.0-10.2":0.003,"10.3":0.09311,"11.0-11.2":0.02102,"11.3-11.4":0.05707,"12.0-12.1":0.01802,"12.2-12.5":1.57987,"13.0-13.1":0.03004,"13.2":0.01201,"13.3":0.12315,"13.4-13.7":0.4205,"14.0-14.4":1.0122,"14.5-14.8":3.67034,"15.0-15.1":1.2705,"15.2-15.3":8.90552,"15.4":12.64494},P:{"4":0.29456,"5.0-5.4":0.31222,"6.2-6.4":0.23164,"7.2-7.4":0.17267,"8.2":0.02357,"9.2":0.03047,"10.1":0.03021,"11.1-11.2":0.19299,"12.0":0.04063,"13.0":0.22346,"14.0":0.2133,"15.0":0.20314,"16.0":3.82926},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00186,"4.2-4.3":0.00124,"4.4":0,"4.4.3-4.4.4":0.01139},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00276,"9":0.00551,"11":0.0386,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":37.38037},S:{"2.5":0},R:{_:"0"},M:{"0":0.23902},Q:{"10.4":0},O:{"0":0.0507},H:{"0":0.15772}}; +module.exports={C:{"52":0.01322,"78":0.00331,"79":0.00331,"80":0.00992,"82":0.00331,"83":0.00661,"88":0.00165,"89":0.00661,"91":0.00661,"94":0.00165,"97":0.00165,"98":0.00496,"99":0.12067,"100":0.54549,"101":0.00992,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 81 84 85 86 87 90 92 93 95 96 102 103 3.5 3.6"},D:{"11":0.00165,"38":0.00827,"41":0.00661,"43":0.00165,"47":0.00496,"49":0.03471,"53":0.00661,"55":0.00165,"56":0.00165,"62":0.00165,"63":0.00992,"65":0.00331,"66":0.00992,"68":0.03471,"69":0.00496,"71":0.00661,"72":0.00165,"73":0.00165,"74":0.00331,"75":0.00331,"76":0.02645,"77":0.00827,"78":0.00496,"79":0.07934,"80":0.00661,"81":0.00827,"83":0.02975,"84":0.07439,"85":0.04298,"86":0.01818,"87":0.06777,"88":0.01157,"89":0.01653,"90":0.01322,"91":0.04133,"92":0.01818,"93":0.02149,"94":0.00992,"95":0.01157,"96":0.03802,"97":0.04298,"98":0.0529,"99":0.12067,"100":2.25139,"101":8.41542,"102":0.53557,"103":0.00496,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 48 50 51 52 54 57 58 59 60 61 64 67 70 104"},F:{"28":0.00331,"36":0.00331,"40":0.00165,"46":0.00496,"68":0.00827,"85":0.17357,"86":0.21654,"87":0.00331,_:"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 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:{"17":0.00331,"18":0.00496,"85":0.01322,"86":0.01984,"87":0.00331,"89":0.00331,"92":0.00331,"96":0.00165,"97":0.00331,"98":0.00331,"99":0.00827,"100":0.07769,"101":0.9108,_:"12 13 14 15 16 79 80 81 83 84 88 90 91 93 94 95"},E:{"4":0,"12":0.00331,"13":0.01322,"14":0.01984,"15":0.01488,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00331,"11.1":0.00165,"12.1":0.00661,"13.1":0.02975,"14.1":0.06116,"15.1":0.05124,"15.2-15.3":0.05455,"15.4":0.86287,"15.5":0.13059},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.03693,"7.0-7.1":0.01846,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03693,"10.0-10.2":0.01108,"10.3":0.09971,"11.0-11.2":0.03324,"11.3-11.4":0.07386,"12.0-12.1":0.03693,"12.2-12.5":1.73561,"13.0-13.1":0.04062,"13.2":0.03693,"13.3":0.16987,"13.4-13.7":0.57977,"14.0-14.4":1.44758,"14.5-14.8":5.35824,"15.0-15.1":0.93428,"15.2-15.3":2.55911,"15.4":23.69296},P:{"4":0.15288,"5.0-5.4":0.24206,"6.2-6.4":0.39335,"7.2-7.4":0.08154,"8.2":0.05043,"9.2":0.01019,"10.1":0.03026,"11.1-11.2":0.08154,"12.0":0.02038,"13.0":0.11211,"14.0":0.09173,"15.0":0.11211,"16.0":0.85614},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.00322,"4.4":0,"4.4.3-4.4.4":0.01968},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00165,"11":0.0248,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":43.88254},S:{"2.5":0},R:{_:"0"},M:{"0":0.15025},Q:{"10.4":0},O:{"0":0.03339},H:{"0":0.10273}}; 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 c03c90d7df6402..83ffbac1b5e140 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js @@ -1 +1 @@ -module.exports={C:{"52":40.54716,"56":0.01416,"78":0.00708,"83":0.00708,"89":0.00708,"91":0.01416,"95":0.02124,"97":0.00708,"98":0.26904,"99":0.50976,"100":0.00708,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 90 92 93 94 96 101 3.5 3.6"},D:{"22":0.02124,"47":0.01416,"49":0.12036,"51":0.02124,"63":0.00708,"74":0.02832,"75":0.02832,"76":0.02124,"79":0.01416,"80":0.02124,"84":0.02124,"85":0.02124,"86":0.04248,"87":0.0354,"88":0.0354,"89":0.01416,"90":0.04956,"91":0.01416,"92":0.02832,"93":0.01416,"94":0.02124,"95":0.0354,"96":0.0708,"97":0.09912,"98":0.32568,"99":4.60908,"100":19.26468,"101":0.29736,"102":0.00708,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 77 78 81 83 103 104"},F:{"84":0.09912,"85":0.46728,"86":0.00708,_:"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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"92":0.00708,"98":0.00708,"99":0.09204,"100":0.73632,"101":0.00708,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97"},E:{"4":0,"13":0.01416,"14":0.11328,"15":0.04248,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.0708,"12.1":0.01416,"13.1":0.07788,"14.1":0.1416,"15.1":0.11328,"15.2-15.3":0.0708,"15.4":0.33984},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00398,"6.0-6.1":0,"7.0-7.1":0.00199,"8.1-8.4":0.00066,"9.0-9.2":0,"9.3":0.08028,"10.0-10.2":0.00199,"10.3":0.04379,"11.0-11.2":0.00796,"11.3-11.4":0.01791,"12.0-12.1":0.02322,"12.2-12.5":0.40803,"13.0-13.1":0.01393,"13.2":0.01062,"13.3":0.02986,"13.4-13.7":0.10881,"14.0-14.4":0.59446,"14.5-14.8":0.9043,"15.0-15.1":0.27733,"15.2-15.3":1.8305,"15.4":2.2717},P:{"4":0.13457,"5.0-5.4":0.1544,"6.2-6.4":0.02059,"7.2-7.4":0.05466,"8.2":0.04117,"9.2":0.01035,"10.1":0.02077,"11.1-11.2":0.04373,"12.0":0.01093,"13.0":0.0328,"14.0":0.07652,"15.0":0.02186,"16.0":1.08226},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00054,"4.2-4.3":0.00148,"4.4":0,"4.4.3-4.4.4":0.00967},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02832,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":21.27628},S:{"2.5":0.00584},R:{_:"0"},M:{"0":0.05548},Q:{"10.4":0},O:{"0":0.08176},H:{"0":0.10505}}; +module.exports={C:{"44":0.01354,"52":35.02281,"56":0.01354,"73":0.04061,"77":0.01354,"78":0.02031,"91":0.01354,"98":0.05415,"99":0.16246,"100":0.64306,"101":0.00677,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"22":0.02031,"47":0.02031,"49":0.04061,"63":0.00677,"70":0.00677,"71":0.01354,"73":0.01354,"74":0.04738,"75":0.01354,"76":0.02708,"78":0.01354,"79":0.05415,"80":0.02031,"81":0.01354,"84":0.01354,"85":0.04738,"86":0.07446,"87":0.07446,"88":0.02031,"89":0.02708,"90":0.03385,"91":0.02031,"92":0.03385,"93":0.01354,"94":0.01354,"95":0.03385,"96":0.05415,"97":0.06092,"98":0.15569,"99":0.17599,"100":5.49643,"101":18.4726,"102":2.07131,"103":0.01354,"104":0.00677,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 72 77 83"},F:{"85":0.29784,"86":0.3723,"87":0.04061,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"100":0.14215,"101":0.81228,_:"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"},E:{"4":0,"13":0.01354,"14":0.13538,"15":0.03385,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 12.1","5.1":0.05415,"11.1":0.00677,"13.1":0.07446,"14.1":0.14215,"15.1":0.12861,"15.2-15.3":0.06769,"15.4":0.47383,"15.5":0.08123},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00227,"6.0-6.1":0.00152,"7.0-7.1":0.0091,"8.1-8.4":0.00076,"9.0-9.2":0,"9.3":0.1001,"10.0-10.2":0.00227,"10.3":0.04019,"11.0-11.2":0.00986,"11.3-11.4":0.01592,"12.0-12.1":0.01517,"12.2-12.5":0.42844,"13.0-13.1":0.01062,"13.2":0.00607,"13.3":0.02654,"13.4-13.7":0.11829,"14.0-14.4":0.59071,"14.5-14.8":0.84626,"15.0-15.1":0.23431,"15.2-15.3":0.7128,"15.4":4.40873},P:{"4":0.12391,"5.0-5.4":0.03112,"6.2-6.4":0.03112,"7.2-7.4":0.04404,"8.2":0.10375,"9.2":0.01033,"10.1":0.03112,"11.1-11.2":0.03303,"12.0":0.02065,"13.0":0.03303,"14.0":0.07707,"15.0":0.04404,"16.0":0.48445},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00031,"4.2-4.3":0.00169,"4.4":0,"4.4.3-4.4.4":0.01415},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.088,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00969},N:{_:"10 11"},L:{"0":23.26653},S:{"2.5":0},R:{_:"0"},M:{"0":0.04847},Q:{"10.4":0},O:{"0":0.05493},H:{"0":0.17436}}; 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 9d3880d04bcbd7..e6eb6543fdb458 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js @@ -1 +1 @@ -module.exports={C:{"34":0.00414,"41":0.00829,"43":0.00414,"47":0.00829,"52":0.10772,"54":0.01243,"65":0.00829,"68":0.00414,"78":0.00829,"88":0.00414,"89":0.00414,"91":0.029,"95":0.029,"96":0.02486,"97":0.01657,"98":0.20715,"99":0.87832,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 44 45 46 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 93 94 100 101 3.5 3.6"},D:{"11":0.00829,"25":0.00829,"33":0.01243,"34":0.00414,"38":0.01243,"40":0.01243,"42":0.01657,"43":0.05386,"46":0.01243,"47":0.00829,"49":0.02486,"50":0.00414,"53":0.01657,"55":0.01657,"58":0.01243,"59":0.00829,"63":0.05386,"65":0.00829,"66":0.00829,"68":0.00829,"69":0.01243,"70":0.00414,"71":0.00829,"72":0.029,"73":0.00829,"74":0.02072,"75":0.02072,"76":0.00829,"77":0.02072,"78":0.02072,"79":0.058,"80":0.02486,"81":0.09529,"83":0.01243,"84":0.03314,"85":0.01657,"86":0.20715,"87":0.12843,"88":0.05386,"89":0.10772,"90":0.09115,"91":0.16572,"92":0.08286,"93":0.03314,"94":0.02486,"95":0.03729,"96":0.14086,"97":0.25687,"98":0.21129,"99":2.63495,"100":15.44096,"101":0.49302,"102":0.01657,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 35 36 37 39 41 44 45 48 51 52 54 56 57 60 61 62 64 67 103 104"},F:{"32":0.00829,"71":0.01657,"79":0.01657,"82":0.00829,"83":0.00829,"84":0.24444,"85":1.55363,"86":0.02486,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 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 80 81 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.029,"13":0.116,"14":0.058,"15":0.01657,"16":0.00829,"17":0.01243,"18":0.15329,"84":0.029,"85":0.00414,"86":0.00414,"87":0.00829,"88":0.00829,"89":0.03314,"90":0.01657,"92":0.029,"93":0.01657,"94":0.00414,"95":0.029,"96":0.03314,"97":0.09529,"98":0.09529,"99":0.34801,"100":2.92496,"101":0.058,_:"79 80 81 83 91"},E:{"4":0,"13":0.05386,"14":0.01243,"15":0.00414,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 9.1","7.1":0.02072,"10.1":0.00414,"11.1":0.01657,"12.1":0.01243,"13.1":0.07043,"14.1":0.05386,"15.1":0.01243,"15.2-15.3":0.01657,"15.4":0.14086},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.00438,"7.0-7.1":0.0911,"8.1-8.4":0.01489,"9.0-9.2":0.00175,"9.3":0.30047,"10.0-10.2":0.00701,"10.3":0.40909,"11.0-11.2":0.13578,"11.3-11.4":0.03504,"12.0-12.1":0.07884,"12.2-12.5":2.95475,"13.0-13.1":0.00701,"13.2":0.02978,"13.3":0.08234,"13.4-13.7":0.21637,"14.0-14.4":0.44326,"14.5-14.8":0.64298,"15.0-15.1":0.68153,"15.2-15.3":1.27633,"15.4":1.33765},P:{"4":1.21464,"5.0-5.4":0.1544,"6.2-6.4":0.02059,"7.2-7.4":0.33969,"8.2":0.04117,"9.2":0.03088,"10.1":0.03088,"11.1-11.2":0.05147,"12.0":0.02059,"13.0":0.19558,"14.0":0.21617,"15.0":0.1544,"16.0":0.9676},I:{"0":0,"3":0,"4":0.00083,"2.1":0,"2.2":0,"2.3":0.00012,"4.1":0.01305,"4.2-4.3":0.0362,"4.4":0,"4.4.3-4.4.4":0.14894},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13258,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.02929},N:{_:"10 11"},L:{"0":55.43721},S:{"2.5":0.00586},R:{_:"0"},M:{"0":0.17571},Q:{"10.4":0},O:{"0":0.45099},H:{"0":1.79104}}; +module.exports={C:{"41":0.0128,"47":0.0128,"52":0.05974,"54":0.0128,"64":0.00853,"68":0.00427,"78":0.00853,"82":0.00427,"91":0.00853,"95":0.0128,"97":0.0256,"99":0.26882,"100":0.81926,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 48 49 50 51 53 55 56 57 58 59 60 61 62 63 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 88 89 90 92 93 94 96 98 101 102 103 3.5 3.6"},D:{"11":0.0128,"26":0.00853,"33":0.00853,"36":0.00427,"40":0.00853,"42":0.0128,"43":0.06401,"46":0.01707,"47":0.00853,"49":0.05547,"53":0.09814,"58":0.02987,"62":0.00427,"63":0.04267,"65":0.00853,"66":0.00427,"67":0.00427,"68":0.00853,"69":0.04267,"70":0.00427,"71":0.00853,"72":0.03414,"73":0.00853,"74":0.02134,"75":0.02134,"76":0.00853,"77":0.00853,"78":0.02134,"79":0.06401,"80":0.00427,"81":0.08961,"83":0.02987,"84":0.02134,"85":0.0256,"86":0.14935,"87":0.15788,"88":0.06401,"89":0.08534,"90":0.06827,"91":0.30296,"92":0.03414,"93":0.0384,"94":0.04267,"95":0.0512,"96":0.04694,"97":0.25602,"98":0.08107,"99":0.4011,"100":3.32399,"101":14.52487,"102":1.12649,"103":0.06827,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 34 35 37 38 39 41 44 45 48 50 51 52 54 55 56 57 59 60 61 64 104"},F:{"32":0.0128,"42":0.00853,"71":0.00853,"79":0.0128,"84":0.04694,"85":0.74246,"86":0.88327,"87":0.06827,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 80 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.03414,"13":0.13228,"14":0.08107,"15":0.00853,"16":0.00427,"17":0.0256,"18":0.08961,"80":0.00427,"84":0.02134,"85":0.00853,"88":0.00853,"89":0.0256,"90":0.02134,"92":0.0128,"93":0.0256,"94":0.00853,"95":0.0128,"96":0.02134,"97":0.04694,"98":0.07254,"99":0.0384,"100":0.23042,"101":3.38373,_:"79 81 83 86 87 91"},E:{"4":0,"13":0.02134,"14":0.00853,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 9.1","7.1":0.01707,"10.1":0.00427,"11.1":0.00853,"12.1":0.0128,"13.1":0.05547,"14.1":0.06401,"15.1":0.00853,"15.2-15.3":0.0256,"15.4":0.21762,"15.5":0.05974},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00089,"6.0-6.1":0.00178,"7.0-7.1":0.13415,"8.1-8.4":0.00977,"9.0-9.2":0.00267,"9.3":0.3296,"10.0-10.2":0.008,"10.3":0.39089,"11.0-11.2":0.14481,"11.3-11.4":0.04442,"12.0-12.1":0.06574,"12.2-12.5":2.37824,"13.0-13.1":0.01333,"13.2":0.04264,"13.3":0.05597,"13.4-13.7":0.18834,"14.0-14.4":0.39445,"14.5-14.8":0.7658,"15.0-15.1":0.60589,"15.2-15.3":0.80578,"15.4":2.49728},P:{"4":1.05824,"5.0-5.4":0.03112,"6.2-6.4":0.03112,"7.2-7.4":0.2905,"8.2":0.10375,"9.2":0.0415,"10.1":0.03112,"11.1-11.2":0.06225,"12.0":0.03112,"13.0":0.14525,"14.0":0.17637,"15.0":0.05187,"16.0":0.64325},I:{"0":0,"3":0,"4":0.00068,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01766,"4.2-4.3":0.0484,"4.4":0,"4.4.3-4.4.4":0.19698},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14508,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.02293},N:{_:"10 11"},L:{"0":54.82583},S:{"2.5":0.0172},R:{_:"0"},M:{"0":0.10319},Q:{"10.4":0},O:{"0":0.47011},H:{"0":1.87253}}; 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 9839125f6b90e1..4f93bc6dade6ca 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:{"20":0.00376,"47":0.00376,"52":0.10895,"53":0.00376,"59":0.01127,"60":0.00751,"65":0.00376,"66":0.00751,"68":0.00751,"72":0.00376,"73":0.00751,"78":0.01879,"80":0.00751,"81":0.00376,"84":0.00376,"86":0.04884,"87":0.01127,"88":0.02254,"89":0.01503,"90":0.02254,"91":0.07514,"92":0.00376,"93":0.00751,"94":0.01127,"95":0.01127,"96":0.00751,"97":0.02254,"98":0.39824,"99":1.18721,"100":0.00751,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 54 55 56 57 58 61 62 63 64 67 69 70 71 74 75 76 77 79 82 83 85 101 3.5 3.6"},D:{"22":0.00376,"34":0.00751,"38":0.01879,"47":0.00751,"49":0.25172,"57":0.00376,"58":0.01127,"63":0.00751,"65":0.00751,"66":0.04508,"67":0.00376,"68":0.00376,"69":0.01127,"70":0.00751,"71":0.00751,"72":0.00751,"73":0.00751,"74":0.01127,"75":0.01127,"76":0.01503,"77":0.01127,"78":0.01503,"79":0.03757,"80":0.01879,"81":0.03006,"83":0.01879,"84":0.03381,"85":0.02254,"86":0.03757,"87":0.0526,"88":0.01879,"89":0.03381,"90":0.0263,"91":0.06387,"92":0.04133,"93":0.03381,"94":0.04133,"95":0.17658,"96":0.13525,"97":0.14277,"98":0.24796,"99":4.82023,"100":22.77493,"101":0.33437,"102":0.01127,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 59 60 61 62 64 103 104"},F:{"28":0.00751,"36":0.00751,"83":0.00376,"84":0.24796,"85":0.8303,"86":0.01127,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00376,"15":0.01127,"17":0.01127,"18":0.01503,"84":0.00376,"92":0.00751,"96":0.00751,"97":0.01879,"98":0.01503,"99":0.26299,"100":1.7733,"101":0.03381,_:"12 13 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01127,"14":0.03006,"15":0.01879,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.01503,"10.1":0.00751,"11.1":0.01879,"12.1":0.01503,"13.1":0.06011,"14.1":0.12398,"15.1":0.03006,"15.2-15.3":0.03381,"15.4":0.18409},G:{"8":0.00078,"3.2":0.00078,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01645,"6.0-6.1":0.00235,"7.0-7.1":0.0047,"8.1-8.4":0.00078,"9.0-9.2":0.00078,"9.3":0.02938,"10.0-10.2":0.00078,"10.3":0.02859,"11.0-11.2":0.00313,"11.3-11.4":0.0423,"12.0-12.1":0.00431,"12.2-12.5":0.19114,"13.0-13.1":0.00548,"13.2":0.00313,"13.3":0.01645,"13.4-13.7":0.05993,"14.0-14.4":0.11163,"14.5-14.8":0.45943,"15.0-15.1":0.13043,"15.2-15.3":1.51107,"15.4":1.29056},P:{"4":0.13457,"5.0-5.4":0.1544,"6.2-6.4":0.02059,"7.2-7.4":0.24843,"8.2":0.04117,"9.2":0.01035,"10.1":0.02077,"11.1-11.2":0.06211,"12.0":0.0207,"13.0":0.09316,"14.0":0.12422,"15.0":0.06211,"16.0":2.05994},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.0047,"4.4":0,"4.4.3-4.4.4":0.03665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00383,"11":0.18777,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":55.41419},S:{"2.5":0},R:{_:"0"},M:{"0":0.11862},Q:{"10.4":0},O:{"0":0.03746},H:{"0":0.19505}}; +module.exports={C:{"52":0.07898,"59":0.01185,"65":0.00395,"66":0.0079,"68":0.0079,"72":0.00395,"73":0.0079,"78":0.01975,"79":0.00395,"80":0.01185,"81":0.0079,"86":0.03554,"87":0.00395,"88":0.02369,"89":0.01185,"90":0.01975,"91":0.13032,"92":0.00395,"94":0.0079,"95":0.0079,"96":0.0079,"97":0.01185,"98":0.02369,"99":0.32382,"100":1.18865,"101":0.01185,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 67 69 70 71 74 75 76 77 82 83 84 85 93 102 103 3.5 3.6"},D:{"22":0.00395,"28":0.00395,"34":0.0079,"38":0.0158,"47":0.0079,"49":0.25274,"57":0.0079,"58":0.0079,"63":0.00395,"65":0.00395,"66":0.04739,"67":0.00395,"68":0.00395,"69":0.0158,"70":0.0079,"71":0.0079,"72":0.00395,"73":0.0079,"74":0.0079,"75":0.0079,"76":0.01185,"77":0.0079,"78":0.0158,"79":0.03949,"80":0.01975,"81":0.03159,"83":0.02369,"84":0.02764,"85":0.02369,"86":0.04344,"87":0.04344,"88":0.0158,"89":0.03159,"90":0.02369,"91":0.06318,"92":0.03554,"93":0.02369,"94":0.03159,"95":0.04739,"96":0.10267,"97":0.09083,"98":0.11057,"99":0.30802,"100":5.3272,"101":22.3,"102":1.9587,"103":0.0079,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 59 60 61 62 64 104"},F:{"28":0.0079,"36":0.0079,"79":0.00395,"84":0.0079,"85":0.83324,"86":0.76216,"87":0.01975,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 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.0079,"16":0.00395,"17":0.0079,"18":0.01185,"84":0.00395,"92":0.0079,"96":0.0079,"97":0.0079,"98":0.00395,"99":0.02764,"100":0.09083,"101":1.97055,_:"12 13 14 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.0079,"14":0.02764,"15":0.01185,_:"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.01185,"12.1":0.0079,"13.1":0.04739,"14.1":0.11452,"15.1":0.03159,"15.2-15.3":0.02369,"15.4":0.31592,"15.5":0.03949},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01193,"6.0-6.1":0.00199,"7.0-7.1":0.00199,"8.1-8.4":0.0008,"9.0-9.2":0.00119,"9.3":0.02387,"10.0-10.2":0.0008,"10.3":0.02228,"11.0-11.2":0.00239,"11.3-11.4":0.04495,"12.0-12.1":0.00398,"12.2-12.5":0.1655,"13.0-13.1":0.00557,"13.2":0.00278,"13.3":0.01512,"13.4-13.7":0.04535,"14.0-14.4":0.10542,"14.5-14.8":0.34293,"15.0-15.1":0.07996,"15.2-15.3":0.24268,"15.4":2.85403},P:{"4":0.12391,"5.0-5.4":0.03112,"6.2-6.4":0.03112,"7.2-7.4":0.24783,"8.2":0.10375,"9.2":0.01033,"10.1":0.03112,"11.1-11.2":0.06196,"12.0":0.02065,"13.0":0.10326,"14.0":0.10326,"15.0":0.05163,"16.0":0.8674},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00164,"4.2-4.3":0.00296,"4.4":0,"4.4.3-4.4.4":0.02565},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17376,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":53.7998},S:{"2.5":0},R:{_:"0"},M:{"0":0.11497},Q:{"10.4":0},O:{"0":0.03026},H:{"0":0.19478}}; 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 5b1933b45b5f81..8598162ab4514d 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:{"98":0.09462,"99":0.3735,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 100 101 3.5 3.6"},D:{"29":0.00996,"73":0.01494,"75":0.00498,"76":0.10458,"79":0.51294,"80":0.5229,"83":0.0249,"85":0.01992,"86":0.00498,"87":0.03486,"88":0.04482,"91":0.10458,"92":0.10458,"93":0.0498,"94":0.03486,"95":0.00498,"96":0.04482,"97":0.08466,"98":0.54282,"99":7.63932,"100":19.26762,"101":0.04482,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 77 78 81 84 89 90 102 103 104"},F:{"84":0.00498,"85":0.6225,_:"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 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.01494,"85":0.00996,"95":0.00498,"99":0.45816,"100":2.62944,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 92 93 94 96 97 98 101"},E:{"4":0,"14":0.08964,"15":0.01494,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00498,"11.1":0.00498,"12.1":0.00996,"13.1":0.11952,"14.1":0.20916,"15.1":0.7719,"15.2-15.3":0.5976,"15.4":8.28174},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.01222,"9.0-9.2":0,"9.3":0.27288,"10.0-10.2":0,"10.3":0.00815,"11.0-11.2":0.00407,"11.3-11.4":0.00407,"12.0-12.1":0,"12.2-12.5":0.27288,"13.0-13.1":0,"13.2":0,"13.3":0.01222,"13.4-13.7":0.04073,"14.0-14.4":0.17106,"14.5-14.8":0.67202,"15.0-15.1":1.34812,"15.2-15.3":14.59719,"15.4":23.2765},P:{"4":0.06741,"5.0-5.4":0.31222,"6.2-6.4":0.02118,"7.2-7.4":0.05618,"8.2":0.02357,"9.2":0.05294,"10.1":0.03021,"11.1-11.2":0.03371,"12.0":0.04235,"13.0":0.02247,"14.0":0.12706,"15.0":0.10588,"16.0":0.52806},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:{"11":0.00498,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":9.8572},S:{"2.5":0.00502},R:{_:"0"},M:{"0":0.01506},Q:{"10.4":0},O:{"0":0.15562},H:{"0":0.05228}}; +module.exports={C:{"99":0.0606,"100":0.2626,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 101 102 103 3.5 3.6"},D:{"49":0.0101,"75":0.01515,"76":0.03535,"79":0.46965,"80":0.0404,"83":0.0101,"85":0.01515,"86":0.10605,"87":0.03535,"91":0.0505,"92":0.0707,"93":0.1212,"94":0.02525,"95":0.0101,"96":0.0202,"97":0.0101,"98":0.1111,"99":0.3232,"100":9.44855,"101":13.65015,"102":0.26765,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 77 78 81 84 88 89 90 103 104"},F:{"69":0.00505,"85":0.2121,"86":0.09595,"87":0.02525,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"85":0.00505,"97":0.0101,"98":0.0101,"99":0.0202,"100":0.2222,"101":1.70185,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96"},E:{"4":0,"14":0.1515,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 9.1 10.1 11.1","7.1":0.00505,"12.1":0.01515,"13.1":0.03535,"14.1":0.26765,"15.1":0.78275,"15.2-15.3":0.45955,"15.4":15.6651,"15.5":2.18665},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.12226,"9.0-9.2":0,"9.3":0.45954,"10.0-10.2":0,"10.3":0.01686,"11.0-11.2":0.00422,"11.3-11.4":0.00843,"12.0-12.1":0,"12.2-12.5":0.1307,"13.0-13.1":0,"13.2":0.00422,"13.3":0.01265,"13.4-13.7":0.05481,"14.0-14.4":0.1855,"14.5-14.8":0.51435,"15.0-15.1":0.89379,"15.2-15.3":2.76146,"15.4":36.96562},P:{"4":0.02254,"5.0-5.4":0.24206,"6.2-6.4":0.01042,"7.2-7.4":0.14587,"8.2":0.05043,"9.2":0.04168,"10.1":0.01042,"11.1-11.2":0.02254,"12.0":0.03126,"13.0":0.11461,"14.0":0.09377,"15.0":0.09377,"16.0":0.37188},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 11"},L:{"0":7.88305},S:{"2.5":0.0297},R:{_:"0"},M:{"0":0.02475},Q:{"10.4":0},O:{"0":0.0297},H:{"0":0.00937}}; 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 1378288a1dadbc..12b49e86eec750 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:{"48":0.00973,"52":0.07295,"56":0.00973,"59":0.00486,"60":0.11185,"61":0.01459,"62":0.00973,"63":0.00486,"66":0.07295,"68":0.00973,"69":0.00973,"72":0.01459,"78":0.15562,"80":0.00486,"81":0.00973,"82":0.00973,"83":0.00973,"84":0.00973,"85":0.00486,"86":0.00486,"87":0.00973,"88":0.01945,"89":0.01945,"90":0.00973,"91":0.49116,"92":0.00973,"93":0.04863,"94":0.47171,"95":0.05349,"96":0.03404,"97":0.13616,"98":2.11054,"99":5.94259,"100":0.02432,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 64 65 67 70 71 73 74 75 76 77 79 101 3.5 3.6"},D:{"34":0.00486,"38":0.01459,"47":0.01459,"49":0.04863,"53":0.01459,"65":0.01459,"67":0.01945,"68":0.00486,"69":0.01459,"70":0.02432,"71":0.00973,"72":0.00973,"73":0.00973,"74":0.00486,"75":0.02918,"76":0.00973,"77":0.00486,"78":0.03404,"79":0.46685,"80":0.17993,"81":0.00973,"83":0.01459,"84":0.03404,"85":0.06808,"86":0.02918,"87":0.06322,"88":0.02432,"89":0.04377,"90":0.01945,"91":0.02918,"92":0.04863,"93":0.05349,"94":0.07781,"95":0.09726,"96":0.29664,"97":0.25774,"98":0.41336,"99":3.44787,"100":14.76893,"101":0.22856,"102":0.00973,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 103 104"},F:{"28":0.00486,"46":0.00973,"69":0.00486,"80":0.00973,"82":0.00486,"84":0.30637,"85":1.52212,"86":0.01945,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 81 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00973},B:{"18":0.04377,"84":0.00486,"85":0.00973,"86":0.00486,"88":0.00486,"89":0.00973,"91":0.00486,"92":0.02432,"94":0.01459,"95":0.04863,"96":0.03404,"97":0.05349,"98":0.04863,"99":1.12822,"100":6.94923,"101":0.10699,_:"12 13 14 15 16 17 79 80 81 83 87 90 93"},E:{"4":0,"8":0.00486,"12":0.00486,"13":0.04377,"14":0.28205,"15":0.12644,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02918,"11.1":0.07295,"12.1":0.10699,"13.1":0.38418,"14.1":0.84616,"15.1":0.23829,"15.2-15.3":0.28692,"15.4":1.78958},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.00316,"9.0-9.2":0,"9.3":0.07888,"10.0-10.2":0.00789,"10.3":0.11201,"11.0-11.2":0.02051,"11.3-11.4":0.01735,"12.0-12.1":0.02051,"12.2-12.5":0.45436,"13.0-13.1":0.03313,"13.2":0.0284,"13.3":0.05522,"13.4-13.7":0.15776,"14.0-14.4":0.48749,"14.5-14.8":1.69755,"15.0-15.1":0.71941,"15.2-15.3":5.71582,"15.4":6.15283},P:{"4":0.21965,"5.0-5.4":0.02177,"6.2-6.4":0.02059,"7.2-7.4":0.3167,"8.2":0.04117,"9.2":0.01022,"10.1":0.02077,"11.1-11.2":0.0523,"12.0":0.02092,"13.0":0.11505,"14.0":0.10459,"15.0":0.09413,"16.0":4.60209},I:{"0":0,"3":0,"4":0.00152,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00203,"4.2-4.3":0.00203,"4.4":0,"4.4.3-4.4.4":0.03552},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00493,"11":0.33548,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":26.82883},S:{"2.5":0},R:{_:"0"},M:{"0":0.96576},Q:{"10.4":0},O:{"0":0.07706},H:{"0":0.48147}}; +module.exports={C:{"48":0.00999,"52":0.06494,"56":0.005,"60":0.13986,"61":0.00999,"62":0.00999,"66":0.17982,"68":0.00999,"72":0.01998,"78":0.12488,"79":0.00999,"80":0.005,"81":0.00999,"82":0.005,"83":0.005,"84":0.00999,"85":0.00999,"87":0.00999,"88":0.01998,"89":0.01499,"90":0.005,"91":0.3996,"92":0.005,"93":0.03996,"94":0.39461,"95":0.03497,"96":0.01998,"97":0.03996,"98":0.08492,"99":1.34865,"100":6.24875,"101":0.01499,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 63 64 65 67 69 70 71 73 74 75 76 77 86 102 103 3.5 3.6"},D:{"34":0.00999,"38":0.00999,"47":0.01998,"49":0.03497,"53":0.00999,"65":0.00999,"67":0.01499,"69":0.005,"70":0.00999,"75":0.01499,"76":0.00999,"77":0.00999,"78":0.01499,"79":0.40959,"80":0.19481,"81":0.01998,"83":0.02997,"84":0.04496,"85":0.04995,"86":0.03497,"87":0.09491,"88":0.00999,"89":0.03996,"90":0.01998,"91":0.04496,"92":0.06494,"93":0.01998,"94":0.05994,"95":0.07992,"96":0.24975,"97":0.20979,"98":0.23477,"99":0.21978,"100":3.67133,"101":14.88011,"102":1.23876,"103":0.005,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 68 71 72 73 74 104"},F:{"46":0.005,"69":0.01499,"80":0.00999,"83":0.005,"84":0.00999,"85":1.63337,"86":0.74426,"87":0.03497,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02997,"85":0.00999,"88":0.005,"89":0.005,"92":0.02498,"94":0.005,"95":0.04496,"96":0.02498,"97":0.03497,"98":0.01998,"99":0.14985,"100":0.41958,"101":8.0969,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 90 91 93"},E:{"4":0,"12":0.005,"13":0.05994,"14":0.24476,"15":0.09491,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02498,"11.1":0.06494,"12.1":0.08991,"13.1":0.32468,"14.1":0.74925,"15.1":0.21479,"15.2-15.3":0.19481,"15.4":2.75724,"15.5":0.33966},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.00347,"8.1-8.4":0,"9.0-9.2":0.00173,"9.3":0.06065,"10.0-10.2":0,"10.3":0.07104,"11.0-11.2":0.01733,"11.3-11.4":0.02426,"12.0-12.1":0.01733,"12.2-12.5":0.4124,"13.0-13.1":0.0156,"13.2":0.02253,"13.3":0.05025,"13.4-13.7":0.14209,"14.0-14.4":0.49558,"14.5-14.8":1.49886,"15.0-15.1":0.51464,"15.2-15.3":1.29786,"15.4":12.66669},P:{"4":0.17674,"5.0-5.4":0.02178,"6.2-6.4":0.03112,"7.2-7.4":0.19348,"8.2":0.10375,"9.2":0.02079,"10.1":0.03112,"11.1-11.2":0.03119,"12.0":0.03119,"13.0":0.09357,"14.0":0.08317,"15.0":0.08317,"16.0":1.5595},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00239,"4.2-4.3":0.00359,"4.4":0,"4.4.3-4.4.4":0.03406},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2997,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":26.59496},S:{"2.5":0},R:{_:"0"},M:{"0":0.78579},Q:{"10.4":0},O:{"0":0.06006},H:{"0":0.43593}}; 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 721746d3abff86..a16db34fbebd2c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js @@ -1 +1 @@ -module.exports={C:{"34":0.01087,"48":0.01087,"51":0.08698,"52":0.10328,"53":0.08698,"54":0.06523,"55":0.08154,"56":0.0598,"57":0.0598,"58":0.02174,"59":0.02174,"66":0.01087,"68":0.00544,"77":0.00544,"78":0.07067,"79":0.01087,"80":0.01087,"81":0.01631,"82":0.01087,"83":0.01087,"84":0.00544,"85":0.00544,"87":0.01631,"88":0.01087,"89":0.01087,"90":0.00544,"91":0.0598,"93":0.01631,"94":0.13046,"95":0.01631,"96":0.01087,"97":0.04892,"98":0.6795,"99":1.88629,"100":0.01631,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 86 92 101 3.5 3.6"},D:{"26":0.01631,"34":0.03262,"38":0.09785,"39":0.02174,"40":0.02174,"41":0.02718,"42":0.02718,"43":0.02718,"44":0.02718,"45":0.03262,"46":0.03262,"47":0.03805,"48":0.03262,"49":0.08698,"50":0.01631,"51":0.02174,"52":0.02174,"53":0.04349,"54":0.02174,"55":0.02718,"56":0.03262,"57":0.03262,"58":0.03262,"59":0.08154,"60":0.08698,"61":0.03262,"62":0.03262,"63":0.03262,"64":0.03262,"65":0.05436,"66":0.01087,"67":0.01631,"68":0.01631,"69":0.02174,"70":0.00544,"71":0.00544,"72":0.01087,"73":0.01087,"74":0.02174,"75":0.01631,"76":0.01631,"77":0.00544,"78":0.02174,"79":0.30442,"80":0.08698,"81":0.05436,"83":0.06523,"84":0.10328,"85":0.09785,"86":0.16308,"87":0.18482,"88":0.02174,"89":0.02174,"90":0.01631,"91":0.04349,"92":0.10872,"93":0.05436,"94":0.09241,"95":0.08698,"96":0.32616,"97":0.39683,"98":0.79909,"99":6.77326,"100":21.09712,"101":0.28267,"102":0.01087,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 103 104"},F:{"46":0.05436,"58":0.00544,"68":0.00544,"71":0.01087,"84":0.10872,"85":0.35334,"86":0.01087,_:"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 60 62 63 64 65 66 67 69 70 72 73 74 75 76 77 78 79 80 81 82 83 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.00544,"18":0.02718,"84":0.01087,"85":0.01087,"86":0.01631,"87":0.00544,"88":0.00544,"89":0.01087,"90":0.00544,"91":0.00544,"92":0.02174,"93":0.00544,"94":0.00544,"95":0.02718,"96":0.02718,"97":0.08698,"98":0.05436,"99":1.08176,"100":5.39251,"101":0.06523,_:"12 13 14 16 17 79 80 81 83"},E:{"4":0,"9":0.00544,"11":0.00544,"12":0.01631,"13":0.10872,"14":0.41314,"15":0.20657,_:"0 5 6 7 8 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01087,"10.1":0.03262,"11.1":0.06523,"12.1":0.13046,"13.1":0.53273,"14.1":1.57644,"15.1":0.3316,"15.2-15.3":0.37508,"15.4":2.36466},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01389,"6.0-6.1":0.01157,"7.0-7.1":0.01157,"8.1-8.4":0.02083,"9.0-9.2":0.03472,"9.3":0.22682,"10.0-10.2":0.05555,"10.3":0.30088,"11.0-11.2":0.06712,"11.3-11.4":0.08101,"12.0-12.1":0.0648,"12.2-12.5":1.12483,"13.0-13.1":0.04166,"13.2":0.01852,"13.3":0.10647,"13.4-13.7":0.29394,"14.0-14.4":0.85867,"14.5-14.8":2.71486,"15.0-15.1":0.93273,"15.2-15.3":8.53342,"15.4":7.62615},P:{"4":0.6096,"5.0-5.4":0.02177,"6.2-6.4":0.02059,"7.2-7.4":0.3167,"8.2":0.04117,"9.2":0.01022,"10.1":0.02077,"11.1-11.2":0.02177,"12.0":0.03266,"13.0":0.0762,"14.0":0.08709,"15.0":0.08709,"16.0":3.02624},I:{"0":0,"3":0,"4":0.00201,"2.1":0,"2.2":0.00134,"2.3":0.00134,"4.1":0.00269,"4.2-4.3":0.00537,"4.4":0,"4.4.3-4.4.4":0.03289},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06781,"9":0.07629,"10":0.02543,"11":0.33058,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":18.3887},S:{"2.5":0},R:{_:"0"},M:{"0":0.45194},Q:{"10.4":0.0137},O:{"0":0.08674},H:{"0":0.14694}}; +module.exports={C:{"34":0.00557,"48":0.00557,"51":0.07235,"52":0.08904,"53":0.07235,"54":0.06122,"55":0.07235,"56":0.05565,"57":0.05009,"58":0.02226,"59":0.0167,"66":0.01113,"68":0.00557,"72":0.00557,"77":0.00557,"78":0.07235,"79":0.02226,"80":0.02783,"81":0.02226,"82":0.02226,"83":0.0167,"84":0.00557,"85":0.00557,"87":0.00557,"88":0.01113,"89":0.00557,"91":0.06122,"93":0.0167,"94":0.18365,"95":0.01113,"96":0.01113,"97":0.02226,"98":0.03339,"99":0.51198,"100":1.98671,"101":0.0167,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 60 61 62 63 64 65 67 69 70 71 73 74 75 76 86 90 92 102 103 3.5 3.6"},D:{"26":0.0167,"34":0.02783,"38":0.07791,"39":0.02226,"40":0.02226,"41":0.02226,"42":0.02226,"43":0.02226,"44":0.02226,"45":0.02783,"46":0.02783,"47":0.03339,"48":0.02783,"49":0.06678,"50":0.0167,"51":0.02226,"52":0.0167,"53":0.03339,"54":0.0167,"55":0.02226,"56":0.02783,"57":0.02783,"58":0.03339,"59":0.06678,"60":0.07791,"61":0.03339,"62":0.04452,"63":0.02783,"64":0.02783,"65":0.04452,"66":0.01113,"67":0.0167,"68":0.0167,"69":0.02226,"70":0.00557,"71":0.00557,"72":0.01113,"73":0.01113,"74":0.02226,"75":0.0167,"76":0.02226,"77":0.01113,"78":0.02226,"79":0.22817,"80":0.07235,"81":0.04452,"83":0.10574,"84":0.21147,"85":0.17808,"86":0.23373,"87":0.24486,"88":0.02226,"89":0.03339,"90":0.0167,"91":0.04452,"92":0.11687,"93":0.03896,"94":0.07235,"95":0.07791,"96":0.30051,"97":0.25043,"98":0.35616,"99":0.74015,"100":6.66131,"101":21.00788,"102":1.113,"103":0.0167,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 104"},F:{"28":0.00557,"46":0.03896,"68":0.01113,"70":0.01113,"71":0.01113,"72":0.00557,"85":0.32834,"86":0.23373,"87":0.02226,_:"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 69 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:{"16":0.00557,"18":0.03896,"83":0.00557,"84":0.0167,"85":0.0167,"86":0.0167,"89":0.00557,"90":0.00557,"92":0.02226,"94":0.00557,"95":0.02783,"96":0.03339,"97":0.02783,"98":0.02226,"99":0.11687,"100":0.42294,"101":6.1382,_:"12 13 14 15 17 79 80 81 87 88 91 93"},E:{"4":0,"12":0.0167,"13":0.10574,"14":0.40068,"15":0.18365,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01113,"10.1":0.02783,"11.1":0.05565,"12.1":0.11687,"13.1":0.51198,"14.1":1.42464,"15.1":0.27269,"15.2-15.3":0.26156,"15.4":4.63008,"15.5":0.30608},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01155,"6.0-6.1":0.01155,"7.0-7.1":0.01385,"8.1-8.4":0.02309,"9.0-9.2":0.03233,"9.3":0.19858,"10.0-10.2":0.04618,"10.3":0.25631,"11.0-11.2":0.04849,"11.3-11.4":0.07158,"12.0-12.1":0.05773,"12.2-12.5":0.99984,"13.0-13.1":0.03233,"13.2":0.01616,"13.3":0.09698,"13.4-13.7":0.26785,"14.0-14.4":0.75969,"14.5-14.8":2.27907,"15.0-15.1":0.63962,"15.2-15.3":1.61175,"15.4":15.61408},P:{"4":0.35936,"5.0-5.4":0.02178,"6.2-6.4":0.03112,"7.2-7.4":0.19348,"8.2":0.10375,"9.2":0.01033,"10.1":0.03112,"11.1-11.2":0.02178,"12.0":0.02178,"13.0":0.06534,"14.0":0.07623,"15.0":0.06534,"16.0":1.11074},I:{"0":0,"3":0,"4":0.00458,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00196,"4.2-4.3":0.00523,"4.4":0,"4.4.3-4.4.4":0.02814},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05163,"9":0.05163,"10":0.02213,"11":0.48677,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":17.56654},S:{"2.5":0},R:{_:"0"},M:{"0":0.41689},Q:{"10.4":0.01331},O:{"0":0.07096},H:{"0":0.13436}}; 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 9d13404d1833ae..3448a68d86060e 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:{"78":0.01376,"80":0.00688,"81":0.00344,"90":0.01032,"92":0.01376,"97":0.01032,"98":0.27512,"99":0.78409,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 82 83 84 85 86 87 88 89 91 93 94 95 96 100 101 3.5 3.6"},D:{"29":0.00344,"39":0.00688,"49":0.04127,"63":0.01032,"65":0.00688,"70":0.0172,"73":0.00688,"76":0.00344,"77":0.00344,"78":0.00344,"79":0.03439,"83":0.05502,"85":0.00344,"86":0.02063,"87":0.05502,"88":0.00688,"90":0.00688,"91":0.03439,"92":0.00688,"93":0.14788,"94":0.03783,"95":0.02751,"96":0.141,"97":0.27512,"98":0.45739,"99":3.55593,"100":14.05175,"101":0.14788,"102":0.00344,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 69 71 72 74 75 80 81 84 89 103 104"},F:{"84":0.08598,"85":0.40924,_:"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 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.0172,"17":0.00688,"18":0.03783,"84":0.03439,"85":0.0172,"90":0.00688,"91":0.00344,"92":0.00688,"94":0.01376,"95":0.00344,"96":0.0172,"97":0.07222,"98":0.03095,"99":0.99731,"100":5.35108,"101":0.05502,_:"13 14 15 16 79 80 81 83 86 87 88 89 93"},E:{"4":0,"10":0.00688,"12":0.02063,"13":0.04815,"14":0.17195,"15":0.11693,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01032,"11.1":0.01376,"12.1":0.09629,"13.1":0.31983,"14.1":0.67061,"15.1":0.16507,"15.2-15.3":0.25793,"15.4":1.84674},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.0056,"9.3":0.03643,"10.0-10.2":0.02522,"10.3":0.08406,"11.0-11.2":0.0056,"11.3-11.4":0.03643,"12.0-12.1":0.03082,"12.2-12.5":0.46235,"13.0-13.1":0.0056,"13.2":0,"13.3":0.03082,"13.4-13.7":0.18494,"14.0-14.4":0.55202,"14.5-14.8":3.56708,"15.0-15.1":1.22452,"15.2-15.3":11.08514,"15.4":10.67883},P:{"4":0.19411,"5.0-5.4":0.1544,"6.2-6.4":0.02059,"7.2-7.4":0.3167,"8.2":0.04117,"9.2":0.01022,"10.1":0.02077,"11.1-11.2":0.11238,"12.0":0.01093,"13.0":0.15324,"14.0":0.13281,"15.0":0.12259,"16.0":7.10016},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00063,"4.4":0,"4.4.3-4.4.4":0.01249},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05502,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":29.73137},S:{"2.5":0},R:{_:"0"},M:{"0":0.43303},Q:{"10.4":0},O:{"0":0.05249},H:{"0":0.11802}}; +module.exports={C:{"4":0.00343,"52":0.01717,"78":0.00687,"90":0.00343,"96":0.00687,"97":0.00343,"98":0.0103,"99":0.29876,"100":0.91344,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 101 102 103 3.5 3.6"},D:{"29":0.00343,"49":0.04808,"52":0.00687,"55":0.0103,"59":0.00343,"63":0.00687,"67":0.00687,"70":0.00687,"72":0.04121,"77":0.00687,"78":0.00343,"79":0.04121,"80":0.00343,"81":0.00343,"83":0.01717,"84":0.0103,"85":0.05838,"87":0.0206,"88":0.0103,"89":0.03091,"90":0.00687,"91":0.04464,"92":0.00687,"93":0.04464,"94":0.02747,"95":0.0103,"96":0.09615,"97":0.08585,"98":0.14766,"99":0.37087,"100":4.35088,"101":14.01415,"102":0.82416,"103":0.00687,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 56 57 58 60 61 62 64 65 66 68 69 71 73 74 75 76 86 104"},F:{"84":0.00343,"85":0.27815,"86":0.21978,"87":0.0103,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.01717,"15":0.00343,"16":0.00687,"18":0.01374,"84":0.05838,"85":0.01717,"87":0.00343,"88":0.00343,"96":0.00343,"97":0.02404,"98":0.00687,"99":0.07898,"100":0.32966,"101":4.99304,_:"12 14 17 79 80 81 83 86 89 90 91 92 93 94 95"},E:{"4":0,"11":0.00343,"12":0.00343,"13":0.05494,"14":0.25068,"15":0.06181,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0103,"11.1":0.02404,"12.1":0.04121,"13.1":0.22664,"14.1":0.61469,"15.1":0.12706,"15.2-15.3":0.10645,"15.4":3.01162,"15.5":0.23008},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.08472,"10.0-10.2":0.00529,"10.3":0.04501,"11.0-11.2":0,"11.3-11.4":0.01853,"12.0-12.1":0.01853,"12.2-12.5":0.39447,"13.0-13.1":0.00529,"13.2":0,"13.3":0.02118,"13.4-13.7":0.17208,"14.0-14.4":0.51889,"14.5-14.8":2.62095,"15.0-15.1":0.49507,"15.2-15.3":1.99086,"15.4":20.0701},P:{"4":0.15275,"5.0-5.4":0.03112,"6.2-6.4":0.03112,"7.2-7.4":0.19348,"8.2":0.10375,"9.2":0.01033,"10.1":0.03112,"11.1-11.2":0.1833,"12.0":0.1222,"13.0":0.07128,"14.0":0.2444,"15.0":0.11202,"16.0":2.34217},I:{"0":0,"3":0,"4":0.00079,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00053,"4.4":0,"4.4.3-4.4.4":0.00525},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04808,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":31.3438},S:{"2.5":0},R:{_:"0"},M:{"0":0.32173},Q:{"10.4":0},O:{"0":0.0394},H:{"0":0.11189}}; 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 d26b147fd92e62..f35a36afc1ad30 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:{"43":0.01676,"48":0.01676,"52":0.02793,"61":0.02234,"72":0.01676,"78":0.03351,"87":0.00559,"88":0.00559,"91":0.01117,"95":0.00559,"96":0.21223,"97":0.01117,"98":1.32365,"99":3.00473,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 93 94 100 101 3.5 3.6"},D:{"49":0.0391,"67":0.01117,"76":0.21223,"79":0.02234,"80":0.01676,"84":0.04468,"86":0.01117,"92":0.02793,"93":0.01676,"94":0.00559,"95":0.00559,"96":0.13404,"97":0.17872,"98":0.19548,"99":5.02092,"100":27.2939,"101":0.34069,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 77 78 81 83 85 87 88 89 90 91 102 103 104"},F:{"28":0.00559,"83":0.01117,"84":0.0391,"85":0.34627,_:"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 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.00559,"98":0.05027,"99":0.79866,"100":7.57326,"101":0.06702,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97"},E:{"4":0,"12":0.00559,"13":0.00559,"14":0.60318,"15":0.39095,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.03351,"12.1":0.08378,"13.1":0.93828,"14.1":1.98268,"15.1":0.2234,"15.2-15.3":0.24016,"15.4":1.19519},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.00109,"8.1-8.4":0.00328,"9.0-9.2":0,"9.3":0.0558,"10.0-10.2":0.00766,"10.3":1.08211,"11.0-11.2":0,"11.3-11.4":0.03501,"12.0-12.1":0.88188,"12.2-12.5":1.59089,"13.0-13.1":0.20132,"13.2":0.00875,"13.3":0.02298,"13.4-13.7":0.03939,"14.0-14.4":0.38514,"14.5-14.8":1.29219,"15.0-15.1":0.25384,"15.2-15.3":2.95091,"15.4":2.12811},P:{"4":1.00715,"5.0-5.4":0.31222,"6.2-6.4":0.23164,"7.2-7.4":0.07071,"8.2":0.02357,"9.2":0.29207,"10.1":0.03021,"11.1-11.2":0.03536,"12.0":0.03536,"13.0":0.03536,"14.0":0.03536,"15.0":0.02357,"16.0":3.94821},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00074,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00809},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.1117,"11":0.07819,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":28.18716},S:{"2.5":0},R:{_:"0"},M:{"0":2.0883},Q:{"10.4":0},O:{"0":0},H:{"0":0.07524}}; +module.exports={C:{"52":0.17889,"78":0.02168,"80":0.01084,"88":0.08132,"91":0.103,"94":0.01626,"98":0.06505,"99":1.2143,"100":3.23634,"101":0.00542,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 92 93 95 96 97 102 103 3.5 3.6"},D:{"49":0.02711,"65":0.00542,"76":1.10046,"79":0.04879,"84":0.01084,"86":0.00542,"87":0.04879,"92":0.00542,"96":0.03253,"97":0.03795,"98":0.18431,"99":0.11926,"100":7.0202,"101":24.75771,"102":1.37693,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 85 88 89 90 91 93 94 95 103 104"},F:{"85":0.412,"86":0.25479,"87":0.01084,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01626,"97":0.01626,"99":0.03795,"100":0.22768,"101":5.92515,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98"},E:{"4":0,"12":0.01626,"13":0.01626,"14":0.3361,"15":0.22768,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.206,"10.1":0.02168,"11.1":0.01084,"12.1":0.04337,"13.1":0.53126,"14.1":1.21973,"15.1":0.47705,"15.2-15.3":0.11384,"15.4":2.14672,"15.5":0.07047},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.00097,"7.0-7.1":0.01072,"8.1-8.4":0.00585,"9.0-9.2":0.00292,"9.3":0.05166,"10.0-10.2":0.0117,"10.3":0.4961,"11.0-11.2":0.0039,"11.3-11.4":0.00487,"12.0-12.1":0.97368,"12.2-12.5":1.13645,"13.0-13.1":0.12768,"13.2":0,"13.3":0.01949,"13.4-13.7":0.03704,"14.0-14.4":0.22807,"14.5-14.8":0.69688,"15.0-15.1":0.23294,"15.2-15.3":1.0536,"15.4":4.65203},P:{"4":1.07918,"5.0-5.4":0.24206,"6.2-6.4":0.39335,"7.2-7.4":0.07996,"8.2":0.05043,"9.2":0.29249,"10.1":0.03026,"11.1-11.2":0.02285,"12.0":0.03427,"13.0":0.02285,"14.0":0.02285,"15.0":0.1412,"16.0":1.07379},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00845,"4.4":0,"4.4.3-4.4.4":0.04648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.03795,"11":0.04879,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":31.2503},S:{"2.5":0},R:{_:"0"},M:{"0":2.48585},Q:{"10.4":0},O:{"0":0.04578},H:{"0":0.03901}}; 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 7ee8daf00b549b..1504343fb39d4a 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:{"44":0.00344,"52":0.00687,"68":0.19585,"78":0.19242,"79":0.00344,"81":0.00344,"84":0.00687,"87":0.00344,"88":0.00344,"89":0.00687,"91":0.02062,"94":0.00344,"95":0.00687,"96":0.02062,"97":0.00344,"98":0.09964,"99":0.3058,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 82 83 85 86 90 92 93 100 101 3.5 3.6"},D:{"11":0.00344,"22":0.00687,"34":0.00687,"38":0.01718,"49":0.03092,"53":0.05498,"55":0.00344,"56":0.00687,"57":0.00687,"62":0.01031,"63":0.00687,"64":0.00344,"65":0.01031,"66":0.00344,"67":0.00687,"68":0.03092,"69":0.01718,"70":0.01031,"71":0.00687,"72":0.00687,"73":0.00687,"74":0.02062,"75":0.01031,"77":0.00687,"78":0.00687,"79":0.70438,"80":0.06185,"81":0.01031,"83":0.04123,"84":0.01718,"85":0.02749,"86":0.05498,"87":0.19929,"88":0.02749,"89":0.05498,"90":0.03436,"91":0.03436,"92":0.04467,"93":0.04467,"94":0.02062,"95":0.04123,"96":0.13057,"97":0.15806,"98":0.27832,"99":4.44275,"100":19.51648,"101":0.2955,"102":0.01031,"103":0.00344,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 58 59 60 61 76 104"},F:{"28":0.02062,"36":0.00687,"40":0.00687,"46":0.01374,"62":0.03436,"77":0.00687,"78":0.00687,"79":0.00344,"82":0.0378,"83":0.0378,"84":0.44324,"85":1.88293,"86":0.02405,_:"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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 80 81 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00687},B:{"18":0.04123,"84":0.03092,"89":0.00344,"92":0.00687,"96":0.00687,"97":0.02749,"98":0.01031,"99":0.15118,"100":0.92772,"101":0.01718,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"11":0.01031,"13":0.01031,"14":0.09964,"15":0.02749,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00687,"11.1":0.00344,"12.1":0.02405,"13.1":0.09964,"14.1":0.20272,"15.1":0.09621,"15.2-15.3":0.06528,"15.4":0.23021},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00896,"6.0-6.1":0.00269,"7.0-7.1":0.02956,"8.1-8.4":0,"9.0-9.2":0.00448,"9.3":0.01612,"10.0-10.2":0.00717,"10.3":0.1039,"11.0-11.2":0.01344,"11.3-11.4":0.03314,"12.0-12.1":0.00985,"12.2-12.5":0.48549,"13.0-13.1":0.02508,"13.2":0.00717,"13.3":0.03941,"13.4-13.7":0.14959,"14.0-14.4":0.38696,"14.5-14.8":1.23342,"15.0-15.1":0.59745,"15.2-15.3":2.67913,"15.4":3.11893},P:{"4":0.74033,"5.0-5.4":0.02177,"6.2-6.4":0.02028,"7.2-7.4":0.10142,"8.2":0.04117,"9.2":0.02028,"10.1":0.02077,"11.1-11.2":0.08113,"12.0":0.03042,"13.0":0.17241,"14.0":0.15212,"15.0":0.15212,"16.0":3.33657},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00355,"4.2-4.3":0.00621,"4.4":0,"4.4.3-4.4.4":0.02306},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04123,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":51.17532},S:{"2.5":0},R:{_:"0"},M:{"0":0.06563},Q:{"10.4":0},O:{"0":0.36753},H:{"0":0.62756}}; +module.exports={C:{"52":0.00916,"59":0.01526,"68":0.18312,"75":0.00305,"78":0.17702,"79":0.0061,"80":0.0061,"82":0.0061,"83":0.02136,"84":0.0061,"88":0.00916,"89":0.0061,"91":0.01526,"97":0.00305,"98":0.00305,"99":0.12208,"100":0.29604,"101":0.00305,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 81 85 86 87 90 92 93 94 95 96 102 103 3.5 3.6"},D:{"22":0.0061,"38":0.01831,"49":0.02747,"53":0.04578,"56":0.00305,"57":0.0061,"58":0.0061,"63":0.0061,"65":0.0061,"66":0.00305,"67":0.01526,"68":0.01831,"69":0.01221,"70":0.0061,"71":0.0061,"72":0.01221,"73":0.00305,"74":0.04273,"75":0.00916,"76":0.00305,"77":0.05494,"78":0.00305,"79":0.6104,"80":0.03052,"81":0.01831,"83":0.03968,"84":0.02136,"85":0.0763,"86":0.05494,"87":0.12818,"88":0.01831,"89":0.03968,"90":0.02442,"91":0.03357,"92":0.03357,"93":0.01526,"94":0.02747,"95":0.02747,"96":0.06409,"97":0.07325,"98":0.08851,"99":0.17396,"100":5.30438,"101":15.11961,"102":0.81794,"103":0.01221,_:"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 47 48 50 51 52 54 55 59 60 61 62 64 104"},F:{"28":0.01526,"36":0.00305,"40":0.00305,"42":0.00305,"46":0.00916,"62":0.02747,"72":0.0061,"77":0.0061,"79":0.01221,"82":0.03662,"83":0.00305,"84":0.02442,"85":1.18418,"86":0.7691,"87":0.02747,_:"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 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 73 74 75 76 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00305},B:{"18":0.03052,"83":0.0061,"84":0.0061,"89":0.00305,"92":0.00305,"97":0.0061,"98":0.01221,"99":0.02442,"100":0.04578,"101":1.16586,_:"12 13 14 15 16 17 79 80 81 85 86 87 88 90 91 93 94 95 96"},E:{"4":0,"13":0.01221,"14":0.08546,"15":0.01221,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00305,"11.1":0.00305,"12.1":0.02747,"13.1":0.06409,"14.1":0.19228,"15.1":0.04578,"15.2-15.3":0.04273,"15.4":0.41507,"15.5":0.03052},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01083,"6.0-6.1":0,"7.0-7.1":0.01625,"8.1-8.4":0,"9.0-9.2":0.00542,"9.3":0.01715,"10.0-10.2":0.00722,"10.3":0.08754,"11.0-11.2":0.01083,"11.3-11.4":0.03069,"12.0-12.1":0.00903,"12.2-12.5":0.55505,"13.0-13.1":0.02076,"13.2":0.00451,"13.3":0.04422,"13.4-13.7":0.13628,"14.0-14.4":0.41787,"14.5-14.8":0.95577,"15.0-15.1":0.41155,"15.2-15.3":0.80595,"15.4":5.47289},P:{"4":0.67164,"5.0-5.4":0.02178,"6.2-6.4":0.01018,"7.2-7.4":0.11194,"8.2":0.10375,"9.2":0.01018,"10.1":0.02035,"11.1-11.2":0.10176,"12.0":0.03053,"13.0":0.24423,"14.0":0.14247,"15.0":0.11194,"16.0":1.66891},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00225,"4.2-4.3":0.00526,"4.4":0,"4.4.3-4.4.4":0.02028},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06409,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":54.78664},S:{"2.5":0},R:{_:"0"},M:{"0":0.07644},Q:{"10.4":0},O:{"0":0.31965},H:{"0":0.74999}}; 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 8e18e4d7debe8e..74639eb450c4c4 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:{"45":0.54612,"48":0.00333,"52":0.15984,"56":0.00333,"65":0.00666,"66":0.00666,"68":0.01665,"72":0.00666,"78":0.00999,"80":0.00666,"83":0.00999,"84":0.00666,"87":0.00333,"88":0.02664,"89":0.00999,"91":0.02331,"93":0.00666,"94":0.00999,"95":0.01998,"96":0.00666,"97":0.04329,"98":0.58941,"99":2.05461,"100":0.00666,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 67 69 70 71 73 74 75 76 77 79 81 82 85 86 90 92 101 3.5 3.6"},D:{"22":0.00333,"26":0.00999,"34":0.00333,"38":0.01332,"42":0.00999,"43":0.00333,"49":0.14652,"51":0.00666,"53":0.02331,"55":0.00999,"63":0.00999,"64":0.00333,"65":0.00666,"66":0.00333,"68":0.01332,"70":0.02664,"71":0.00666,"72":0.01332,"73":0.00999,"74":0.01998,"75":0.00666,"76":0.02997,"77":0.00999,"78":0.00999,"79":0.1998,"80":0.01332,"81":0.02331,"83":0.02331,"84":0.03663,"85":0.00999,"86":0.01998,"87":0.04995,"88":0.01998,"89":0.05994,"90":0.01998,"91":0.0333,"92":0.06327,"93":0.08991,"94":0.04329,"95":0.02331,"96":0.08658,"97":0.11322,"98":0.2331,"99":3.44988,"100":18.83448,"101":0.27972,"102":0.01998,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 44 45 46 47 48 50 52 54 56 57 58 59 60 61 62 67 69 103 104"},F:{"28":0.01665,"36":0.00666,"40":0.00999,"46":0.00666,"72":0.00333,"83":0.00333,"84":0.22977,"85":1.00566,"86":0.01998,_:"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 73 74 75 76 77 78 79 80 81 82 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.00999,"84":0.00333,"85":0.02664,"92":0.01998,"96":0.00999,"97":0.00666,"98":0.01665,"99":0.20313,"100":1.63503,"101":0.01998,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.00666,"13":0.00999,"14":0.03996,"15":0.01665,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00666,"12.1":0.01665,"13.1":0.04329,"14.1":0.10989,"15.1":0.0333,"15.2-15.3":0.03663,"15.4":0.21645},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.01295,"8.1-8.4":0,"9.0-9.2":0.00118,"9.3":0.06768,"10.0-10.2":0.00118,"10.3":0.06121,"11.0-11.2":0.00589,"11.3-11.4":0.00765,"12.0-12.1":0.00883,"12.2-12.5":0.34019,"13.0-13.1":0.02825,"13.2":0.00235,"13.3":0.01471,"13.4-13.7":0.0671,"14.0-14.4":0.21482,"14.5-14.8":0.73629,"15.0-15.1":0.22012,"15.2-15.3":1.90693,"15.4":2.18473},P:{"4":0.227,"5.0-5.4":0.02043,"6.2-6.4":0.3663,"7.2-7.4":0.05159,"8.2":0.04117,"9.2":0.02064,"10.1":0.01022,"11.1-11.2":0.12382,"12.0":0.02064,"13.0":0.10318,"14.0":0.1135,"15.0":0.06191,"16.0":2.55888},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00386,"4.2-4.3":0.01288,"4.4":0,"4.4.3-4.4.4":0.09662},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07326,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":57.48171},S:{"2.5":0},R:{_:"0"},M:{"0":0.18673},Q:{"10.4":0},O:{"0":0.02668},H:{"0":0.21467}}; +module.exports={C:{"45":0.64501,"52":0.48459,"56":0.00334,"63":0.00334,"65":0.00334,"66":0.00668,"68":0.01003,"72":0.00668,"78":0.01003,"79":0.01337,"80":0.00668,"83":0.01003,"84":0.00334,"88":0.00668,"89":0.00668,"91":0.01671,"94":0.00334,"95":0.02339,"96":0.00668,"97":0.03342,"98":0.02339,"99":0.45785,"100":2.02859,"101":0.01003,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 64 67 69 70 71 73 74 75 76 77 81 82 85 86 87 90 92 93 102 103 3.5 3.6"},D:{"22":0.00668,"26":0.01003,"34":0.00334,"38":0.01337,"43":0.01003,"47":0.00668,"49":0.13702,"51":0.00668,"53":0.03008,"55":0.01003,"63":0.00334,"65":0.00668,"67":0.00334,"68":0.02339,"69":0.00668,"70":0.02005,"71":0.00668,"72":0.01671,"73":0.00668,"74":0.01337,"76":0.01337,"77":0.01337,"78":0.00668,"79":0.14371,"80":0.01003,"81":0.01671,"83":0.02339,"84":0.02339,"85":0.01003,"86":0.02339,"87":0.05013,"88":0.01003,"89":0.0401,"90":0.01337,"91":0.02674,"92":0.04345,"93":0.03008,"94":0.05681,"95":0.02005,"96":0.07018,"97":0.09358,"98":0.08355,"99":0.20052,"100":4.19421,"101":16.70332,"102":1.84478,"103":0.00668,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 50 52 54 56 57 58 59 60 61 62 64 66 75 104"},F:{"28":0.01671,"36":0.00668,"40":0.00334,"46":0.01003,"71":0.00668,"84":0.01337,"85":0.64835,"86":0.76532,"87":0.03008,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00668,"15":0.00334,"18":0.01671,"85":0.02674,"92":0.01003,"96":0.00334,"98":0.01003,"99":0.01003,"100":0.08021,"101":1.69439,_:"12 13 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 97"},E:{"4":0,"13":0.00668,"14":0.0401,"15":0.00668,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00668,"11.1":0.00334,"12.1":0.01003,"13.1":0.02674,"14.1":0.10694,"15.1":0.02339,"15.2-15.3":0.01671,"15.4":0.24397,"15.5":0.0401},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,"7.0-7.1":0.00803,"8.1-8.4":0.00124,"9.0-9.2":0.00124,"9.3":0.06422,"10.0-10.2":0.00371,"10.3":0.0704,"11.0-11.2":0.00618,"11.3-11.4":0.00741,"12.0-12.1":0.00679,"12.2-12.5":0.34582,"13.0-13.1":0.01791,"13.2":0.00185,"13.3":0.0142,"13.4-13.7":0.0562,"14.0-14.4":0.18526,"14.5-14.8":0.6268,"15.0-15.1":0.13401,"15.2-15.3":0.45698,"15.4":4.16343},P:{"4":0.24694,"5.0-5.4":0.02178,"6.2-6.4":0.01024,"7.2-7.4":0.05145,"8.2":0.02288,"9.2":0.01029,"10.1":0.02035,"11.1-11.2":0.11318,"12.0":0.02058,"13.0":0.11318,"14.0":0.12347,"15.0":0.07203,"16.0":0.9672},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00633,"4.2-4.3":0.01265,"4.4":0,"4.4.3-4.4.4":0.10754},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06016,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":57.34181},S:{"2.5":0},R:{_:"0"},M:{"0":0.1465},Q:{"10.4":0},O:{"0":0.0333},H:{"0":0.20174}}; 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 19719cc061f95e..6035da1ed38aec 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:{"45":0.02755,"78":0.01378,"80":0.00459,"87":0.06429,"91":0.00918,"92":0.00918,"95":0.00918,"96":0.00918,"97":0.01837,"98":0.50971,"99":1.41893,"100":0.00918,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 88 89 90 93 94 101 3.5 3.6"},D:{"49":0.01378,"56":0.00918,"65":0.00459,"68":0.00918,"70":0.00918,"73":0.00918,"75":0.01837,"76":0.0597,"77":0.00459,"79":0.20664,"80":0.00918,"81":0.02755,"83":0.01378,"85":0.01378,"86":0.01378,"87":0.10102,"88":0.00918,"89":0.02296,"91":0.01378,"92":0.00918,"93":0.1148,"94":0.01378,"95":0.03214,"96":0.1699,"97":0.11939,"98":0.32603,"99":5.31754,"100":20.9533,"101":0.41328,"102":0.02296,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 66 67 69 71 72 74 78 84 90 103 104"},F:{"28":0.00459,"84":0.21123,"85":0.72554,"86":0.00459,_:"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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00918,"16":0.00918,"17":0.06429,"18":0.01837,"92":0.00918,"97":0.04592,"98":0.04133,"99":1.12504,"100":6.86504,"101":0.11021,_:"12 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0.00918,"13":0.01837,"14":0.15154,"15":0.03214,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1 10.1","6.1":0.00459,"9.1":0.0597,"11.1":0.00918,"12.1":0.04133,"13.1":0.16072,"14.1":0.5189,"15.1":0.24338,"15.2-15.3":0.1148,"15.4":1.16637},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02655,"6.0-6.1":0,"7.0-7.1":0.01962,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1916,"10.0-10.2":0,"10.3":0.06464,"11.0-11.2":0.00231,"11.3-11.4":0.015,"12.0-12.1":0.01039,"12.2-12.5":1.06879,"13.0-13.1":0.02078,"13.2":0.00808,"13.3":0.00923,"13.4-13.7":0.05194,"14.0-14.4":0.38897,"14.5-14.8":0.88412,"15.0-15.1":0.51016,"15.2-15.3":3.74654,"15.4":4.5187},P:{"4":0.15361,"5.0-5.4":0.02177,"6.2-6.4":0.03142,"7.2-7.4":0.26333,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.05486,"12.0":0.01047,"13.0":0.06583,"14.0":0.05486,"15.0":0.16458,"16.0":4.99237},I:{"0":0,"3":0,"4":0.00028,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00028,"4.2-4.3":0.00169,"4.4":0,"4.4.3-4.4.4":0.01939},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.02296,"11":0.12398,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.02164},N:{_:"10 11"},L:{"0":37.9952},S:{"2.5":0},R:{_:"0"},M:{"0":0.50304},Q:{"10.4":0},O:{"0":0.02705},H:{"0":0.19459}}; +module.exports={C:{"45":0.00913,"78":0.0137,"87":0.04566,"91":0.00913,"94":0.00457,"98":0.00913,"99":0.36985,"100":1.72138,"101":0.0274,"102":0.00457,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 95 96 97 103 3.5 3.6"},D:{"49":0.00913,"50":0.00913,"65":0.00457,"70":0.0137,"74":0.00457,"75":0.01826,"76":0.0274,"77":0.00913,"79":0.20547,"80":0.04566,"81":0.03196,"83":0.0137,"84":0.00457,"85":0.00457,"86":0.00913,"87":0.04109,"90":0.00913,"91":0.00913,"93":0.06849,"94":0.01826,"95":0.01826,"96":0.06392,"97":0.09132,"98":0.09589,"99":0.30136,"100":5.73033,"101":18.0357,"102":1.73051,"103":0.01826,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 78 88 89 92 104"},F:{"28":0.00913,"85":0.48856,"86":0.484,"87":0.03196,_:"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:{"16":0.00913,"18":0.0137,"92":0.00457,"97":0.00457,"98":0.00913,"99":0.09589,"100":0.46573,"101":8.99959,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0.00457,"8":0.00913,"13":0.00913,"14":0.14155,"15":0.02283,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 7.1","6.1":0.00457,"9.1":0.11872,"10.1":0.00457,"11.1":0.00913,"12.1":0.0274,"13.1":0.15524,"14.1":0.32419,"15.1":0.08675,"15.2-15.3":0.26483,"15.4":2.22821,"15.5":0.2009},G:{"8":0,"3.2":0.00124,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0174,"6.0-6.1":0,"7.0-7.1":0.01988,"8.1-8.4":0.00124,"9.0-9.2":0.00124,"9.3":0.21126,"10.0-10.2":0,"10.3":0.04474,"11.0-11.2":0.00249,"11.3-11.4":0.01616,"12.0-12.1":0.0087,"12.2-12.5":0.60147,"13.0-13.1":0.01243,"13.2":0.00746,"13.3":0.01367,"13.4-13.7":0.05344,"14.0-14.4":0.30571,"14.5-14.8":0.64248,"15.0-15.1":0.39642,"15.2-15.3":0.85374,"15.4":9.21096},P:{"4":0.15157,"5.0-5.4":0.02178,"6.2-6.4":0.02097,"7.2-7.4":0.30314,"8.2":0.10375,"9.2":0.03044,"10.1":0.02035,"11.1-11.2":0.06496,"12.0":0.01048,"13.0":0.07579,"14.0":0.14074,"15.0":0.11909,"16.0":1.80802},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00078,"4.2-4.3":0.00104,"4.4":0,"4.4.3-4.4.4":0.03079},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0137,"11":0.07306,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.02717},N:{_:"10 11"},L:{"0":37.05547},S:{"2.5":0},R:{_:"0"},M:{"0":0.59231},Q:{"10.4":0},O:{"0":0.04891},H:{"0":0.15434}}; 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 91d85c4ac8428d..5b108b2b8924aa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js @@ -1 +1 @@ -module.exports={C:{"40":0.02049,"43":0.00878,"47":0.01171,"48":0.00293,"51":0.00878,"52":0.05269,"53":0.00878,"54":0.00293,"55":0.00585,"56":0.00878,"57":0.00585,"58":0.00293,"65":0.00293,"68":0.00293,"72":0.00878,"78":0.01464,"79":0.00585,"80":0.01171,"81":0.00585,"82":0.00293,"83":0.00293,"84":0.00585,"86":0.00293,"87":0.00293,"88":0.00585,"89":0.01171,"90":0.00585,"91":0.03512,"92":0.00878,"93":0.00585,"94":0.00878,"95":0.01171,"96":0.00878,"97":0.02634,"98":0.55906,"99":2.16891,"100":0.19611,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 49 50 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 77 85 101 3.5 3.6"},D:{"39":0.00585,"41":0.00293,"42":0.00293,"43":0.00293,"45":0.00293,"46":0.00293,"47":0.00293,"48":0.00585,"49":0.00878,"50":0.00585,"53":0.00293,"55":0.00585,"56":0.00878,"57":0.00293,"58":0.00293,"60":0.00293,"61":0.00293,"62":0.00585,"63":0.00585,"64":0.01171,"65":0.00293,"66":0.00293,"67":0.00293,"69":0.00585,"70":0.00585,"71":0.00585,"72":0.00585,"73":0.01171,"74":0.00585,"75":0.00293,"76":0.00293,"77":0.00585,"78":0.00585,"79":0.02634,"80":0.01756,"81":0.02634,"83":0.04391,"84":0.0761,"85":0.08781,"86":0.09952,"87":0.07318,"88":0.01756,"89":0.0322,"90":0.01464,"91":0.0322,"92":0.0322,"93":0.02927,"94":0.0322,"95":0.0322,"96":0.07318,"97":0.11123,"98":0.14342,"99":2.22745,"100":14.7872,"101":0.30441,"102":0.02927,"103":0.00585,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 44 51 52 54 59 68 104"},F:{"28":0.00585,"36":0.00293,"46":0.00585,"68":0.00585,"69":0.00293,"70":0.00585,"71":0.00293,"84":0.08781,"85":0.50637,"86":0.01171,_:"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 72 73 74 75 76 77 78 79 80 81 82 83 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.00585,"16":0.00293,"18":0.01464,"84":0.00878,"86":0.00293,"89":0.00878,"92":0.00878,"94":0.00293,"96":0.00878,"97":0.00585,"98":0.00878,"99":0.12001,"100":0.95128,"101":0.01756,_:"13 14 15 17 79 80 81 83 85 87 88 90 91 93 95"},E:{"4":0,"13":0.00878,"14":0.01464,"15":0.00878,_:"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","12.1":0.00293,"13.1":0.01464,"14.1":0.04098,"15.1":0.01171,"15.2-15.3":0.02049,"15.4":0.11708},G:{"8":0,"3.2":0.00084,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00295,"6.0-6.1":0.00021,"7.0-7.1":0.05589,"8.1-8.4":0.00021,"9.0-9.2":0.00295,"9.3":0.02193,"10.0-10.2":0.00295,"10.3":0.0251,"11.0-11.2":0.00675,"11.3-11.4":0.00464,"12.0-12.1":0.00506,"12.2-12.5":0.16639,"13.0-13.1":0.00464,"13.2":0.00211,"13.3":0.01076,"13.4-13.7":0.03712,"14.0-14.4":0.08246,"14.5-14.8":0.1782,"15.0-15.1":0.1122,"15.2-15.3":0.61623,"15.4":0.76786},P:{"4":0.28277,"5.0-5.4":0.02177,"6.2-6.4":0.03142,"7.2-7.4":0.10473,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.02095,"12.0":0.01047,"13.0":0.06284,"14.0":0.05237,"15.0":0.04189,"16.0":0.76453},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.00586,"4.4":0,"4.4.3-4.4.4":0.205},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00591,"9":0.00591,"10":0.00296,"11":0.26913,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":65.72941},S:{"2.5":0.00707},R:{_:"0"},M:{"0":0.1273},Q:{"10.4":0},O:{"0":2.80758},H:{"0":2.46388}}; +module.exports={C:{"40":0.01698,"41":0.00566,"43":0.00566,"44":0.00283,"47":0.00566,"51":0.00566,"52":0.05094,"53":0.00566,"54":0.00283,"55":0.00566,"56":0.01132,"57":0.00566,"65":0.00566,"68":0.00283,"72":0.00849,"78":0.01415,"79":0.00849,"80":0.00849,"81":0.00566,"82":0.00849,"83":0.00566,"84":0.00566,"86":0.00283,"88":0.00566,"89":0.01132,"91":0.03396,"92":0.00566,"93":0.00283,"94":0.00566,"95":0.00849,"96":0.00849,"97":0.01415,"98":0.02547,"99":0.3113,"100":2.33758,"101":0.20659,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 42 45 46 48 49 50 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 77 85 87 90 102 103 3.5 3.6"},D:{"38":0.00566,"41":0.00283,"42":0.00566,"43":0.00283,"47":0.00283,"48":0.00283,"49":0.01132,"50":0.00283,"53":0.00283,"55":0.00283,"56":0.00566,"58":0.00566,"62":0.00283,"63":0.00566,"64":0.00849,"65":0.00566,"66":0.00566,"67":0.00283,"69":0.00849,"70":0.00566,"71":0.00566,"72":0.00566,"73":0.01132,"74":0.00849,"75":0.00283,"76":0.00283,"77":0.00566,"78":0.00849,"79":0.03113,"80":0.02547,"81":0.02264,"83":0.06226,"84":0.07358,"85":0.08773,"86":0.13584,"87":0.10471,"88":0.00849,"89":0.02547,"90":0.01415,"91":0.02547,"92":0.03396,"93":0.01415,"94":0.02547,"95":0.03113,"96":0.06226,"97":0.07924,"98":0.07075,"99":0.1415,"100":1.981,"101":13.08592,"102":1.59612,"103":0.03396,"104":0.00566,_:"4 5 6 7 8 9 10 11 12 13 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 44 45 46 51 52 54 57 59 60 61 68"},F:{"28":0.00849,"36":0.00566,"46":0.00566,"68":0.01132,"69":0.00849,"70":0.00566,"71":0.00849,"84":0.00566,"85":0.22923,"86":0.3396,"87":0.04245,_:"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 72 73 74 75 76 77 78 79 80 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.00849,"16":0.00566,"18":0.01698,"84":0.01132,"85":0.00566,"86":0.00566,"89":0.00566,"92":0.01132,"96":0.00566,"97":0.00283,"98":0.00283,"99":0.00849,"100":0.03396,"101":1.02163,_:"13 14 15 17 79 80 81 83 87 88 90 91 93 94 95"},E:{"4":0,"13":0.00849,"14":0.01415,"15":0.00566,_:"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","12.1":0.00283,"13.1":0.01415,"14.1":0.03113,"15.1":0.00849,"15.2-15.3":0.00849,"15.4":0.15282,"15.5":0.02264},G:{"8":0,"3.2":0.00084,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00315,"6.0-6.1":0.00042,"7.0-7.1":0.05043,"8.1-8.4":0.00021,"9.0-9.2":0.00252,"9.3":0.01933,"10.0-10.2":0.00252,"10.3":0.02417,"11.0-11.2":0.00357,"11.3-11.4":0.00357,"12.0-12.1":0.00462,"12.2-12.5":0.17043,"13.0-13.1":0.00357,"13.2":0.00168,"13.3":0.00883,"13.4-13.7":0.0332,"14.0-14.4":0.08006,"14.5-14.8":0.15025,"15.0-15.1":0.07523,"15.2-15.3":0.20174,"15.4":1.26044},P:{"4":0.28305,"5.0-5.4":0.02178,"6.2-6.4":0.02097,"7.2-7.4":0.10483,"8.2":0.10375,"9.2":0.03044,"10.1":0.02035,"11.1-11.2":0.02097,"12.0":0.01048,"13.0":0.0629,"14.0":0.05242,"15.0":0.03145,"16.0":0.34595},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00247,"4.2-4.3":0.00494,"4.4":0,"4.4.3-4.4.4":0.1575},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00283,"11":0.14999,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":66.68831},S:{"2.5":0.00717},R:{_:"0"},M:{"0":0.12906},Q:{"10.4":0},O:{"0":2.88951},H:{"0":2.55232}}; 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 5ac570f2fff00c..b9f0a483cd54dd 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:{"52":0.0334,"56":0.02004,"78":0.08016,"84":0.01336,"87":0.12024,"88":0.00668,"89":0.00668,"90":0.01336,"91":0.10688,"94":0.00668,"95":0.01336,"96":0.01336,"97":0.0334,"98":0.7014,"99":1.96392,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 92 93 100 101 3.5 3.6"},D:{"49":0.04676,"66":0.02672,"67":0.01336,"69":0.01336,"74":0.0334,"75":0.04676,"76":0.04676,"77":0.04008,"78":0.48764,"79":0.67468,"80":0.02672,"81":0.02004,"83":0.24716,"84":0.02004,"85":0.0334,"86":0.04676,"87":0.14028,"88":0.02004,"89":0.06012,"90":0.05344,"91":0.04008,"92":0.08016,"93":0.0668,"94":0.0668,"95":0.04676,"96":0.2672,"97":0.2672,"98":0.64796,"99":11.62988,"100":30.37396,"101":0.34736,"102":0.01336,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 68 70 71 72 73 103 104"},F:{"84":0.1336,"85":0.4008,"86":0.01336,_:"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 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.01336,"86":0.01336,"87":0.01336,"89":0.01336,"90":0.00668,"91":0.02004,"92":0.01336,"94":0.0334,"95":0.02004,"96":0.0668,"97":0.11356,"98":0.18036,"99":2.171,"100":8.79088,"101":0.12692,_:"12 13 14 15 16 17 79 80 81 83 84 85 88 93"},E:{"4":0,"13":0.0334,"14":0.18036,"15":0.08016,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00668,"11.1":0.0334,"12.1":0.0668,"13.1":0.30728,"14.1":0.60788,"15.1":0.21376,"15.2-15.3":0.24716,"15.4":1.42952},G:{"8":0.00235,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00235,"7.0-7.1":0.00235,"8.1-8.4":0.00941,"9.0-9.2":0,"9.3":0.05059,"10.0-10.2":0.00353,"10.3":0.08236,"11.0-11.2":0.01412,"11.3-11.4":0.03412,"12.0-12.1":0.01529,"12.2-12.5":0.37766,"13.0-13.1":0.02,"13.2":0.00471,"13.3":0.03647,"13.4-13.7":0.11883,"14.0-14.4":0.4659,"14.5-14.8":1.17533,"15.0-15.1":0.55649,"15.2-15.3":4.34956,"15.4":4.44133},P:{"4":0.07449,"5.0-5.4":0.02177,"6.2-6.4":0.3663,"7.2-7.4":0.02093,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.02128,"12.0":0.08373,"13.0":0.04257,"14.0":0.06385,"15.0":0.03193,"16.0":2.51152},I:{"0":0,"3":0,"4":0.00081,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00244,"4.2-4.3":0.00569,"4.4":0,"4.4.3-4.4.4":0.0309},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2004,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":15.20776},S:{"2.5":0},R:{_:"0"},M:{"0":0.2324},Q:{"10.4":0},O:{"0":0.02324},H:{"0":0.09744}}; +module.exports={C:{"52":0.03396,"56":0.00679,"78":0.06113,"87":0.20376,"88":0.00679,"90":0.00679,"91":0.10867,"95":0.01358,"97":0.01358,"98":0.02717,"99":0.5094,"100":2.20061,"101":0.00679,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 92 93 94 96 102 103 3.5 3.6"},D:{"49":0.04754,"66":0.02038,"67":0.02038,"69":0.02038,"74":0.03396,"75":0.03396,"76":0.04754,"77":0.03396,"78":0.46186,"79":0.65882,"80":0.02038,"81":0.00679,"83":0.24451,"84":0.03396,"85":0.02717,"86":0.02717,"87":0.06792,"88":0.01358,"89":0.03396,"90":0.03396,"91":0.04075,"92":0.06113,"93":0.06792,"94":0.07471,"95":0.04754,"96":0.14263,"97":0.1698,"98":0.19697,"99":0.9305,"100":8.9994,"101":32.32992,"102":2.52662,"103":0.00679,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 68 70 71 72 73 104"},F:{"85":0.35998,"86":0.3396,"87":0.00679,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01358,"86":0.00679,"87":0.00679,"91":0.00679,"92":0.01358,"95":0.01358,"96":0.01358,"97":0.06113,"98":0.05434,"99":0.10188,"100":0.63845,"101":9.91632,_:"12 13 14 15 16 17 79 80 81 83 84 85 88 89 90 93 94"},E:{"4":0,"11":0.00679,"13":0.03396,"14":0.18338,"15":0.07471,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00679,"11.1":0.02717,"12.1":0.06113,"13.1":0.27847,"14.1":0.55015,"15.1":0.1698,"15.2-15.3":0.17659,"15.4":2.42474,"15.5":0.20376},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.00128,"8.1-8.4":0.00767,"9.0-9.2":0.00128,"9.3":0.04477,"10.0-10.2":0.00384,"10.3":0.08186,"11.0-11.2":0.01407,"11.3-11.4":0.03326,"12.0-12.1":0.01407,"12.2-12.5":0.35559,"13.0-13.1":0.01407,"13.2":0.00512,"13.3":0.03581,"13.4-13.7":0.10489,"14.0-14.4":0.40547,"14.5-14.8":1.07572,"15.0-15.1":0.41059,"15.2-15.3":1.00281,"15.4":9.16852},P:{"4":0.04303,"5.0-5.4":0.02178,"6.2-6.4":0.44592,"7.2-7.4":0.03228,"8.2":0.10375,"9.2":0.03044,"10.1":0.02035,"11.1-11.2":0.01076,"12.0":0.05309,"13.0":0.03228,"14.0":0.05379,"15.0":0.03228,"16.0":0.82841},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00348,"4.2-4.3":0.00261,"4.4":0,"4.4.3-4.4.4":0.03562},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1698,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":15.49645},S:{"2.5":0},R:{_:"0"},M:{"0":0.21173},Q:{"10.4":0},O:{"0":0.01925},H:{"0":0.09111}}; 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 5f570e96cd7e48..8af495c9078105 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:{"30":0.00242,"38":0.00242,"43":0.00727,"44":0.00242,"45":0.00485,"47":0.01696,"52":0.03877,"56":0.00485,"60":0.00485,"65":0.00242,"72":0.01938,"76":0.28349,"78":0.01212,"79":0.00242,"84":0.02908,"86":0.00242,"89":0.00242,"90":0.01696,"91":0.18173,"92":0.00485,"93":0.00485,"95":0.02665,"96":0.12357,"97":0.02665,"98":0.97405,"99":2.56596,"100":0.01212,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 39 40 41 42 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 70 71 73 74 75 77 80 81 82 83 85 87 88 94 101 3.5 3.6"},D:{"18":0.00242,"37":0.00242,"39":0.00485,"46":0.00485,"49":0.00969,"50":0.00727,"55":0.00242,"56":0.04119,"59":0.00242,"60":0.00485,"62":0.00242,"63":0.00485,"64":0.00485,"65":0.00485,"67":0.00242,"70":0.00242,"74":0.00727,"75":0.00485,"76":0.00969,"77":0.01212,"78":0.00242,"79":0.00485,"80":0.01454,"81":0.00969,"83":0.00242,"85":0.00242,"86":0.01212,"87":0.02181,"88":0.01212,"89":0.00727,"90":0.02423,"91":0.11388,"92":0.0315,"93":0.00727,"94":0.00485,"95":0.01454,"96":0.04361,"97":0.36345,"98":0.15507,"99":1.57495,"100":7.45557,"101":0.10177,"102":0.00485,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 40 41 42 43 44 45 47 48 51 52 53 54 57 58 61 66 68 69 71 72 73 84 103 104"},F:{"79":0.00727,"83":0.00485,"84":0.06784,"85":0.64936,"86":0.01454,"87":0.00242,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01454,"13":0.01212,"14":0.00485,"16":0.00969,"17":0.01938,"18":0.04846,"81":0.00242,"84":0.01212,"85":0.00969,"89":0.00727,"90":0.00485,"92":0.01454,"93":0.00242,"94":0.00969,"96":0.02423,"97":0.00727,"98":0.03635,"99":0.35134,"100":1.68883,"101":0.03392,_:"15 79 80 83 86 87 88 91 95"},E:{"4":0,"13":0.00969,"14":0.02423,"15":0.02181,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00242,"11.1":0.00242,"12.1":0.00242,"13.1":0.02665,"14.1":0.01938,"15.1":0.07511,"15.2-15.3":0.01938,"15.4":0.04119},G:{"8":0.00157,"3.2":0,"4.0-4.1":0.00157,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00681,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02304,"10.0-10.2":0.00262,"10.3":0.04241,"11.0-11.2":0.05865,"11.3-11.4":0.02042,"12.0-12.1":0.10891,"12.2-12.5":0.64353,"13.0-13.1":0.04084,"13.2":0.0178,"13.3":0.04084,"13.4-13.7":0.16913,"14.0-14.4":0.72731,"14.5-14.8":0.57756,"15.0-15.1":0.39743,"15.2-15.3":1.06243,"15.4":1.29283},P:{"4":0.01098,"5.0-5.4":0.01098,"6.2-6.4":0.02084,"7.2-7.4":0.07688,"8.2":0.04117,"9.2":0.06589,"10.1":0.0207,"11.1-11.2":0.12081,"12.0":0.02084,"13.0":0.04393,"14.0":0.03295,"15.0":0.02196,"16.0":0.59305},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00301,"4.2-4.3":0.00482,"4.4":0,"4.4.3-4.4.4":0.15128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15265,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01515},N:{_:"10 11"},L:{"0":68.41867},S:{"2.5":0.02273},R:{_:"0"},M:{"0":0.44704},Q:{"10.4":0.11366},O:{"0":0.75012},H:{"0":5.16486}}; +module.exports={C:{"41":0.0115,"43":0.0092,"47":0.0207,"48":0.0069,"49":0.0023,"52":0.0138,"54":0.0023,"68":0.0046,"69":0.0023,"72":0.0115,"75":0.0046,"76":0.0575,"78":0.0092,"79":0.0023,"80":0.0046,"89":0.0069,"91":0.1334,"92":0.0092,"93":0.0023,"94":0.0023,"95":0.0046,"96":0.115,"97":0.0115,"98":0.3864,"99":0.7038,"100":2.6289,"101":0.0207,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 46 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 77 81 82 83 84 85 86 87 88 90 102 103 3.5 3.6"},D:{"25":0.0069,"26":0.0046,"29":0.0046,"33":0.0575,"49":0.0115,"54":0.0115,"62":0.0046,"63":0.0023,"65":0.0046,"68":0.0115,"70":0.0023,"72":0.0046,"74":0.0092,"75":0.0092,"77":0.0046,"79":0.0115,"80":0.0046,"81":0.0138,"83":0.0046,"84":0.0046,"86":0.0069,"87":0.0115,"88":0.0161,"90":0.0023,"91":0.0529,"92":0.0414,"93":0.0161,"94":0.0046,"95":0.0069,"96":0.046,"97":0.0483,"98":0.0322,"99":0.1127,"100":1.817,"101":7.0173,"102":0.4278,"103":0.0069,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 55 56 57 58 59 60 61 64 66 67 69 71 73 76 78 85 89 104"},F:{"36":0.0023,"60":0.0069,"64":0.0023,"67":0.0069,"79":0.0023,"82":0.0069,"83":0.0046,"84":0.0161,"85":0.2047,"86":0.3496,"87":0.0483,_:"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 62 63 65 66 68 69 70 71 72 73 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0207,"13":0.0207,"14":0.0046,"16":0.0023,"17":0.0069,"18":0.0483,"83":0.0023,"84":0.0069,"85":0.0092,"89":0.0092,"90":0.0069,"92":0.0184,"94":0.0023,"96":0.0115,"97":0.0046,"98":0.0161,"99":0.046,"100":0.1702,"101":1.817,_:"15 79 80 81 86 87 88 91 93 95"},E:{"4":0,"12":0.0023,"14":0.0276,_:"0 5 6 7 8 9 10 11 13 15 3.1 3.2 6.1 7.1 10.1 12.1","5.1":0.0046,"9.1":0.0046,"11.1":0.0023,"13.1":0.0322,"14.1":0.0138,"15.1":0.0092,"15.2-15.3":0.0092,"15.4":0.0736,"15.5":0.0575},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.02061,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07316,"10.0-10.2":0.00206,"10.3":0.03761,"11.0-11.2":0.02679,"11.3-11.4":0.02782,"12.0-12.1":0.08243,"12.2-12.5":0.46933,"13.0-13.1":0.02267,"13.2":0.00258,"13.3":0.04328,"13.4-13.7":0.12725,"14.0-14.4":0.49973,"14.5-14.8":0.66098,"15.0-15.1":0.28077,"15.2-15.3":0.65377,"15.4":2.11946},P:{"4":0.01085,"5.0-5.4":0.02178,"6.2-6.4":0.02087,"7.2-7.4":0.05427,"8.2":0.02288,"9.2":0.05427,"10.1":0.01047,"11.1-11.2":0.08683,"12.0":0.02087,"13.0":0.01085,"14.0":0.03256,"15.0":0.04341,"16.0":0.62949},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.00442,"4.4":0,"4.4.3-4.4.4":0.202},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0874,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.0154},N:{_:"10 11"},L:{"0":71.1465},S:{"2.5":0.0154},R:{_:"0"},M:{"0":0.1617},Q:{"10.4":0.0539},O:{"0":0.7392},H:{"0":3.521}}; 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 fbb92308850f4c..0259aa0fbe1783 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:{"48":0.00385,"51":0.00769,"52":0.18845,"53":0.00385,"56":0.00769,"57":0.00385,"60":0.00769,"63":0.00385,"66":0.02692,"67":0.01154,"68":0.08077,"72":0.01538,"73":0.01154,"78":0.05,"80":0.01154,"81":0.00385,"82":0.00769,"83":0.01923,"84":0.01154,"85":0.00769,"86":0.01154,"87":0.03077,"88":0.02692,"89":0.05,"90":0.01154,"91":0.11923,"92":0.00769,"93":0.00769,"94":0.03077,"95":0.02692,"96":0.04615,"97":0.06154,"98":1.36533,"99":3.78446,"100":0.01923,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 54 55 58 59 61 62 64 65 69 70 71 74 75 76 77 79 101 3.5 3.6"},D:{"34":0.00385,"38":0.00769,"48":0.01538,"49":0.21153,"50":0.01154,"51":0.04615,"56":0.00769,"58":0.00385,"62":0.00385,"63":0.01154,"65":0.00769,"66":0.00385,"67":0.00769,"68":0.00385,"69":0.05769,"70":0.00769,"71":0.00769,"74":0.00769,"75":0.00385,"76":0.00385,"77":0.01154,"78":0.00769,"79":0.34999,"80":0.01923,"81":0.04231,"83":0.01923,"84":0.01538,"85":0.01923,"86":0.01923,"87":0.05769,"88":0.01538,"89":0.02692,"90":0.01538,"91":0.06154,"92":0.05,"93":0.05,"94":0.01923,"95":0.02692,"96":0.07307,"97":0.0923,"98":0.24614,"99":4.67674,"100":18.81079,"101":0.27691,"102":0.01538,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 52 53 54 55 57 59 60 61 64 72 73 103 104"},F:{"28":0.01154,"36":0.00769,"46":0.00769,"57":0.00385,"78":0.00769,"82":0.01538,"83":0.00769,"84":0.23845,"85":1.06919,"86":0.01923,_:"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 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00385,"17":0.00385,"18":0.01538,"84":0.01154,"92":0.00385,"95":0.01154,"96":0.00769,"97":0.01154,"98":0.01923,"99":0.32691,"100":2.2576,"101":0.02692,_:"12 13 14 15 79 80 81 83 85 86 87 88 89 90 91 93 94"},E:{"4":0,"7":0.00385,"13":0.01154,"14":0.03077,"15":0.01923,_:"0 5 6 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00385,"12.1":0.01538,"13.1":0.05384,"14.1":0.13846,"15.1":0.03077,"15.2-15.3":0.04231,"15.4":0.23461},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.00073,"7.0-7.1":0.00584,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02117,"10.0-10.2":0.00365,"10.3":0.04454,"11.0-11.2":0.01241,"11.3-11.4":0.00803,"12.0-12.1":0.01022,"12.2-12.5":0.22925,"13.0-13.1":0.00876,"13.2":0.00438,"13.3":0.02336,"13.4-13.7":0.0993,"14.0-14.4":0.24167,"14.5-14.8":0.90826,"15.0-15.1":0.29935,"15.2-15.3":2.7182,"15.4":2.65833},P:{"4":0.09377,"5.0-5.4":0.02043,"6.2-6.4":0.02084,"7.2-7.4":0.01042,"8.2":0.04117,"9.2":0.04289,"10.1":0.0207,"11.1-11.2":0.06252,"12.0":0.02084,"13.0":0.09377,"14.0":0.14587,"15.0":0.07294,"16.0":2.46939},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00297,"4.2-4.3":0.01483,"4.4":0,"4.4.3-4.4.4":0.10527},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00385,"11":0.38075,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":50.32475},S:{"2.5":0},R:{_:"0"},M:{"0":0.20305},Q:{"10.4":0},O:{"0":0.03077},H:{"0":0.27379}}; +module.exports={C:{"48":0.00398,"51":0.00797,"52":0.17928,"56":0.00797,"57":0.00398,"60":0.00398,"66":0.02789,"67":0.00797,"68":0.13944,"72":0.01195,"73":0.00797,"77":0.00398,"78":0.04781,"80":0.01992,"81":0.00797,"82":0.00398,"83":0.01992,"84":0.00797,"85":0.00797,"86":0.00797,"87":0.01594,"88":0.03984,"89":0.04781,"90":0.01195,"91":0.12749,"92":0.00398,"93":0.00398,"94":0.0239,"95":0.0239,"96":0.03187,"97":0.03984,"98":0.04781,"99":1.05576,"100":4.27085,"101":0.03187,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 53 54 55 58 59 61 62 63 64 65 69 70 71 74 75 76 79 102 103 3.5 3.6"},D:{"34":0.00398,"38":0.00797,"47":0.00398,"49":0.23506,"50":0.00797,"56":0.01992,"58":0.00398,"63":0.01195,"65":0.00398,"66":0.00797,"67":0.00398,"69":0.07968,"70":0.00398,"71":0.01195,"74":0.01195,"75":0.00797,"76":0.00797,"77":0.00797,"78":0.00797,"79":0.35458,"80":0.01195,"81":0.03187,"83":0.01594,"84":0.01992,"85":0.02789,"86":0.04382,"87":0.06374,"88":0.01594,"89":0.0239,"90":0.01195,"91":0.04382,"92":0.0757,"93":0.01594,"94":0.01594,"95":0.0239,"96":0.05976,"97":0.07968,"98":0.09562,"99":0.33067,"100":4.86048,"101":17.86426,"102":1.78483,"103":0.00797,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 55 57 59 60 61 62 64 68 72 73 104"},F:{"28":0.00797,"36":0.00398,"46":0.00797,"57":0.00398,"78":0.00797,"82":0.00797,"84":0.00797,"85":0.62947,"86":0.82469,"87":0.04382,_:"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 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 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:{"16":0.01195,"18":0.01594,"86":0.00398,"92":0.00398,"95":0.00797,"96":0.00398,"97":0.00398,"98":0.00797,"99":0.01992,"100":0.16334,"101":2.55374,_:"12 13 14 15 17 79 80 81 83 84 85 87 88 89 90 91 93 94"},E:{"4":0,"7":0.00398,"13":0.01195,"14":0.03586,"15":0.01594,_:"0 5 6 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00797,"12.1":0.01594,"13.1":0.05179,"14.1":0.10757,"15.1":0.0239,"15.2-15.3":0.0239,"15.4":0.37051,"15.5":0.05578},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.00159,"7.0-7.1":0.00396,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0214,"10.0-10.2":0.00396,"10.3":0.04359,"11.0-11.2":0.02061,"11.3-11.4":0.00713,"12.0-12.1":0.00951,"12.2-12.5":0.23222,"13.0-13.1":0.00951,"13.2":0.00317,"13.3":0.02219,"13.4-13.7":0.08481,"14.0-14.4":0.23143,"14.5-14.8":0.78068,"15.0-15.1":0.21796,"15.2-15.3":0.61662,"15.4":5.61141},P:{"4":0.07303,"5.0-5.4":0.02178,"6.2-6.4":0.02087,"7.2-7.4":0.05234,"8.2":0.02288,"9.2":0.09421,"10.1":0.01047,"11.1-11.2":0.0626,"12.0":0.02087,"13.0":0.08346,"14.0":0.11476,"15.0":0.0626,"16.0":0.99113},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00285,"4.2-4.3":0.00997,"4.4":0,"4.4.3-4.4.4":0.09545},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00407,"11":0.39035,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":48.99586},S:{"2.5":0},R:{_:"0"},M:{"0":0.18647},Q:{"10.4":0},O:{"0":0.03609},H:{"0":0.25626}}; 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 0d89c331d372fc..daf9b89ee8e7c6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js @@ -1 +1 @@ -module.exports={C:{"34":0.00931,"52":0.01241,"63":0.01241,"78":0.01552,"83":0.06206,"89":0.0031,"91":0.00621,"97":0.00621,"98":0.2079,"99":0.67645,"100":0.0031,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 90 92 93 94 95 96 101 3.5 3.6"},D:{"38":0.00621,"39":0.0031,"47":0.0031,"49":0.02793,"53":0.00621,"55":0.00621,"56":0.00931,"63":0.01241,"65":0.00931,"68":0.00621,"69":0.0031,"73":0.00931,"74":0.00931,"75":0.01862,"76":0.00621,"78":0.00931,"79":0.08378,"80":0.01552,"81":0.00931,"83":0.00931,"84":0.00621,"85":0.0031,"86":0.01862,"87":0.02482,"88":0.01241,"89":0.03103,"90":0.01241,"91":0.02482,"92":0.04655,"93":0.05585,"94":0.01862,"95":0.01241,"96":0.25134,"97":0.08688,"98":0.22652,"99":3.43502,"100":17.14408,"101":0.22962,"102":0.0031,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 61 62 64 66 67 70 71 72 77 103 104"},F:{"28":0.00931,"46":0.00931,"79":0.00621,"82":0.02172,"83":0.02482,"84":0.14894,"85":0.12102,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.0031,"18":0.02482,"84":0.0031,"85":0.0031,"89":0.01241,"90":0.0031,"91":0.0031,"92":0.00931,"94":0.0031,"95":0.0031,"96":0.00931,"97":0.04034,"98":0.06516,"99":0.53992,"100":2.66548,"101":0.02793,_:"12 13 14 15 16 79 80 81 83 86 87 88 93"},E:{"4":0,"13":0.04965,"14":0.13653,"15":0.08688,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03413,"11.1":0.00931,"12.1":0.03724,"13.1":0.17377,"14.1":0.49027,"15.1":0.13033,"15.2-15.3":0.2079,"15.4":0.71369},G:{"8":0.00187,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00748,"6.0-6.1":0.00187,"7.0-7.1":0.01683,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05049,"10.0-10.2":0.00187,"10.3":0.32162,"11.0-11.2":0.03366,"11.3-11.4":0.01683,"12.0-12.1":0.0187,"12.2-12.5":0.40576,"13.0-13.1":0.03179,"13.2":0.04675,"13.3":0.05049,"13.4-13.7":0.17764,"14.0-14.4":0.63763,"14.5-14.8":2.06248,"15.0-15.1":1.12754,"15.2-15.3":6.29962,"15.4":7.38415},P:{"4":0.13345,"5.0-5.4":0.02177,"6.2-6.4":0.02028,"7.2-7.4":0.08212,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.19504,"12.0":0.04106,"13.0":0.13345,"14.0":0.18478,"15.0":0.20531,"16.0":3.49019},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00207,"4.4":0,"4.4.3-4.4.4":0.01862},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0031,"11":0.11481,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":42.97166},S:{"2.5":0},R:{_:"0"},M:{"0":0.26894},Q:{"10.4":0},O:{"0":2.73082},H:{"0":0.63328}}; +module.exports={C:{"34":0.01833,"52":0.01466,"59":0.11731,"78":0.00367,"89":0.00367,"91":0.011,"98":0.00367,"99":0.14297,"100":0.65621,"101":0.00367,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"29":0.00367,"38":0.00733,"39":0.00367,"49":0.05132,"55":0.02566,"56":0.00733,"63":0.022,"65":0.29695,"67":0.00733,"68":0.00367,"69":0.00367,"71":0.04766,"73":0.00733,"74":0.011,"75":0.00367,"78":0.00367,"79":0.08798,"80":0.022,"81":0.00733,"83":0.011,"84":0.03666,"85":0.00367,"86":0.01466,"87":0.05132,"88":0.01833,"89":0.02566,"90":0.01466,"91":0.01466,"92":0.04033,"93":0.04399,"94":1.0778,"95":0.01833,"96":1.00448,"97":0.03666,"98":0.08432,"99":0.23462,"100":2.87781,"101":19.4298,"102":1.89899,"103":0.011,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 62 64 66 70 72 76 77 104"},F:{"28":0.01466,"36":0.00733,"46":0.01833,"78":0.03666,"79":0.02933,"82":0.01466,"83":0.011,"84":0.04033,"85":0.24196,"86":0.06232,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00367,"18":0.01466,"89":0.00733,"92":0.00367,"96":0.01466,"97":0.011,"98":0.01466,"99":0.05866,"100":0.21629,"101":2.9218,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95"},E:{"4":0,"11":0.00367,"13":0.04033,"14":0.13198,"15":0.05499,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03666,"11.1":0.00367,"12.1":0.01466,"13.1":0.13198,"14.1":0.63055,"15.1":0.12831,"15.2-15.3":0.19063,"15.4":1.14013,"15.5":0.12831},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00755,"6.0-6.1":0,"7.0-7.1":0.0151,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06607,"10.0-10.2":0,"10.3":0.61724,"11.0-11.2":0.00566,"11.3-11.4":0.00944,"12.0-12.1":0.02265,"12.2-12.5":0.34165,"13.0-13.1":0.04153,"13.2":0.0151,"13.3":0.05663,"13.4-13.7":0.16988,"14.0-14.4":0.57571,"14.5-14.8":1.77998,"15.0-15.1":0.73238,"15.2-15.3":1.68938,"15.4":12.72602},P:{"4":0.16233,"5.0-5.4":0.02178,"6.2-6.4":0.01018,"7.2-7.4":0.06087,"8.2":0.10375,"9.2":0.03044,"10.1":0.02035,"11.1-11.2":0.13189,"12.0":0.03044,"13.0":0.09131,"14.0":0.12175,"15.0":0.05073,"16.0":1.16674},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.00135,"4.4":0,"4.4.3-4.4.4":0.02365},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10631,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":38.72545},S:{"2.5":0},R:{_:"0"},M:{"0":0.2344},Q:{"10.4":0},O:{"0":1.74846},H:{"0":0.42583}}; 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 be9f841c3111c0..a960da4f4e1909 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:{"7":0.02693,"28":0.00449,"31":0.00449,"41":0.00898,"43":0.00224,"47":0.01122,"48":0.00449,"52":0.03366,"60":0.00673,"70":0.00898,"72":0.02244,"86":0.00449,"88":0.01346,"91":0.02244,"92":0.01346,"94":0.00224,"95":0.00673,"97":0.03815,"98":0.49368,"99":1.56631,"100":0.03366,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 42 44 45 46 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 78 79 80 81 82 83 84 85 87 89 90 93 96 101 3.5 3.6"},D:{"26":0.00673,"36":0.00673,"37":0.00673,"38":0.01122,"49":0.01795,"55":0.01122,"62":0.00449,"63":0.00449,"64":0.00898,"66":0.00224,"67":0.00449,"69":0.00449,"70":0.00898,"71":0.0561,"74":0.00673,"75":0.00449,"79":0.01122,"80":0.0202,"81":0.83252,"83":0.00673,"84":0.00224,"86":0.01346,"87":0.00673,"88":0.01571,"89":0.00898,"90":0.04937,"91":0.02468,"92":0.01122,"93":0.01122,"94":0.01795,"95":0.03366,"96":0.23113,"97":0.06283,"98":0.10098,"99":2.09141,"100":8.66184,"101":0.12342,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 65 68 72 73 76 77 78 85 102 103 104"},F:{"15":0.00224,"42":0.00224,"77":0.00449,"79":0.00898,"82":0.00449,"84":0.1324,"85":0.7495,"86":0.0202,_:"9 11 12 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 83 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.06508,"13":0.02244,"14":0.02468,"16":0.00449,"17":0.03815,"18":0.05834,"84":0.01571,"85":0.00449,"88":0.00449,"89":0.01571,"90":0.00673,"91":0.00449,"92":0.01122,"94":0.00673,"95":0.00673,"96":0.04712,"97":0.11669,"98":0.03366,"99":0.34782,"100":1.46982,"101":0.05386,_:"15 79 80 81 83 86 87 93"},E:{"4":0,"13":0.01122,"14":0.01346,"15":0.01571,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00224,"11.1":0.01122,"12.1":0.00673,"13.1":0.03815,"14.1":0.06732,"15.1":0.01795,"15.2-15.3":0.01122,"15.4":0.03815},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00223,"6.0-6.1":0,"7.0-7.1":0.01899,"8.1-8.4":0.00156,"9.0-9.2":0,"9.3":0.02234,"10.0-10.2":0,"10.3":0.01743,"11.0-11.2":0.00201,"11.3-11.4":0.0076,"12.0-12.1":0.0143,"12.2-12.5":0.45732,"13.0-13.1":0.00201,"13.2":0.01519,"13.3":0.00871,"13.4-13.7":0.06591,"14.0-14.4":0.26027,"14.5-14.8":0.31992,"15.0-15.1":0.12868,"15.2-15.3":0.49932,"15.4":0.38963},P:{"4":2.29219,"5.0-5.4":0.01005,"6.2-6.4":0.02011,"7.2-7.4":0.10053,"8.2":0.04117,"9.2":0.07037,"10.1":0.03016,"11.1-11.2":0.04021,"12.0":0.02084,"13.0":0.01005,"14.0":0.07037,"15.0":0.04021,"16.0":1.48791},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.0166,"4.4":0,"4.4.3-4.4.4":0.15309},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11444,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":55.51904},S:{"2.5":0},R:{_:"0"},M:{"0":0.03878},Q:{"10.4":0},O:{"0":0.51183},H:{"0":17.5619}}; +module.exports={C:{"24":0.04109,"28":0.00514,"47":0.00514,"50":0.00514,"53":0.0077,"56":0.01798,"64":0.00514,"65":0.00514,"66":0.02568,"67":0.00257,"73":0.00257,"74":0.00257,"77":0.00257,"82":0.00514,"84":0.0077,"88":0.01798,"91":0.01798,"94":0.00257,"95":0.01541,"96":0.01027,"97":0.00514,"98":0.03852,"99":0.40574,"100":1.57162,"101":0.02825,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 51 52 54 55 57 58 59 60 61 62 63 68 69 70 71 72 75 76 78 79 80 81 83 85 86 87 89 90 92 93 102 103 3.5 3.6"},D:{"26":0.01284,"40":0.00257,"43":0.10786,"46":0.00257,"49":0.02825,"50":0.01284,"55":0.01027,"63":0.00257,"64":0.02054,"65":0.01284,"67":0.04622,"69":0.00514,"70":0.01541,"71":0.00514,"73":0.00257,"79":0.03595,"80":0.0077,"81":0.04109,"83":0.00514,"84":0.0077,"85":0.00514,"86":0.01027,"87":0.03082,"88":0.03338,"89":0.01027,"90":0.01798,"91":0.01798,"92":0.0077,"93":0.0077,"94":0.02054,"95":0.01798,"96":0.08218,"97":0.06677,"98":0.12326,"99":0.24653,"100":2.41649,"101":7.85294,"102":1.08626,"103":0.00257,"104":0.00257,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 47 48 51 52 53 54 56 57 58 59 60 61 62 66 68 72 74 75 76 77 78"},F:{"21":0.01284,"42":0.00514,"45":0.0077,"50":0.01027,"74":0.00257,"76":0.00257,"79":0.02054,"84":0.0077,"85":0.29275,"86":0.79094,"87":0.05393,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 46 47 48 49 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 77 78 80 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.05906,"13":0.01284,"14":0.15408,"17":0.01541,"18":0.06934,"81":0.00257,"83":0.00514,"84":0.01027,"85":0.02054,"88":0.0077,"89":0.03338,"90":0.0077,"92":0.03852,"94":0.0077,"96":0.0077,"97":0.09502,"98":0.01027,"99":0.02054,"100":0.11042,"101":1.76678,_:"15 16 79 80 86 87 91 93 95"},E:{"4":0,"12":1.56391,"13":0.01284,"14":0.01027,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.07961,"14.1":0.04879,"15.1":0.02054,"15.2-15.3":0.00257,"15.4":0.04109,"15.5":0.01027},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.00655,"8.1-8.4":0,"9.0-9.2":0.00398,"9.3":0.00455,"10.0-10.2":0,"10.3":0.00455,"11.0-11.2":0.00484,"11.3-11.4":0.00085,"12.0-12.1":0.01537,"12.2-12.5":0.56923,"13.0-13.1":0.03188,"13.2":0.01395,"13.3":0.02732,"13.4-13.7":0.07315,"14.0-14.4":0.23965,"14.5-14.8":0.36602,"15.0-15.1":0.15028,"15.2-15.3":0.34439,"15.4":0.9899},P:{"4":1.50435,"5.0-5.4":0.02019,"6.2-6.4":0.03029,"7.2-7.4":0.09087,"8.2":0.02288,"9.2":0.04039,"10.1":0.02019,"11.1-11.2":0.03029,"12.0":0.02087,"13.0":0.06058,"14.0":0.03029,"15.0":0.02019,"16.0":0.43414},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0003,"4.2-4.3":0.00148,"4.4":0,"4.4.3-4.4.4":0.04281},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01027,"11":0.09758,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":60.24241},S:{"2.5":0.00743},R:{_:"0"},M:{"0":0.43849},Q:{"10.4":0.01486},O:{"0":0.49794},H:{"0":12.01772}}; 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 12b424c064277e..42e257987859b2 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:{"6":0.0024,"30":0.0024,"31":0.00481,"34":0.01922,"38":0.00481,"42":0.00481,"43":0.00481,"45":0.07209,"47":0.00481,"49":0.0024,"52":0.11054,"54":0.00481,"68":0.0024,"69":0.00481,"72":0.02643,"78":0.01682,"85":0.04085,"87":0.0024,"88":0.02884,"89":0.0024,"90":0.0024,"91":0.02643,"92":0.00481,"93":0.00961,"94":0.00721,"95":0.00481,"96":0.00961,"97":0.01922,"98":0.41812,"99":0.94198,"100":0.04085,_:"2 3 4 5 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 35 36 37 39 40 41 44 46 48 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 79 80 81 82 83 84 86 101 3.5 3.6"},D:{"26":0.01202,"37":0.0024,"40":0.0024,"43":0.00481,"44":0.00721,"46":0.0024,"47":0.00481,"49":0.09852,"51":0.00481,"55":0.00961,"57":0.01202,"58":0.00481,"59":0.00481,"61":0.0024,"63":0.08651,"64":0.00481,"65":0.0024,"67":0.00721,"69":0.00481,"70":0.01202,"71":0.01442,"72":0.0024,"73":0.00481,"74":0.02643,"75":0.00721,"76":0.01442,"77":0.00481,"78":0.06969,"79":0.01442,"80":0.02403,"81":0.01922,"83":0.01442,"84":0.02403,"85":0.26673,"86":0.04085,"87":0.04325,"88":0.03845,"89":0.06008,"90":0.01442,"91":0.06728,"92":0.06008,"93":0.01442,"94":0.08651,"95":0.04566,"96":0.09612,"97":0.19224,"98":0.25952,"99":2.23239,"100":9.24674,"101":0.09131,"102":0.01682,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 38 39 41 42 45 48 50 52 53 54 56 60 62 66 68 103 104"},F:{"57":0.00481,"79":0.00721,"82":0.00481,"83":0.00481,"84":0.11294,"85":0.57912,"86":0.01202,_:"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 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00481},B:{"12":0.00721,"13":0.0024,"14":0.00481,"15":0.00481,"16":0.00721,"17":0.00961,"18":0.04566,"84":0.00721,"85":0.00721,"89":0.01922,"90":0.00481,"92":0.02643,"95":0.0024,"96":0.00961,"97":0.00961,"98":0.01202,"99":0.23309,"100":1.00926,"101":0.00481,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"9":0.00721,"13":0.00961,"14":0.02643,"15":0.0024,_:"0 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 12.1","5.1":0.02163,"11.1":0.0024,"13.1":0.06969,"14.1":0.03124,"15.1":0.02163,"15.2-15.3":0.00721,"15.4":0.06488},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00125,"6.0-6.1":0,"7.0-7.1":0.0162,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04425,"10.0-10.2":0,"10.3":0.0268,"11.0-11.2":0.0187,"11.3-11.4":0.02306,"12.0-12.1":0.01932,"12.2-12.5":1.28019,"13.0-13.1":0.03241,"13.2":0.02057,"13.3":0.40824,"13.4-13.7":0.21627,"14.0-14.4":0.61142,"14.5-14.8":0.82146,"15.0-15.1":0.43005,"15.2-15.3":1.50519,"15.4":0.75415},P:{"4":0.01206,"5.0-5.4":0.02177,"6.2-6.4":0.3663,"7.2-7.4":0.12791,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.02411,"12.0":0.08373,"13.0":0.07234,"14.0":0.06396,"15.0":0.02411,"16.0":0.3858},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.007,"4.2-4.3":0.0182,"4.4":0,"4.4.3-4.4.4":0.4914},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01518,"8":0.01012,"11":0.07083,_:"7 9 10 5.5"},J:{"7":0,"10":0.02279},N:{_:"10 11"},L:{"0":67.37165},S:{"2.5":0.06078},R:{_:"0"},M:{"0":0.14434},Q:{"10.4":0.09876},O:{"0":0.87366},H:{"0":5.27199}}; +module.exports={C:{"31":0.00261,"43":0.01043,"45":0.09907,"47":0.00521,"48":0.01043,"50":0.00521,"52":0.00782,"56":0.00521,"59":0.00521,"68":0.00261,"69":0.00261,"70":0.00521,"72":0.01825,"74":0.00782,"75":0.00261,"78":0.073,"85":0.08864,"88":0.01304,"89":0.00782,"90":0.00521,"91":0.05996,"92":0.00261,"93":0.00782,"94":0.00521,"95":0.00521,"96":0.01043,"97":0.01825,"98":0.02607,"99":0.38584,"100":1.57984,"101":0.05475,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 46 49 51 53 54 55 57 58 60 61 62 63 64 65 66 67 71 73 76 77 79 80 81 82 83 84 86 87 102 103 3.5 3.6"},D:{"28":0.01304,"29":0.00261,"33":0.03911,"43":0.00521,"44":0.00261,"49":0.06778,"50":0.00782,"57":0.01043,"58":0.00261,"59":0.00521,"61":0.00261,"62":0.00261,"63":0.15381,"64":0.00521,"65":0.00782,"68":0.00521,"69":0.00521,"70":0.01043,"71":0.00782,"72":0.00521,"73":0.00521,"74":0.03128,"75":0.00521,"76":0.01304,"77":0.01043,"78":0.03911,"79":0.04953,"80":0.02607,"81":0.01564,"83":0.01564,"84":0.04693,"85":0.01564,"86":0.12253,"87":0.05214,"88":0.07039,"89":0.00782,"90":0.01825,"91":0.06778,"92":0.073,"93":0.02868,"94":0.10689,"95":0.05735,"96":0.15903,"97":0.0756,"98":0.21899,"99":0.23724,"100":2.59397,"101":8.65785,"102":0.7091,"103":0.00261,"104":0.00261,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 34 35 36 37 38 39 40 41 42 45 46 47 48 51 52 53 54 55 56 60 66 67"},F:{"36":0.00261,"57":0.01043,"58":0.00521,"72":0.02868,"76":0.00261,"79":0.02086,"82":0.00782,"83":0.01043,"84":0.02086,"85":0.40148,"86":0.40409,"87":0.02607,_:"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 60 62 63 64 65 66 67 68 69 70 71 73 74 75 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01304,"13":0.00521,"14":0.00261,"16":0.00782,"17":0.01043,"18":0.04432,"84":0.00782,"85":0.00521,"89":0.00782,"90":0.00521,"92":0.02346,"93":0.00261,"95":0.01043,"96":0.00261,"97":0.00261,"98":0.00782,"99":0.05214,"100":0.09646,"101":1.41299,_:"15 79 80 81 83 86 87 88 91 94"},E:{"4":0,"13":0.01043,"14":0.00782,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00521,"12.1":0.00782,"13.1":0.02607,"14.1":0.03389,"15.1":0.0365,"15.2-15.3":0.00782,"15.4":0.09907,"15.5":0.00782},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.00774,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02203,"10.0-10.2":0,"10.3":0.00953,"11.0-11.2":0.00476,"11.3-11.4":0.00476,"12.0-12.1":0.01131,"12.2-12.5":1.0121,"13.0-13.1":0.04167,"13.2":0.01072,"13.3":0.20897,"13.4-13.7":0.19468,"14.0-14.4":0.49831,"14.5-14.8":0.83171,"15.0-15.1":0.30065,"15.2-15.3":0.82278,"15.4":1.96883},P:{"4":0.07337,"5.0-5.4":0.02178,"6.2-6.4":0.44592,"7.2-7.4":0.15722,"8.2":0.02288,"9.2":0.01048,"10.1":0.02035,"11.1-11.2":0.02288,"12.0":0.05309,"13.0":0.02288,"14.0":0.01144,"15.0":0.03432,"16.0":0.20592},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00162,"4.2-4.3":0.00997,"4.4":0,"4.4.3-4.4.4":0.04754},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0073,"11":0.0657,_:"7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":68.4391},S:{"2.5":0.02218},R:{_:"0"},M:{"0":0.14045},Q:{"10.4":0.01478},O:{"0":0.49526},H:{"0":4.07299}}; 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 411a524ba1df96..a3e3ae49d4788d 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:{"78":0.02319,"79":0.03644,"91":0.00331,"95":0.00994,"96":0.00663,"97":0.00331,"98":0.11927,"99":0.381,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 80 81 82 83 84 85 86 87 88 89 90 92 93 94 100 101 3.5 3.6"},D:{"29":0.00331,"49":0.02319,"67":0.00663,"73":0.00663,"75":0.00663,"76":0.00331,"77":0.0497,"78":0.00663,"79":0.00663,"80":0.00663,"83":0.00663,"85":0.00663,"87":0.01988,"88":0.01657,"89":0.00663,"90":0.00331,"91":0.0497,"92":0.01325,"93":0.00663,"94":0.01657,"95":0.00663,"96":0.07951,"97":0.08614,"98":0.25179,"99":2.14682,"100":7.48407,"101":0.11927,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 74 81 84 86 102 103 104"},F:{"84":0.04638,"85":0.07951,_:"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 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00663,"17":0.00994,"18":0.00663,"92":0.00663,"93":0.00663,"94":0.00331,"95":0.00663,"97":0.04307,"98":0.00663,"99":0.72886,"100":2.64377,"101":0.03644,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 96"},E:{"4":0,"13":0.01988,"14":0.08283,"15":0.13915,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.04307,"10.1":0.36443,"11.1":0.01325,"12.1":0.04307,"13.1":0.36112,"14.1":0.62284,"15.1":0.7653,"15.2-15.3":0.73549,"15.4":8.52766},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.03556,"10.0-10.2":0,"10.3":0.04149,"11.0-11.2":0.02371,"11.3-11.4":0.00593,"12.0-12.1":0.02963,"12.2-12.5":0.41485,"13.0-13.1":0.01185,"13.2":0,"13.3":0.02371,"13.4-13.7":0.17779,"14.0-14.4":0.20743,"14.5-14.8":1.10232,"15.0-15.1":1.7483,"15.2-15.3":23.7295,"15.4":31.67687},P:{"4":0.197,"5.0-5.4":0.02177,"6.2-6.4":0.3663,"7.2-7.4":0.12791,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.02074,"12.0":0.08373,"13.0":0.05184,"14.0":0.01037,"15.0":0.01037,"16.0":1.66928},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:{"10":0.00331,"11":0.19215,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":5.9983},S:{"2.5":0},R:{_:"0"},M:{"0":0.04682},Q:{"10.4":0},O:{"0":0},H:{"0":0.00633}}; +module.exports={C:{"78":0.02039,"95":0.0068,"99":0.09177,"100":0.37389,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 101 102 103 3.5 3.6"},D:{"49":0.017,"67":0.04419,"72":0.0102,"76":0.0034,"77":0.03739,"78":0.0102,"79":0.02379,"80":0.0034,"83":0.0068,"85":0.0102,"86":0.02379,"87":0.0102,"88":0.0136,"90":0.0068,"91":0.05099,"92":0.0102,"93":0.0068,"94":0.017,"95":0.0102,"96":0.04759,"97":0.04079,"98":0.06798,"99":0.19714,"100":2.14137,"101":7.41662,"102":0.70699,"103":0.0068,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 73 74 75 81 84 89 104"},F:{"85":0.12576,"86":0.13256,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0068,"96":0.0068,"97":0.0034,"99":0.26512,"100":0.16315,"101":2.7124,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 98"},E:{"4":0,"13":0.0068,"14":0.10877,"15":0.09177,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.0136,"10.1":0.30251,"11.1":0.02379,"12.1":0.02719,"13.1":0.40788,"14.1":0.49965,"15.1":0.44527,"15.2-15.3":0.60502,"15.4":11.5532,"15.5":2.80078},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.029,"10.0-10.2":0,"10.3":0.04061,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.0116,"12.2-12.5":0.34225,"13.0-13.1":0.0116,"13.2":0.0058,"13.3":0.0058,"13.4-13.7":0.27264,"14.0-14.4":0.20303,"14.5-14.8":0.91654,"15.0-15.1":1.05576,"15.2-15.3":3.73575,"15.4":51.35499},P:{"4":0.20691,"5.0-5.4":0.02178,"6.2-6.4":0.44592,"7.2-7.4":0.15722,"8.2":0.02288,"9.2":0.01048,"10.1":0.02035,"11.1-11.2":0.04138,"12.0":0.05309,"13.0":0.02069,"14.0":0.01144,"15.0":0.01035,"16.0":0.50692},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:{"11":0.11217,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":6.11188},S:{"2.5":0},R:{_:"0"},M:{"0":0.06602},Q:{"10.4":0},O:{"0":0.0066},H:{"0":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 93c0021f89cccc..3e5100d30beb02 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:{"29":0.01224,"32":0.00816,"52":0.04079,"72":0.00408,"78":0.01224,"81":0.00408,"84":0.00816,"89":0.00816,"91":0.00816,"95":0.00816,"97":0.02855,"98":0.50988,"99":1.71318,"100":0.01224,_:"2 3 4 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 85 86 87 88 90 92 93 94 96 101 3.5 3.6"},D:{"38":0.06119,"43":0.00816,"47":0.05303,"49":0.21211,"50":0.00816,"55":0.02447,"62":0.02855,"65":0.02447,"68":0.01632,"69":0.00408,"70":0.00408,"72":0.03263,"73":0.02447,"74":0.00816,"75":0.01224,"76":0.00408,"78":0.02447,"79":0.19171,"80":0.03263,"81":0.04079,"83":0.03671,"84":0.00816,"87":0.11829,"88":0.01632,"89":0.03263,"90":0.00816,"91":0.04895,"92":0.08158,"93":0.05303,"94":0.01632,"95":0.03671,"96":0.08974,"97":0.12645,"98":0.16316,"99":4.39716,"100":21.53712,"101":0.2529,"102":0.01224,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 51 52 53 54 56 57 58 59 60 61 63 64 66 67 71 77 85 86 103 104"},F:{"28":0.03671,"46":0.03671,"82":0.00408,"84":0.19987,"85":0.68119,"86":0.00408,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 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.00816,"92":0.01224,"96":0.00408,"97":0.01632,"98":0.03671,"99":0.37935,"100":2.0395,"101":0.0204,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.01632,"13":0.11421,"14":0.21211,"15":0.19171,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0979,"10.1":0.00816,"11.1":0.02855,"12.1":0.07342,"13.1":0.19987,"14.1":0.77093,"15.1":0.30185,"15.2-15.3":0.30185,"15.4":1.61528},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.0071,"7.0-7.1":0.09055,"8.1-8.4":0,"9.0-9.2":0.00355,"9.3":0.37465,"10.0-10.2":0,"10.3":0.22727,"11.0-11.2":0.01776,"11.3-11.4":0.02841,"12.0-12.1":0.06215,"12.2-12.5":0.96592,"13.0-13.1":0.04794,"13.2":0.00533,"13.3":0.03906,"13.4-13.7":0.10831,"14.0-14.4":0.43147,"14.5-14.8":1.10086,"15.0-15.1":0.93751,"15.2-15.3":5.01248,"15.4":8.29376},P:{"4":0.39672,"5.0-5.4":0.02043,"6.2-6.4":0.3663,"7.2-7.4":0.05361,"8.2":0.04117,"9.2":0.04289,"10.1":0.0207,"11.1-11.2":0.02144,"12.0":0.02055,"13.0":0.06433,"14.0":0.03217,"15.0":0.03217,"16.0":1.85492},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.00776,"4.4":0,"4.4.3-4.4.4":0.01511},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04895,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":36.018},S:{"2.5":0},R:{_:"0"},M:{"0":0.28416},Q:{"10.4":0},O:{"0":1.5984},H:{"0":1.81591}}; +module.exports={C:{"44":0.01584,"48":0.00396,"52":0.03167,"55":0.01188,"78":0.0198,"89":0.00792,"95":0.00396,"97":0.0198,"98":0.0198,"99":0.43153,"100":1.93595,"101":0.03563,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 102 103 3.5 3.6"},D:{"38":0.02771,"43":0.00396,"47":0.04751,"49":0.25734,"50":0.00396,"55":0.01584,"60":0.00792,"62":0.01584,"65":0.01584,"66":0.00792,"68":0.00792,"72":0.01188,"73":0.0198,"74":0.01188,"75":0.01188,"78":0.02771,"79":0.20191,"80":0.06334,"81":0.03167,"83":0.03167,"84":0.05147,"86":0.01584,"87":0.10689,"88":0.03167,"89":0.01584,"90":0.00396,"91":0.03563,"92":0.06334,"93":0.05147,"94":0.01188,"95":0.05147,"96":0.04355,"97":0.07522,"98":0.09898,"99":0.20191,"100":4.39449,"101":18.92006,"102":1.8053,"103":0.02375,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 51 52 53 54 56 57 58 59 61 63 64 67 69 70 71 76 77 85 104"},F:{"28":0.03563,"36":0.00396,"46":0.04751,"60":0.00396,"84":0.02771,"85":0.47508,"86":0.39986,"87":0.02771,_:"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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 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:{"18":0.01188,"97":0.00792,"99":0.02375,"100":0.19399,"101":2.11015,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98"},E:{"4":0,"13":0.07126,"14":0.1544,"15":0.11877,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.20191,"10.1":0.02771,"11.1":0.03167,"12.1":0.06334,"13.1":0.21775,"14.1":0.60177,"15.1":0.22566,"15.2-15.3":0.21775,"15.4":2.79901,"15.5":0.20587},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.00704,"7.0-7.1":0.04226,"8.1-8.4":0,"9.0-9.2":0.00704,"9.3":0.42434,"10.0-10.2":0,"10.3":0.25002,"11.0-11.2":0.01937,"11.3-11.4":0.03521,"12.0-12.1":0.07219,"12.2-12.5":0.79409,"13.0-13.1":0.02289,"13.2":0.00528,"13.3":0.03345,"13.4-13.7":0.09684,"14.0-14.4":0.3275,"14.5-14.8":0.91734,"15.0-15.1":0.76944,"15.2-15.3":1.80476,"15.4":11.97126},P:{"4":0.50246,"5.0-5.4":0.02178,"6.2-6.4":0.01024,"7.2-7.4":0.05234,"8.2":0.02288,"9.2":0.09421,"10.1":0.01047,"11.1-11.2":0.0314,"12.0":0.02068,"13.0":0.05234,"14.0":0.04187,"15.0":0.0314,"16.0":0.66994},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00065,"4.2-4.3":0.00086,"4.4":0,"4.4.3-4.4.4":0.01057},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06334,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":37.3055},S:{"2.5":0},R:{_:"0"},M:{"0":0.2296},Q:{"10.4":0},O:{"0":1.45612},H:{"0":1.97346}}; 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 ac59a3a868cabf..180b32a3ba62fb 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:{"38":0.00773,"43":0.00387,"51":0.00387,"52":0.04252,"53":0.00387,"54":0.00773,"56":0.00773,"60":0.00387,"63":0.00773,"66":0.00773,"69":0.0116,"72":0.0116,"73":0.0116,"75":0.00387,"78":0.01933,"81":0.00773,"83":0.00773,"84":0.00387,"85":0.00773,"86":0.00773,"88":0.00773,"89":0.01933,"91":0.03092,"92":0.00773,"93":0.00773,"94":0.00773,"95":0.01933,"96":0.02319,"97":0.02706,"98":0.64932,"99":1.97888,"100":0.01546,"101":0.00773,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 49 50 55 57 58 59 61 62 64 65 67 68 70 71 74 76 77 79 80 82 87 90 3.5 3.6"},D:{"38":0.0116,"42":0.00387,"43":0.00773,"46":0.00387,"49":0.05411,"50":0.02706,"53":0.00387,"56":0.00387,"62":0.00773,"63":0.0116,"65":0.00387,"66":0.0116,"67":0.00773,"68":0.0116,"69":0.0116,"70":0.03865,"71":0.00773,"72":0.0116,"73":0.00773,"74":0.01546,"75":0.00773,"76":0.01546,"77":0.00773,"78":0.0116,"79":0.11595,"80":0.01933,"81":0.02319,"83":0.02319,"84":0.05411,"85":0.05025,"86":0.03865,"87":0.06957,"88":0.02319,"89":0.04638,"90":0.02319,"91":0.19712,"92":0.06571,"93":0.02706,"94":0.05798,"95":0.18166,"96":0.15074,"97":0.15847,"98":0.31693,"99":4.77328,"100":22.13486,"101":0.30534,"102":0.00773,_:"4 5 6 7 8 9 10 11 12 13 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 44 45 47 48 51 52 54 55 57 58 59 60 61 64 103 104"},F:{"28":0.03479,"46":0.00773,"72":0.03092,"77":0.00387,"79":0.00387,"83":0.00387,"84":0.25509,"85":0.99331,"86":0.0116,_:"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 73 74 75 76 78 80 81 82 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00387,"16":0.00387,"18":0.01933,"84":0.00773,"86":0.00773,"89":0.00773,"92":0.01546,"96":0.0116,"97":0.0116,"98":0.01546,"99":0.25896,"100":1.61944,"101":0.02319,_:"12 13 15 17 79 80 81 83 85 87 88 90 91 93 94 95"},E:{"4":0,"14":0.03865,"15":0.01546,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0116,"11.1":0.0116,"12.1":0.00387,"13.1":0.05411,"14.1":0.08503,"15.1":0.03479,"15.2-15.3":0.02319,"15.4":0.13141},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00026,"5.0-5.1":0.00311,"6.0-6.1":0,"7.0-7.1":0.00751,"8.1-8.4":0.00233,"9.0-9.2":0.00337,"9.3":0.02306,"10.0-10.2":0.00155,"10.3":0.0184,"11.0-11.2":0.00311,"11.3-11.4":0.00337,"12.0-12.1":0.00233,"12.2-12.5":0.1254,"13.0-13.1":0.00337,"13.2":0.00181,"13.3":0.00855,"13.4-13.7":0.03653,"14.0-14.4":0.09405,"14.5-14.8":0.27904,"15.0-15.1":0.10778,"15.2-15.3":0.89258,"15.4":0.97186},P:{"4":0.40865,"5.0-5.4":0.02043,"6.2-6.4":0.3663,"7.2-7.4":0.46995,"8.2":0.04117,"9.2":0.04087,"10.1":0.01022,"11.1-11.2":0.19411,"12.0":0.04087,"13.0":0.14303,"14.0":0.15325,"15.0":0.16346,"16.0":2.34976},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00706,"4.2-4.3":0.01177,"4.4":0,"4.4.3-4.4.4":0.06708},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08117,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01841},N:{_:"10 11"},L:{"0":54.68461},S:{"2.5":0},R:{_:"0"},M:{"0":0.1534},Q:{"10.4":0},O:{"0":0.25771},H:{"0":0.44731}}; +module.exports={C:{"44":0.01507,"51":0.00754,"52":0.03014,"56":0.00754,"60":0.00377,"63":0.00754,"68":0.00377,"69":0.00754,"72":0.0113,"73":0.00754,"75":0.00377,"76":0.00377,"78":0.02261,"83":0.00377,"84":0.00377,"85":0.00377,"86":0.00754,"88":0.00754,"89":0.00754,"91":0.03768,"93":0.00377,"94":0.00754,"95":0.00754,"96":0.0113,"97":0.0113,"98":0.04898,"99":0.44839,"100":2.12892,"101":0.02261,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 53 54 55 57 58 59 61 62 64 65 66 67 70 71 74 77 79 80 81 82 87 90 92 102 103 3.5 3.6"},D:{"38":0.0113,"41":0.01507,"47":0.00377,"49":0.04145,"50":0.02638,"53":0.00377,"62":0.00754,"63":0.01507,"65":0.00377,"66":0.00754,"67":0.00377,"68":0.01884,"69":0.01507,"70":0.02261,"71":0.00754,"72":0.0113,"73":0.00754,"74":0.01507,"75":0.00754,"76":0.03014,"77":0.00754,"78":0.0113,"79":0.11304,"80":0.02261,"81":0.02638,"83":0.01507,"84":0.02638,"85":0.07159,"86":0.06782,"87":0.0942,"88":0.01507,"89":0.03768,"90":0.02261,"91":0.27506,"92":0.06782,"93":0.02261,"94":0.03391,"95":0.03391,"96":0.11304,"97":0.12058,"98":0.23738,"99":0.22985,"100":4.31813,"101":19.94779,"102":2.0724,"103":0.0113,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 51 52 54 55 56 57 58 59 60 61 64 104"},F:{"28":0.03391,"36":0.00377,"46":0.00377,"68":0.01507,"84":0.00754,"85":0.6707,"86":0.69708,"87":0.03014,_:"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 79 80 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:{"16":0.00377,"18":0.02638,"84":0.00754,"89":0.00377,"92":0.01507,"94":0.00754,"96":0.00754,"97":0.00754,"98":0.0113,"99":0.01884,"100":0.0829,"101":1.8727,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 90 91 93 95"},E:{"4":0,"14":0.03014,"15":0.00754,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00377,"11.1":0.0113,"12.1":0.00754,"13.1":0.04898,"14.1":0.0829,"15.1":0.01507,"15.2-15.3":0.01884,"15.4":0.20347,"15.5":0.03768},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00473,"6.0-6.1":0,"7.0-7.1":0.01626,"8.1-8.4":0,"9.0-9.2":0.00355,"9.3":0.0198,"10.0-10.2":0.00177,"10.3":0.01064,"11.0-11.2":0.00236,"11.3-11.4":0.00325,"12.0-12.1":0.00266,"12.2-12.5":0.14099,"13.0-13.1":0.00532,"13.2":0.00266,"13.3":0.00739,"13.4-13.7":0.03281,"14.0-14.4":0.10109,"14.5-14.8":0.2273,"15.0-15.1":0.06828,"15.2-15.3":0.19774,"15.4":2.10537},P:{"4":0.44034,"5.0-5.4":0.02178,"6.2-6.4":0.01024,"7.2-7.4":0.49155,"8.2":0.02288,"9.2":0.04096,"10.1":0.02035,"11.1-11.2":0.12289,"12.0":0.04096,"13.0":0.16385,"14.0":0.15361,"15.0":0.11265,"16.0":1.15718},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00648,"4.2-4.3":0.00864,"4.4":0,"4.4.3-4.4.4":0.06589},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07536,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.0187},N:{_:"10 11"},L:{"0":55.68268},S:{"2.5":0},R:{_:"0"},M:{"0":0.12464},Q:{"10.4":0},O:{"0":0.24928},H:{"0":0.4484}}; 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 3faeea03fea530..fbf1bb06145e29 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:{"47":0.00779,"50":0.0039,"51":0.06234,"52":0.07013,"53":0.06234,"54":0.03117,"55":0.05844,"56":0.04286,"57":0.04286,"58":0.01558,"59":0.01558,"60":0.01558,"66":0.0039,"67":0.00779,"68":0.01558,"72":0.0039,"78":0.02338,"79":0.00779,"80":0.00779,"81":0.0039,"82":0.0039,"83":0.0039,"88":0.01169,"89":0.0039,"90":0.0039,"91":0.06234,"92":0.0039,"93":0.0039,"94":0.06234,"95":0.00779,"96":0.01558,"97":0.02338,"98":0.3935,"99":1.14932,"100":0.00779,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 61 62 63 64 65 69 70 71 73 74 75 76 77 84 85 86 87 101 3.5 3.6"},D:{"38":0.0039,"39":0.01558,"40":0.01558,"41":0.02338,"42":0.01948,"43":0.02338,"44":0.01948,"45":0.02338,"46":0.02727,"47":0.03506,"48":0.01948,"49":0.04286,"50":0.01558,"51":0.02338,"52":0.01558,"53":0.01948,"54":0.01558,"55":0.02338,"56":0.01948,"57":0.01948,"58":0.03117,"59":0.02338,"60":0.02727,"61":0.02338,"62":0.02338,"63":0.03117,"64":0.02338,"65":0.02727,"66":0.0039,"67":0.0039,"68":0.00779,"69":0.01558,"70":0.00779,"71":0.0039,"72":0.01169,"73":0.00779,"74":0.01558,"75":0.03896,"76":0.05844,"77":0.0039,"78":0.01558,"79":0.08571,"80":0.02727,"81":0.04286,"83":0.03506,"84":0.08571,"85":0.05844,"86":0.07013,"87":0.08571,"88":0.01948,"89":0.04675,"90":0.03117,"91":1.02075,"92":0.04286,"93":0.05844,"94":0.03896,"95":0.05065,"96":0.10519,"97":0.11298,"98":0.21818,"99":4.14924,"100":21.78254,"101":0.35454,"102":0.01169,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 103 104"},F:{"28":0.0039,"36":0.01558,"71":0.0039,"82":0.00779,"83":0.01169,"84":0.51817,"85":1.52334,"86":0.01558,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 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.0039,"14":0.0039,"15":0.03506,"16":0.0039,"17":0.0039,"18":0.01948,"84":0.00779,"85":0.0039,"86":0.0039,"89":0.0039,"91":0.01558,"92":0.01169,"95":0.0039,"96":0.00779,"97":0.04286,"98":0.01558,"99":0.32726,"100":2.4311,"101":0.00779,_:"13 79 80 81 83 87 88 90 93 94"},E:{"4":0,"13":0.00779,"14":0.02727,"15":0.01558,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0039,"11.1":0.00779,"12.1":0.01558,"13.1":0.04675,"14.1":0.08961,"15.1":0.03117,"15.2-15.3":0.02727,"15.4":0.18701},G:{"8":0.00294,"3.2":0.00074,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00221,"6.0-6.1":0,"7.0-7.1":0.00147,"8.1-8.4":0,"9.0-9.2":0.03532,"9.3":0.02723,"10.0-10.2":0.06181,"10.3":0.08168,"11.0-11.2":0.01324,"11.3-11.4":0.01913,"12.0-12.1":0.00515,"12.2-12.5":0.23841,"13.0-13.1":0.00662,"13.2":0.00441,"13.3":0.02502,"13.4-13.7":0.09786,"14.0-14.4":0.21707,"14.5-14.8":0.97718,"15.0-15.1":0.30831,"15.2-15.3":2.49592,"15.4":2.73359},P:{"4":0.08219,"5.0-5.4":0.02043,"6.2-6.4":0.3663,"7.2-7.4":0.25684,"8.2":0.04117,"9.2":0.01027,"10.1":0.0207,"11.1-11.2":0.08219,"12.0":0.02055,"13.0":0.08219,"14.0":0.09246,"15.0":0.06164,"16.0":2.22938},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00478,"4.2-4.3":0.01433,"4.4":0,"4.4.3-4.4.4":0.05414},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03117,"9":0.03506,"10":0.01169,"11":0.12467,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":46.8931},S:{"2.5":0},R:{_:"0"},M:{"0":0.14039},Q:{"10.4":0},O:{"0":0.10377},H:{"0":0.19648}}; +module.exports={C:{"19":0.01786,"47":0.00447,"51":0.02233,"52":0.04019,"53":0.02233,"54":0.0134,"55":0.02233,"56":0.01786,"57":0.01786,"58":0.00447,"59":0.00893,"60":0.0134,"67":0.00447,"68":0.0134,"72":0.00447,"78":0.0268,"79":0.00447,"80":0.00893,"81":0.00893,"82":0.00447,"83":0.00447,"88":0.0134,"89":0.00447,"90":0.00447,"91":0.07146,"94":0.06699,"95":0.00893,"96":0.0134,"97":0.01786,"98":0.01786,"99":0.31262,"100":1.42465,"101":0.00893,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 61 62 63 64 65 66 69 70 71 73 74 75 76 77 84 85 86 87 92 93 102 103 3.5 3.6"},D:{"38":0.00447,"39":0.00447,"40":0.00893,"41":0.01786,"42":0.00893,"43":0.00893,"44":0.00893,"45":0.00893,"46":0.0134,"47":0.0134,"48":0.00893,"49":0.03126,"50":0.00447,"51":0.0134,"52":0.00447,"53":0.00893,"54":0.00447,"55":0.0134,"56":0.00893,"57":0.00893,"58":0.0134,"59":0.00893,"60":0.0134,"61":0.00893,"62":0.00893,"63":0.02233,"64":0.00893,"65":0.0134,"67":0.00893,"68":0.00447,"69":0.0134,"70":0.00893,"72":0.00893,"73":0.00447,"74":0.01786,"75":0.03126,"76":0.03126,"77":0.00447,"78":0.0134,"79":0.09379,"80":0.02233,"81":0.03573,"83":0.04913,"84":0.09825,"85":0.08932,"86":0.09825,"87":0.10718,"88":0.02233,"89":0.04913,"90":0.03573,"91":1.30407,"92":0.04466,"93":0.04466,"94":0.04466,"95":0.03126,"96":0.08039,"97":0.08039,"98":0.10718,"99":0.24116,"100":5.31454,"101":23.1964,"102":2.07669,"103":0.01786,"104":0.00447,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 66 71"},F:{"51":0.00447,"71":0.00447,"82":0.00893,"84":0.00893,"85":1.73281,"86":1.35766,"87":0.04019,_:"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 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 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.03573,"16":0.00447,"18":0.02233,"84":0.00447,"86":0.00447,"89":0.00447,"92":0.00893,"96":0.00447,"97":0.0134,"98":0.00893,"99":0.06252,"100":0.11612,"101":3.10834,_:"12 13 14 17 79 80 81 83 85 87 88 90 91 93 94 95"},E:{"4":0,"13":0.00893,"14":0.0268,"15":0.0134,_:"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.00447,"12.1":0.0134,"13.1":0.05359,"14.1":0.08485,"15.1":0.0268,"15.2-15.3":0.0268,"15.4":0.28136,"15.5":0.04466},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00267,"6.0-6.1":0,"7.0-7.1":0.00201,"8.1-8.4":0.00067,"9.0-9.2":0.02474,"9.3":0.02607,"10.0-10.2":0.04412,"10.3":0.06485,"11.0-11.2":0.0107,"11.3-11.4":0.01738,"12.0-12.1":0.00735,"12.2-12.5":0.19722,"13.0-13.1":0.00735,"13.2":0.00535,"13.3":0.01939,"13.4-13.7":0.0829,"14.0-14.4":0.18118,"14.5-14.8":0.71669,"15.0-15.1":0.17717,"15.2-15.3":0.48738,"15.4":4.60434},P:{"4":0.0724,"5.0-5.4":0.02178,"6.2-6.4":0.01024,"7.2-7.4":0.23787,"8.2":0.02288,"9.2":0.01034,"10.1":0.02035,"11.1-11.2":0.0724,"12.0":0.02068,"13.0":0.06205,"14.0":0.0724,"15.0":0.04137,"16.0":0.76532},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00361,"4.2-4.3":0.00813,"4.4":0,"4.4.3-4.4.4":0.03253},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0134,"9":0.01786,"10":0.00447,"11":0.11612,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":44.38471},S:{"2.5":0},R:{_:"0"},M:{"0":0.13282},Q:{"10.4":0},O:{"0":0.09961},H:{"0":0.20433}}; 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 88f52890894804..0f018d8494f4f7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js @@ -1 +1 @@ -module.exports={C:{"48":0.03991,"52":0.01774,"56":0.00443,"78":0.0133,"88":0.03104,"91":0.03991,"93":0.00443,"94":0.0133,"95":0.02217,"96":0.00443,"97":0.01774,"98":0.39906,"99":0.82916,"100":0.00887,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 101 3.5 3.6"},D:{"49":0.14189,"56":0.00887,"58":0.00887,"65":0.02217,"71":0.00887,"73":0.00443,"75":0.03991,"76":0.2483,"77":0.01774,"78":0.0133,"79":0.0133,"81":0.00887,"83":0.00887,"84":0.00443,"86":0.00887,"87":0.05764,"88":0.00887,"90":0.04434,"91":0.03991,"92":0.06651,"93":0.13302,"94":0.0266,"95":0.01774,"96":0.08425,"97":0.19066,"98":0.39019,"99":3.87088,"100":15.23079,"101":0.23944,"102":0.0266,"103":0.0133,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 63 64 66 67 68 69 70 72 74 80 85 89 104"},F:{"84":0.05764,"85":0.26161,_:"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 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.0133,"15":0.00887,"16":0.01774,"17":0.01774,"18":0.05764,"93":0.01774,"94":0.00887,"95":0.03104,"96":0.0133,"97":0.0133,"98":0.08868,"99":1.03312,"100":6.52685,"101":0.06208,_:"12 14 79 80 81 83 84 85 86 87 88 89 90 91 92"},E:{"4":0,"13":0.04434,"14":0.31481,"15":0.13745,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00443,"11.1":0.04434,"12.1":0.10198,"13.1":0.43897,"14.1":0.99765,"15.1":0.31481,"15.2-15.3":0.32368,"15.4":2.69144},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.0732,"10.0-10.2":0.00542,"10.3":0.0976,"11.0-11.2":0.02169,"11.3-11.4":0.01627,"12.0-12.1":0.02169,"12.2-12.5":0.52056,"13.0-13.1":0.01084,"13.2":0,"13.3":0.04609,"13.4-13.7":0.10845,"14.0-14.4":0.63443,"14.5-14.8":2.413,"15.0-15.1":1.16583,"15.2-15.3":10.26746,"15.4":11.699},P:{"4":0.02065,"5.0-5.4":0.02177,"6.2-6.4":0.02028,"7.2-7.4":0.26839,"8.2":0.04117,"9.2":0.06194,"10.1":0.02077,"11.1-11.2":0.56775,"12.0":0.05161,"13.0":0.35097,"14.0":0.28903,"15.0":0.07226,"16.0":4.29422},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.0167},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1951,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":27.59062},S:{"2.5":0},R:{_:"0"},M:{"0":0.19478},Q:{"10.4":0},O:{"0":0.01113},H:{"0":0.02634}}; +module.exports={C:{"45":0.01341,"48":0.01788,"52":0.01341,"72":0.02683,"78":0.01788,"84":0.00894,"88":0.02683,"91":0.06707,"94":0.01788,"95":0.1386,"97":0.00447,"98":0.05365,"99":0.25485,"100":0.87185,"101":0.01341,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 96 102 103 3.5 3.6"},D:{"49":0.13413,"56":0.00894,"63":0.00894,"65":0.03577,"71":0.00894,"73":0.01788,"75":0.04024,"76":0.26826,"77":0.01341,"78":0.00894,"79":0.01341,"81":0.00447,"83":0.00894,"84":0.01341,"85":0.00894,"86":0.01341,"87":0.03577,"88":0.00447,"89":0.00447,"90":0.04024,"91":0.09389,"92":0.04024,"93":0.14307,"94":0.02236,"95":0.00894,"96":0.06259,"97":0.11178,"98":0.19225,"99":0.23696,"100":4.32793,"101":14.18648,"102":1.24294,"103":0.01788,"104":0.00894,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 66 67 68 69 70 72 74 80"},F:{"85":0.18331,"86":0.21908,"87":0.00894,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00894,"16":0.03577,"17":0.01788,"18":0.04471,"83":0.00447,"84":0.00447,"90":0.05365,"92":0.00447,"93":0.00447,"95":0.01341,"96":0.00894,"97":0.01341,"98":0.02236,"99":0.03577,"100":0.46946,"101":7.10442,_:"12 14 15 79 80 81 85 86 87 88 89 91 94"},E:{"4":0,"13":0.02683,"14":0.22802,"15":0.07601,_:"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.02683,"12.1":0.12072,"13.1":0.3398,"14.1":0.90761,"15.1":0.25485,"15.2-15.3":0.24143,"15.4":4.35475,"15.5":0.45157},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.09437,"10.0-10.2":0.00539,"10.3":0.09706,"11.0-11.2":0.01348,"11.3-11.4":0.02696,"12.0-12.1":0.01618,"12.2-12.5":0.48531,"13.0-13.1":0.01618,"13.2":0,"13.3":0.02696,"13.4-13.7":0.09167,"14.0-14.4":0.50688,"14.5-14.8":1.9089,"15.0-15.1":0.67944,"15.2-15.3":1.97361,"15.4":21.00596},P:{"4":0.0104,"5.0-5.4":0.02178,"6.2-6.4":0.01018,"7.2-7.4":0.29113,"8.2":0.10375,"9.2":0.09358,"10.1":0.02035,"11.1-11.2":0.44709,"12.0":0.03119,"13.0":0.23914,"14.0":0.19755,"15.0":0.09358,"16.0":1.82997},I:{"0":0,"3":0,"4":0.00086,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00086,"4.4":0,"4.4.3-4.4.4":0.02592},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19672,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01106},N:{_:"10 11"},L:{"0":27.10615},S:{"2.5":0},R:{_:"0"},M:{"0":0.14928},Q:{"10.4":0},O:{"0":0.01106},H:{"0":0.06281}}; 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 d24139cb879d65..2b8ee29c91d8b4 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:{"33":0.00447,"52":0.00894,"72":0.01118,"78":0.02235,"79":0.00447,"81":0.00224,"84":0.00224,"87":0.01118,"88":0.02235,"89":0.00447,"94":0.00447,"95":0.01565,"96":0.02906,"97":0.00447,"98":0.19668,"99":0.49841,"100":0.05811,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 82 83 85 86 90 91 92 93 101 3.5 3.6"},D:{"43":0.02012,"49":0.01118,"61":0.00224,"63":0.00447,"65":0.03129,"66":0.00671,"67":0.00447,"70":0.00447,"71":0.00447,"72":0.00447,"73":0.01341,"78":0.01118,"79":0.00447,"80":0.00447,"81":0.08717,"84":0.00671,"85":0.00224,"87":0.05364,"88":0.00671,"89":0.00671,"90":0.00224,"91":0.03129,"92":0.01118,"93":0.02682,"94":0.01341,"95":0.04023,"96":0.11399,"97":0.06929,"98":0.14751,"99":3.07983,"100":13.56422,"101":0.19892,"102":0.10281,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 68 69 74 75 76 77 83 86 103 104"},F:{"84":0.03353,"85":0.1721,"86":0.00447,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00447,"16":0.00224,"18":0.01341,"84":0.01788,"85":0.00894,"89":0.00671,"91":0.00447,"92":0.01565,"93":0.00671,"94":0.00894,"95":0.01565,"96":0.01565,"97":0.02459,"98":0.00671,"99":0.13857,"100":1.09739,"101":0.00671,_:"13 14 15 17 79 80 81 83 86 87 88 90"},E:{"4":0,"12":0.00224,"13":0.00894,"14":0.07823,"15":0.01788,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00447,"12.1":0.02906,"13.1":0.09387,"14.1":0.16763,"15.1":0.05811,"15.2-15.3":0.03353,"15.4":0.24809},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.00365,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02462,"10.0-10.2":0.00182,"10.3":0.00638,"11.0-11.2":0.02462,"11.3-11.4":0.00638,"12.0-12.1":0.04103,"12.2-12.5":0.41763,"13.0-13.1":0.031,"13.2":0.01277,"13.3":0.10122,"13.4-13.7":0.15684,"14.0-14.4":0.99666,"14.5-14.8":1.51642,"15.0-15.1":1.12888,"15.2-15.3":2.0918,"15.4":2.5532},P:{"4":0.16228,"5.0-5.4":0.02177,"6.2-6.4":0.3663,"7.2-7.4":0.16228,"8.2":0.04117,"9.2":0.03043,"10.1":0.02077,"11.1-11.2":0.11157,"12.0":0.02029,"13.0":0.142,"14.0":0.10143,"15.0":0.09128,"16.0":0.92297},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:{"11":0.01788,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":64.77584},S:{"2.5":0},R:{_:"0"},M:{"0":0.01553},Q:{"10.4":0},O:{"0":2.43013},H:{"0":0.49983}}; +module.exports={C:{"35":0.00461,"47":0.0023,"52":0.00691,"69":0.00461,"72":0.00691,"78":0.02303,"84":0.01152,"87":0.01382,"88":0.02303,"94":0.01382,"95":0.02073,"96":0.00921,"98":0.01382,"99":0.14739,"100":0.53199,"101":0.07139,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 80 81 82 83 85 86 89 90 91 92 93 97 102 103 3.5 3.6"},D:{"31":0.0023,"43":0.01152,"49":0.01612,"65":0.02073,"66":0.02533,"67":0.00921,"69":0.00461,"71":0.00921,"73":0.0023,"74":0.00461,"78":0.00921,"79":0.00461,"80":0.02073,"81":0.06218,"83":0.0023,"84":0.0023,"85":0.0023,"87":0.05067,"88":0.02533,"89":0.00691,"90":0.02533,"91":0.01842,"92":0.01382,"93":0.02994,"94":0.00691,"95":0.04376,"96":0.0783,"97":0.03685,"98":0.08291,"99":0.11745,"100":3.26796,"101":12.99583,"102":1.49004,"103":0.08061,"104":0.00921,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 68 70 72 75 76 77 86"},F:{"46":0.0023,"81":0.0023,"85":0.06218,"86":0.10364,"87":0.01152,_:"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 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.0023,"13":0.00461,"15":0.00461,"18":0.02303,"84":0.01152,"85":0.0023,"88":0.0023,"89":0.00461,"90":0.0023,"91":0.0023,"92":0.01842,"93":0.01152,"94":0.01612,"95":0.01612,"96":0.01382,"97":0.00461,"98":0.01152,"99":0.00921,"100":0.09673,"101":1.1492,_:"14 16 17 79 80 81 83 86 87"},E:{"4":0,"13":0.03224,"14":0.05067,"15":0.00921,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00461,"11.1":0.00921,"12.1":0.00921,"13.1":0.05988,"14.1":0.12436,"15.1":0.01612,"15.2-15.3":0.03224,"15.4":0.45599,"15.5":0.04376},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.00195,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00098,"10.0-10.2":0.00293,"10.3":0.00879,"11.0-11.2":0.00879,"11.3-11.4":0.01172,"12.0-12.1":0.02931,"12.2-12.5":0.40446,"13.0-13.1":0.02345,"13.2":0.01563,"13.3":0.09476,"13.4-13.7":0.17487,"14.0-14.4":0.95154,"14.5-14.8":1.46639,"15.0-15.1":0.69852,"15.2-15.3":1.17331,"15.4":4.70008},P:{"4":0.13489,"5.0-5.4":0.02178,"6.2-6.4":0.44592,"7.2-7.4":0.10376,"8.2":0.02288,"9.2":0.01038,"10.1":0.02035,"11.1-11.2":0.04151,"12.0":0.05309,"13.0":0.09339,"14.0":0.07263,"15.0":0.13489,"16.0":0.50844},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:{"11":0.01152,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":63.94345},S:{"2.5":0},R:{_:"0"},M:{"0":0.01539},Q:{"10.4":0},O:{"0":1.83958},H:{"0":0.64854}}; 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 911fcc5cc10b97..6c0f117d15dd88 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:{"34":0.01294,"41":0.01294,"43":0.00431,"47":0.01294,"52":0.03019,"56":0.00431,"60":0.00863,"66":0.00863,"72":0.00863,"78":0.02157,"80":0.00431,"81":0.00431,"89":0.01294,"91":0.08626,"93":0.00431,"94":0.03019,"95":0.01294,"96":0.00863,"97":0.03019,"98":0.55206,"99":1.73383,"100":0.0647,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 44 45 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 82 83 84 85 86 87 88 90 92 101 3.5 3.6"},D:{"38":0.01725,"43":0.0345,"44":0.01294,"49":0.0345,"56":0.00863,"57":0.03019,"58":0.01294,"59":0.01294,"63":0.02157,"65":0.00431,"68":0.01294,"69":0.02588,"70":0.00863,"71":0.00863,"72":0.00431,"74":0.01294,"75":0.01294,"78":0.00863,"79":0.10351,"80":0.01294,"81":0.01294,"83":0.03019,"84":0.00863,"85":0.01294,"86":0.0345,"87":0.05176,"88":0.02157,"89":0.03882,"90":0.01294,"91":0.05607,"92":0.06038,"93":0.14664,"94":0.0345,"95":0.05176,"96":0.16821,"97":0.26309,"98":0.36229,"99":4.52434,"100":21.88416,"101":0.2976,_:"4 5 6 7 8 9 10 11 12 13 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 45 46 47 48 50 51 52 53 54 55 60 61 62 64 66 67 73 76 77 102 103 104"},F:{"28":0.01294,"82":0.01294,"83":0.01294,"84":0.13802,"85":0.90142,"86":0.01294,_:"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 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.02588,"13":0.02588,"14":0.01725,"15":0.02157,"16":0.04313,"17":0.02157,"18":0.07332,"84":0.01725,"89":0.02157,"90":0.00431,"91":0.00863,"92":0.04313,"94":0.00431,"95":0.01294,"96":0.02157,"97":0.04744,"98":0.09057,"99":0.69871,"100":4.38632,"101":0.02588,_:"79 80 81 83 85 86 87 88 93"},E:{"4":0,"13":0.00863,"14":0.06901,"15":0.0345,_:"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.00863,"12.1":0.00863,"13.1":0.08195,"14.1":0.08195,"15.1":0.03882,"15.2-15.3":0.04744,"15.4":0.1984},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00973,"6.0-6.1":0.00088,"7.0-7.1":0.02785,"8.1-8.4":0.00088,"9.0-9.2":0.00044,"9.3":0.06985,"10.0-10.2":0,"10.3":0.04952,"11.0-11.2":0.00398,"11.3-11.4":0.00442,"12.0-12.1":0.02078,"12.2-12.5":0.48233,"13.0-13.1":0.00265,"13.2":0.00088,"13.3":0.01105,"13.4-13.7":0.1901,"14.0-14.4":0.19541,"14.5-14.8":0.49383,"15.0-15.1":0.2604,"15.2-15.3":1.1446,"15.4":1.44921},P:{"4":0.23802,"5.0-5.4":0.02043,"6.2-6.4":0.3663,"7.2-7.4":0.30012,"8.2":0.04117,"9.2":0.01035,"10.1":0.0207,"11.1-11.2":0.06209,"12.0":0.03105,"13.0":0.10349,"14.0":0.15523,"15.0":0.18628,"16.0":1.30396},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00132,"4.2-4.3":0.00329,"4.4":0,"4.4.3-4.4.4":0.05795},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21996,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01137},N:{_:"10 11"},L:{"0":50.61395},S:{"2.5":0.03412},R:{_:"0"},M:{"0":0.10237},Q:{"10.4":0},O:{"0":1.27958},H:{"0":1.60446}}; +module.exports={C:{"11":0.02124,"34":0.02549,"47":0.0085,"48":0.00425,"52":0.03398,"56":0.00425,"60":0.0085,"66":0.00425,"68":0.01274,"78":0.01274,"81":0.02974,"89":0.01699,"91":0.1062,"95":0.00425,"96":0.0085,"97":0.01274,"98":0.05522,"99":0.54799,"100":1.5845,"101":0.07222,_:"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 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 88 90 92 93 94 102 103 3.5 3.6"},D:{"38":0.01274,"43":0.04248,"49":0.11894,"57":0.0085,"58":0.00425,"60":0.00425,"61":0.0085,"63":0.01274,"66":0.01274,"68":0.0085,"70":0.0085,"72":0.0085,"73":0.01699,"74":0.01699,"75":0.0085,"76":0.0085,"77":0.0085,"78":0.0085,"79":0.04673,"80":0.02124,"81":0.02549,"83":0.05522,"84":0.0085,"85":0.01274,"86":0.03398,"87":0.05522,"88":0.02124,"89":0.02974,"90":0.02124,"91":0.03398,"92":0.05947,"93":0.06797,"94":0.01699,"95":0.02974,"96":0.11045,"97":0.12319,"98":0.14018,"99":0.37807,"100":5.20805,"101":19.34539,"102":1.46131,"103":0.0085,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 59 62 64 65 67 69 71 104"},F:{"28":0.01699,"84":0.02124,"85":0.31435,"86":0.62021,"87":0.02549,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03398,"13":0.02124,"14":0.02974,"15":0.03398,"16":0.03823,"17":0.01274,"18":0.08496,"84":0.01274,"89":0.0085,"90":0.00425,"92":0.02124,"93":0.01274,"94":0.01699,"95":0.01699,"96":0.02549,"97":0.01274,"98":0.05947,"99":0.08921,"100":0.3101,"101":4.60483,_:"79 80 81 83 85 86 87 88 91"},E:{"4":0,"13":0.0085,"14":0.06372,"15":0.01274,_:"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","12.1":0.0085,"13.1":0.06797,"14.1":0.1062,"15.1":0.04248,"15.2-15.3":0.14018,"15.4":0.37807,"15.5":0.06372},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00356,"5.0-5.1":0.00457,"6.0-6.1":0.00102,"7.0-7.1":0.03862,"8.1-8.4":0.00051,"9.0-9.2":0,"9.3":0.05031,"10.0-10.2":0.00102,"10.3":0.0376,"11.0-11.2":0.00254,"11.3-11.4":0.00711,"12.0-12.1":0.00508,"12.2-12.5":0.35266,"13.0-13.1":0.00457,"13.2":0.02795,"13.3":0.02287,"13.4-13.7":0.40652,"14.0-14.4":0.15245,"14.5-14.8":0.53356,"15.0-15.1":0.19869,"15.2-15.3":0.41466,"15.4":2.81315},P:{"4":0.27942,"5.0-5.4":0.02178,"6.2-6.4":0.01024,"7.2-7.4":0.27942,"8.2":0.02288,"9.2":0.01035,"10.1":0.02035,"11.1-11.2":0.05174,"12.0":0.01035,"13.0":0.18628,"14.0":0.11384,"15.0":0.0414,"16.0":0.75547},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00099,"4.2-4.3":0.00263,"4.4":0,"4.4.3-4.4.4":0.0539},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01274,"10":0.00425,"11":0.23364,_:"6 7 8 5.5"},J:{"7":0,"10":0.00575},N:{_:"10 11"},L:{"0":51.11511},S:{"2.5":0.02301},R:{_:"0"},M:{"0":0.22433},Q:{"10.4":0},O:{"0":1.27119},H:{"0":1.26883}}; 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 8303824f97f95a..5c614c5ff47365 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:{"4":0.0049,"43":0.00979,"50":0.02449,"52":0.4897,"55":0.06366,"57":0.0049,"59":0.0049,"65":0.0049,"66":0.00979,"68":0.00979,"78":0.03428,"79":0.0049,"80":0.00979,"82":0.0049,"84":0.01959,"86":0.01469,"87":0.01469,"88":0.07835,"89":0.02938,"90":0.01959,"91":0.09794,"92":0.00979,"93":0.01469,"94":0.00979,"95":0.01959,"96":0.03918,"97":0.07346,"98":0.75414,"99":1.9588,"100":0.00979,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 53 54 56 58 60 61 62 63 64 67 69 70 71 72 73 74 75 76 77 81 83 85 101 3.5 3.6"},D:{"22":0.02449,"26":0.0049,"44":0.00979,"49":0.14201,"50":0.0049,"51":0.01469,"53":0.08815,"55":0.0049,"59":0.0049,"63":0.00979,"69":0.24975,"70":0.00979,"71":0.00979,"72":0.00979,"73":0.01469,"74":0.03918,"75":0.0049,"76":0.0049,"77":0.01959,"78":0.00979,"79":0.08815,"80":0.03918,"81":0.01469,"83":0.07346,"84":0.08815,"85":0.11753,"86":0.17629,"87":0.18609,"88":0.07835,"89":0.07346,"90":0.05876,"91":0.02449,"92":0.1567,"93":0.03918,"94":0.02938,"95":0.02938,"96":0.11753,"97":0.24975,"98":1.33198,"99":4.0792,"100":18.94649,"101":0.33789,"102":0.0049,_:"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 34 35 36 37 38 39 40 41 42 43 45 46 47 48 52 54 56 57 58 60 61 62 64 65 66 67 68 103 104"},F:{"36":0.05876,"40":0.00979,"48":0.00979,"53":0.02449,"56":0.0049,"57":0.00979,"63":0.0049,"70":0.0049,"72":0.0049,"76":0.00979,"77":0.06856,"78":0.05876,"79":0.07835,"80":0.04407,"81":0.04897,"82":0.02449,"83":0.02449,"84":0.96471,"85":5.01453,"86":0.07346,"87":0.01469,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 49 50 51 52 54 55 58 60 62 64 65 66 67 68 69 71 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02938},B:{"18":0.04407,"84":0.01469,"89":0.0049,"90":0.0049,"92":0.0049,"96":0.0049,"97":0.01469,"98":0.00979,"99":0.21057,"100":1.57683,"101":0.01959,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 91 93 94 95"},E:{"4":0,"13":0.01469,"14":0.05876,"15":0.02938,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.10773,"10.1":0.00979,"11.1":0.03428,"12.1":0.00979,"13.1":0.06856,"14.1":0.20078,"15.1":0.12732,"15.2-15.3":0.14201,"15.4":1.10672},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.00099,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00199,"9.3":0.02088,"10.0-10.2":0,"10.3":0.03877,"11.0-11.2":0.03877,"11.3-11.4":0.00696,"12.0-12.1":0.02585,"12.2-12.5":0.30716,"13.0-13.1":0.00795,"13.2":0.00596,"13.3":0.04672,"13.4-13.7":0.13221,"14.0-14.4":0.39663,"14.5-14.8":0.84097,"15.0-15.1":0.60439,"15.2-15.3":3.53387,"15.4":3.92354},P:{"4":0.04186,"5.0-5.4":0.02177,"6.2-6.4":0.3663,"7.2-7.4":0.02093,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.02093,"12.0":0.08373,"13.0":0.04186,"14.0":0.04186,"15.0":0.04186,"16.0":1.38146},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00307,"4.2-4.3":0.0043,"4.4":0,"4.4.3-4.4.4":0.01813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01558,"11":0.15581,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":36.7229},S:{"2.5":0},R:{_:"0"},M:{"0":0.11735},Q:{"10.4":0},O:{"0":0.18877},H:{"0":1.23171}}; +module.exports={C:{"43":0.00479,"46":0.00479,"50":0.0335,"52":0.32545,"55":0.00957,"57":0.00479,"62":0.00479,"65":0.00479,"68":0.00479,"72":0.00957,"78":0.0335,"79":0.00479,"80":0.01436,"81":0.01436,"82":0.00957,"83":0.01914,"84":0.01914,"86":0.00479,"88":0.06222,"89":0.01914,"91":0.12444,"94":0.01436,"95":0.01436,"96":0.02872,"97":0.04307,"98":0.04786,"99":0.50253,"100":2.03884,"101":0.00957,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 47 48 49 51 53 54 56 58 59 60 61 63 64 66 67 69 70 71 73 74 75 76 77 85 87 90 92 93 102 103 3.5 3.6"},D:{"22":0.01436,"26":0.00479,"38":0.00957,"49":0.11965,"51":0.00957,"53":0.08136,"55":0.01436,"63":0.00479,"64":0.01914,"65":0.00479,"69":0.22494,"70":0.00479,"71":0.00479,"72":0.00957,"73":0.01436,"74":0.07179,"76":0.00479,"77":0.01914,"78":0.01914,"79":0.07179,"80":0.04307,"81":0.04786,"83":0.07179,"84":0.13879,"85":0.08136,"86":0.24409,"87":0.19144,"88":0.07658,"89":0.067,"90":0.08136,"91":0.04307,"92":0.16751,"93":0.01436,"94":0.01914,"95":0.04786,"96":0.11486,"97":0.14358,"98":0.61739,"99":0.26323,"100":4.32654,"101":17.4354,"102":1.82825,"103":0.00957,"104":0.00479,_:"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 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 54 56 57 58 59 60 61 62 66 67 68 75"},F:{"36":0.07179,"49":0.00957,"56":0.00479,"69":0.01914,"70":0.04307,"77":0.00957,"79":0.00957,"80":0.00479,"81":0.00479,"82":0.02393,"83":0.02393,"84":0.07658,"85":2.43607,"86":3.2832,"87":0.22973,_:"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 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 71 72 73 74 75 76 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01436},B:{"18":0.04786,"83":0.01436,"97":0.00957,"98":0.00479,"99":0.067,"100":0.05743,"101":1.71817,_:"12 13 14 15 16 17 79 80 81 84 85 86 87 88 89 90 91 92 93 94 95 96"},E:{"4":0,"13":0.01436,"14":0.067,"15":0.02393,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.12444,"10.1":0.00957,"11.1":0.02393,"12.1":0.01436,"13.1":0.08136,"14.1":0.14837,"15.1":0.09093,"15.2-15.3":0.07658,"15.4":1.55545,"15.5":0.28716},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00107,"6.0-6.1":0,"7.0-7.1":0.00533,"8.1-8.4":0,"9.0-9.2":0.0032,"9.3":0.03944,"10.0-10.2":0,"10.3":0.0437,"11.0-11.2":0.0405,"11.3-11.4":0.00426,"12.0-12.1":0.02238,"12.2-12.5":0.31869,"13.0-13.1":0.00853,"13.2":0.00533,"13.3":0.04796,"13.4-13.7":0.11831,"14.0-14.4":0.35919,"14.5-14.8":0.71199,"15.0-15.1":0.50095,"15.2-15.3":1.05733,"15.4":7.36402},P:{"4":0.02123,"5.0-5.4":0.02178,"6.2-6.4":0.44592,"7.2-7.4":0.02123,"8.2":0.10375,"9.2":0.03044,"10.1":0.02035,"11.1-11.2":0.01062,"12.0":0.05309,"13.0":0.04247,"14.0":0.04247,"15.0":0.02123,"16.0":0.65826},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00435,"4.2-4.3":0.00652,"4.4":0,"4.4.3-4.4.4":0.03085},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01538,"11":0.1282,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":36.71143},S:{"2.5":0},R:{_:"0"},M:{"0":0.30241},Q:{"10.4":0},O:{"0":0.17206},H:{"0":1.26369}}; 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 c28defdf373e06..66503922c7bc18 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:{"78":0.01076,"81":0.45568,"84":0.00718,"88":0.00718,"90":0.00718,"91":0.05023,"93":0.01076,"95":0.01435,"96":0.01435,"97":0.01076,"98":0.36956,"99":0.84677,"100":0.00718,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 85 86 87 89 92 94 101 3.5 3.6"},D:{"41":0.0287,"49":0.01435,"51":0.00359,"65":0.00359,"67":0.00359,"69":0.00359,"75":0.05741,"76":0.09329,"77":0.03229,"79":0.01794,"80":0.01076,"81":0.00718,"83":0.00359,"84":0.00359,"86":0.00718,"87":0.03229,"88":0.00718,"89":0.01076,"90":0.02512,"91":0.03229,"92":0.39468,"93":0.15787,"94":0.07535,"95":0.02512,"96":0.12558,"97":0.10405,"98":0.14711,"99":2.62283,"100":11.69688,"101":0.21528,"102":0.01076,"103":0.01076,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 70 71 72 73 74 78 85 104"},F:{"28":0.05741,"79":0.00718,"82":0.00359,"84":0.14711,"85":1.23786,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 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.00359,"18":0.01076,"91":0.00359,"92":0.00718,"93":0.06458,"94":0.00359,"96":0.01435,"97":0.02512,"98":0.01794,"99":0.62072,"100":3.53059,"101":0.0287,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 95"},E:{"4":0,"13":0.03947,"14":0.07535,"15":0.03947,_:"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.00718,"12.1":0.04664,"13.1":0.09329,"14.1":0.25475,"15.1":0.40186,"15.2-15.3":0.42338,"15.4":5.09137},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.01952,"8.1-8.4":0.01562,"9.0-9.2":0.04686,"9.3":0.07029,"10.0-10.2":0,"10.3":0.11324,"11.0-11.2":0,"11.3-11.4":0.2421,"12.0-12.1":0,"12.2-12.5":0.28896,"13.0-13.1":0,"13.2":0,"13.3":0.01562,"13.4-13.7":0.06248,"14.0-14.4":0.31239,"14.5-14.8":1.14022,"15.0-15.1":1.17536,"15.2-15.3":14.21368,"15.4":21.301},P:{"4":0.04264,"5.0-5.4":0.02177,"6.2-6.4":0.3663,"7.2-7.4":0.12791,"8.2":0.04117,"9.2":0.0308,"10.1":0.02077,"11.1-11.2":0.03198,"12.0":0.08373,"13.0":0.03198,"14.0":0.06396,"15.0":0.04264,"16.0":1.42834},I:{"0":0,"3":0,"4":0.00127,"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.01797},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02512,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":24.29207},S:{"2.5":0},R:{_:"0"},M:{"0":0.07052},Q:{"10.4":0.01282},O:{"0":0.43595},H:{"0":0.0607}}; +module.exports={C:{"52":0.01039,"78":0.00692,"81":0.38082,"88":0.01385,"91":0.02423,"93":0.01385,"95":0.01731,"96":0.00692,"97":0.00692,"98":0.00692,"99":0.2008,"100":0.93128,"101":0.01039,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 89 90 92 94 102 103 3.5 3.6"},D:{"41":0.05539,"49":0.0277,"56":0.00346,"65":0.00346,"69":0.01039,"75":0.05885,"76":0.06232,"77":0.0277,"79":0.01039,"80":0.00692,"81":0.00692,"84":0.01385,"86":0.00692,"87":0.02077,"88":0.01039,"89":0.00346,"90":0.03116,"91":0.05539,"92":0.01039,"93":0.18349,"94":0.02423,"95":0.0277,"96":0.09347,"97":0.06232,"98":0.04501,"99":1.8314,"100":2.85615,"101":9.794,"102":0.98667,"103":0.01039,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 66 67 68 70 71 72 73 74 78 83 85 104"},F:{"28":0.03808,"79":0.00692,"85":0.50199,"86":0.63701,"87":0.04154,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00346,"14":0.00692,"18":0.00346,"91":0.02077,"92":0.00692,"93":0.04501,"94":0.01039,"96":0.01039,"97":0.01385,"98":0.01385,"99":0.06232,"100":0.1731,"101":3.02925,_:"13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 95"},E:{"4":0,"12":0.00346,"13":0.00692,"14":0.11771,"15":0.0277,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00692,"12.1":0.0727,"13.1":0.0727,"14.1":0.11078,"15.1":0.46737,"15.2-15.3":0.22503,"15.4":7.31521,"15.5":0.42583},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01246,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01246,"9.0-9.2":0.02492,"9.3":0.10383,"10.0-10.2":0,"10.3":0.10798,"11.0-11.2":0,"11.3-11.4":0.20351,"12.0-12.1":0,"12.2-12.5":0.26996,"13.0-13.1":0,"13.2":0.00831,"13.3":0.02492,"13.4-13.7":0.05399,"14.0-14.4":0.24504,"14.5-14.8":0.88048,"15.0-15.1":0.61883,"15.2-15.3":2.83666,"15.4":36.09987},P:{"4":0.07337,"5.0-5.4":0.02178,"6.2-6.4":0.44592,"7.2-7.4":0.15722,"8.2":0.10375,"9.2":0.01048,"10.1":0.02035,"11.1-11.2":0.04192,"12.0":0.05309,"13.0":0.02096,"14.0":0.15722,"15.0":0.03144,"16.0":0.59742},I:{"0":0,"3":0,"4":0.00047,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00016,"4.4":0,"4.4.3-4.4.4":0.01245},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2458,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":22.67525},S:{"2.5":0},R:{_:"0"},M:{"0":0.07192},Q:{"10.4":0.01961},O:{"0":0.49035},H:{"0":0.07428}}; 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 c3c04e256f6b20..d91bcc2206ee0d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js @@ -1 +1 @@ -module.exports={C:{"38":0.02214,"43":0.02214,"44":0.07197,"45":0.02214,"48":0.01107,"50":0.01107,"51":0.14394,"52":0.16054,"53":0.14394,"54":0.0775,"55":0.2159,"56":0.09965,"57":0.11626,"58":0.03875,"59":0.03875,"66":0.01107,"68":0.00554,"78":0.0775,"79":0.00554,"80":0.00554,"81":0.01107,"82":0.01107,"83":0.00554,"87":0.01661,"88":0.01107,"89":0.01107,"90":0.01107,"91":0.07197,"94":0.01661,"95":0.01107,"96":0.02214,"97":0.04429,"98":0.78058,"99":2.24762,"100":0.01661,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 84 85 86 92 93 101 3.5 3.6"},D:{"29":0.00554,"38":0.00554,"39":0.03875,"40":0.03875,"41":0.04429,"42":0.04429,"43":0.04429,"44":0.04429,"45":0.05536,"46":0.05536,"47":0.07197,"48":0.23805,"49":0.18269,"50":0.03322,"51":0.03875,"52":0.03322,"53":0.03875,"54":0.03875,"55":0.03875,"56":0.04429,"57":0.04429,"58":0.05536,"59":0.05536,"60":0.09965,"61":0.04982,"62":0.04982,"63":0.04982,"64":0.04982,"65":0.06643,"66":0.01107,"67":0.02214,"68":0.01107,"69":0.0775,"70":0.00554,"72":0.01107,"73":0.03322,"74":0.02768,"75":0.01107,"76":0.03875,"77":0.01107,"78":0.02214,"79":0.09965,"80":0.0775,"81":0.03875,"83":0.34877,"84":0.09411,"85":0.08304,"86":0.16054,"87":0.15501,"88":0.02768,"89":0.03322,"90":0.03875,"91":0.05536,"92":0.04429,"93":0.11626,"94":0.0775,"95":0.03875,"96":0.19376,"97":0.31002,"98":0.65325,"99":6.18371,"100":21.82291,"101":0.31555,"102":0.01107,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 71 103 104"},F:{"52":0.01107,"71":0.00554,"84":0.11626,"85":0.43181,"86":0.01107,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00554},B:{"12":0.01107,"13":0.01107,"14":0.01107,"15":0.01107,"16":0.01107,"17":0.00554,"18":0.03322,"84":0.00554,"85":0.01661,"86":0.00554,"89":0.00554,"92":0.01107,"94":0.00554,"95":0.00554,"96":0.01661,"97":0.09965,"98":0.03875,"99":0.95219,"100":5.56368,"101":0.09965,_:"79 80 81 83 87 88 90 91 93"},E:{"4":0,"8":0.01107,"9":0.02768,"12":0.01107,"13":0.0775,"14":0.33216,"15":0.13286,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02214,"10.1":0.03322,"11.1":0.08304,"12.1":0.1384,"13.1":0.58128,"14.1":1.25114,"15.1":0.28234,"15.2-15.3":0.3543,"15.4":2.46352},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00232,"5.0-5.1":0.00232,"6.0-6.1":0.00463,"7.0-7.1":0.01158,"8.1-8.4":0.0139,"9.0-9.2":0.04169,"9.3":0.20846,"10.0-10.2":0.06485,"10.3":0.2293,"11.0-11.2":0.0718,"11.3-11.4":0.05096,"12.0-12.1":0.03474,"12.2-12.5":0.94732,"13.0-13.1":0.03011,"13.2":0.01621,"13.3":0.07875,"13.4-13.7":0.28257,"14.0-14.4":0.67864,"14.5-14.8":2.82343,"15.0-15.1":0.90795,"15.2-15.3":8.43093,"15.4":8.21784},P:{"4":0.14191,"5.0-5.4":0.04167,"6.2-6.4":0.01042,"7.2-7.4":0.14585,"8.2":0.01042,"9.2":0.15627,"10.1":0.03016,"11.1-11.2":0.01092,"12.0":0.01092,"13.0":0.05458,"14.0":0.03275,"15.0":0.03275,"16.0":3.31862},I:{"0":0,"3":0,"4":0.00153,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00203,"4.2-4.3":0.00407,"4.4":0,"4.4.3-4.4.4":0.03255},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06372,"9":0.09847,"10":0.02317,"11":0.44021,_:"6 7 5.5"},J:{"7":0,"10":0.00446},N:{_:"10 11"},L:{"0":17.58486},S:{"2.5":0},R:{_:"0"},M:{"0":0.45533},Q:{"10.4":0.01339},O:{"0":0.13392},H:{"0":0.1775}}; +module.exports={C:{"24":0.00543,"38":0.01629,"43":0.02172,"44":0.07058,"45":0.02172,"48":0.01086,"50":0.01086,"51":0.09229,"52":0.11944,"53":0.08686,"54":0.04886,"55":0.15744,"56":0.06515,"57":0.07601,"58":0.02172,"59":0.02172,"66":0.01086,"68":0.00543,"77":0.00543,"78":0.07601,"79":0.01086,"80":0.01086,"81":0.01086,"82":0.01086,"83":0.00543,"87":0.00543,"88":0.01086,"89":0.01086,"91":0.06515,"92":0.00543,"94":0.01086,"95":0.01086,"96":0.01629,"97":0.02172,"98":0.038,"99":0.65691,"100":2.85023,"101":0.01629,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 84 85 86 90 93 102 103 3.5 3.6"},D:{"38":0.00543,"39":0.02172,"40":0.02715,"41":0.03257,"42":0.02715,"43":0.02715,"44":0.02715,"45":0.03257,"46":0.038,"47":0.04886,"48":0.21173,"49":0.15744,"50":0.02172,"51":0.02172,"52":0.02172,"53":0.02715,"54":0.02172,"55":0.02715,"56":0.02715,"57":0.02715,"58":0.038,"59":0.038,"60":0.07601,"61":0.03257,"62":0.03257,"63":0.03257,"64":0.03257,"65":0.04886,"66":0.01086,"67":0.02172,"68":0.01086,"69":0.08144,"70":0.00543,"72":0.01629,"73":0.00543,"74":0.02715,"75":0.01086,"76":0.038,"77":0.01086,"78":0.01629,"79":0.10858,"80":0.06515,"81":0.02715,"83":0.32031,"84":0.1303,"85":0.12487,"86":0.20087,"87":0.16287,"88":0.02715,"89":0.02715,"90":0.02172,"91":0.06515,"92":0.03257,"93":0.10315,"94":0.05972,"95":0.03257,"96":0.14115,"97":0.17916,"98":0.3366,"99":0.55919,"100":7.06313,"101":19.70727,"102":1.14009,"103":0.01629,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 71 104"},F:{"52":0.01086,"68":0.00543,"69":0.00543,"71":0.01086,"85":0.32574,"86":0.27688,"87":0.02172,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 70 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","10.0-10.1":0,"12.1":0.00543},B:{"12":0.01086,"13":0.01086,"14":0.00543,"15":0.01086,"16":0.01086,"18":0.03257,"84":0.00543,"85":0.02172,"86":0.00543,"87":0.00543,"91":0.00543,"92":0.00543,"96":0.01086,"97":0.038,"98":0.02172,"99":0.10858,"100":0.3746,"101":6.17277,_:"17 79 80 81 83 88 89 90 93 94 95"},E:{"4":0,"8":0.01086,"9":0.02715,"12":0.01629,"13":0.07058,"14":0.29317,"15":0.10315,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02172,"10.1":0.03257,"11.1":0.07058,"12.1":0.1303,"13.1":0.53747,"14.1":1.06951,"15.1":0.19544,"15.2-15.3":0.22259,"15.4":4.07718,"15.5":0.34746},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00235,"6.0-6.1":0.0047,"7.0-7.1":0.01175,"8.1-8.4":0.0141,"9.0-9.2":0.03524,"9.3":0.19501,"10.0-10.2":0.04699,"10.3":0.19971,"11.0-11.2":0.04229,"11.3-11.4":0.04934,"12.0-12.1":0.03289,"12.2-12.5":0.88811,"13.0-13.1":0.03054,"13.2":0.0141,"13.3":0.07283,"13.4-13.7":0.25609,"14.0-14.4":0.61087,"14.5-14.8":2.35184,"15.0-15.1":0.63436,"15.2-15.3":1.66579,"15.4":16.33603},P:{"4":0.15215,"5.0-5.4":0.05157,"6.2-6.4":0.03029,"7.2-7.4":0.08252,"8.2":0.02288,"9.2":0.08252,"10.1":0.01087,"11.1-11.2":0.01087,"12.0":0.01087,"13.0":0.04347,"14.0":0.02174,"15.0":0.0326,"16.0":1.07595},I:{"0":0,"3":0,"4":0.00109,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00055,"4.2-4.3":0.00382,"4.4":0,"4.4.3-4.4.4":0.03111},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04526,"9":0.07921,"10":0.01697,"11":0.39603,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":18.31729},S:{"2.5":0},R:{_:"0"},M:{"0":0.46167},Q:{"10.4":0.00914},O:{"0":0.12342},H:{"0":0.18608}}; 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 b7502f375f4ced..23c28bf12ba4ad 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:{"34":0.00116,"42":0.00232,"45":0.00232,"47":0.00232,"48":0.00232,"49":0.00349,"50":0.00116,"52":0.00116,"56":0.00232,"60":0.00116,"72":0.01278,"78":0.00581,"84":0.00232,"89":0.00581,"90":0.00232,"91":0.02556,"92":0.00116,"94":0.00349,"95":0.00813,"96":0.00232,"97":0.01511,"98":0.17779,"99":0.45899,"100":0.04067,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 46 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 88 93 101 3.5 3.6"},D:{"11":0.00581,"18":0.00465,"19":0.00116,"29":0.00349,"33":0.00116,"35":0.00116,"38":0.00116,"40":0.00232,"43":0.00465,"49":0.00232,"55":0.00232,"57":0.00116,"61":0.00116,"63":0.00232,"64":0.00697,"65":0.00116,"66":0.00232,"67":0.00232,"69":0.00232,"70":0.01627,"72":0.00232,"74":0.00232,"75":0.00465,"76":0.00232,"77":0.00581,"79":0.00581,"80":0.00232,"81":0.00581,"83":0.00465,"84":0.00349,"85":0.0093,"86":0.01162,"87":0.00697,"88":0.0093,"89":0.00581,"90":0.03951,"91":0.00581,"92":0.01278,"93":0.00813,"94":0.00581,"95":0.00465,"96":0.03951,"97":0.03021,"98":0.04299,"99":0.47874,"100":2.52967,"101":0.05461,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 20 21 22 23 24 25 26 27 28 30 31 32 34 36 37 39 41 42 44 45 46 47 48 50 51 52 53 54 56 58 59 60 62 68 71 73 78 102 103 104"},F:{"15":0.00697,"18":0.00116,"34":0.00232,"36":0.00465,"37":0.00116,"42":0.00465,"45":0.00349,"64":0.00116,"67":0.00349,"68":0.00232,"77":0.00232,"79":0.00813,"80":0.00349,"81":0.00232,"82":0.00349,"83":0.00349,"84":0.07321,"85":0.40205,"86":0.02673,_:"9 11 12 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 38 39 40 41 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 69 70 71 72 73 74 75 76 78 87 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.00232},B:{"12":0.04416,"13":0.01394,"14":0.00813,"15":0.01627,"16":0.00697,"17":0.01627,"18":0.04183,"84":0.01278,"85":0.00813,"88":0.00232,"89":0.00697,"90":0.00581,"91":0.00116,"92":0.02092,"93":0.00349,"94":0.00232,"95":0.00232,"96":0.01046,"97":0.0093,"98":0.01511,"99":0.14525,"100":0.61586,"101":0.00697,_:"79 80 81 83 86 87"},E:{"4":0,"12":0.00349,"13":0.00232,"14":0.01162,"15":0.00116,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00116,"11.1":0.00465,"12.1":0.00465,"13.1":0.02092,"14.1":0.03137,"15.1":0.00813,"15.2-15.3":0.00813,"15.4":0.03951},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.01077,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01682,"10.0-10.2":0.00135,"10.3":0.04845,"11.0-11.2":0.02153,"11.3-11.4":0.06393,"12.0-12.1":0.05115,"12.2-12.5":1.71337,"13.0-13.1":0.02086,"13.2":0.13392,"13.3":0.08547,"13.4-13.7":0.31697,"14.0-14.4":0.73286,"14.5-14.8":1.03099,"15.0-15.1":0.66018,"15.2-15.3":1.18106,"15.4":0.63528},P:{"4":0.22811,"5.0-5.4":0.08105,"6.2-6.4":0.03039,"7.2-7.4":0.10862,"8.2":0.13171,"9.2":0.0869,"10.1":0.66868,"11.1-11.2":0.02172,"12.0":0.01086,"13.0":0.03259,"14.0":0.05431,"15.0":0.02172,"16.0":0.47793},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00079,"4.2-4.3":0.00692,"4.4":0,"4.4.3-4.4.4":0.04531},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08599,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":41.67227},S:{"2.5":0.06186},R:{_:"0"},M:{"0":0.07953},Q:{"10.4":0.02651},O:{"0":0.73347},H:{"0":40.84428}}; +module.exports={C:{"27":0.00277,"38":0.00138,"42":0.00415,"43":0.00415,"47":0.00277,"48":0.00138,"51":0.00277,"52":0.00553,"56":0.00277,"60":0.00138,"66":0.00415,"72":0.01106,"78":0.01245,"89":0.00277,"90":0.00277,"91":0.02075,"94":0.00138,"95":0.00277,"96":0.00277,"97":0.00277,"98":0.01106,"99":0.15075,"100":0.54629,"101":0.01245,_:"2 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 39 40 41 44 45 46 49 50 53 54 55 57 58 59 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 92 93 102 103 3.5 3.6"},D:{"11":0.00415,"18":0.00277,"21":0.00277,"33":0.08436,"38":0.00138,"43":0.00415,"47":0.00138,"49":0.00138,"50":0.00138,"55":0.00277,"57":0.00138,"60":0.00138,"63":0.00277,"64":0.00553,"65":0.00138,"67":0.00277,"70":0.00277,"71":0.00277,"72":0.00277,"73":0.00415,"74":0.00553,"75":0.00138,"76":0.00277,"77":0.01936,"78":0.00277,"79":0.00968,"80":0.00553,"81":0.00415,"83":0.00277,"84":0.00277,"85":0.0083,"86":0.01798,"87":0.0083,"88":0.0083,"89":0.00968,"90":0.01521,"91":0.00553,"92":0.01245,"93":0.0083,"94":0.02766,"95":0.00415,"96":0.02213,"97":0.02351,"98":0.05117,"99":0.0567,"100":0.88789,"101":2.44929,"102":0.25862,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 44 45 46 48 51 52 53 54 56 58 59 61 62 66 68 69 103 104"},F:{"15":0.00277,"20":0.00277,"34":0.00277,"42":0.00415,"68":0.00277,"79":0.01245,"80":0.00277,"81":0.00138,"82":0.00277,"83":0.00277,"84":0.0166,"85":0.17011,"86":0.2683,"87":0.04011,_:"9 11 12 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.00138},B:{"12":0.07053,"13":0.01936,"14":0.01383,"15":0.0166,"16":0.00415,"17":0.04287,"18":0.03596,"84":0.01245,"85":0.00692,"88":0.00138,"89":0.01936,"90":0.00553,"92":0.01521,"95":0.00553,"96":0.00415,"97":0.00553,"98":0.00692,"99":0.02489,"100":0.10096,"101":0.89618,_:"79 80 81 83 86 87 91 93 94"},E:{"4":0,"13":0.00415,"14":0.01383,"15":0.00277,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00277,"10.1":0.00277,"11.1":0.00692,"12.1":0.00415,"13.1":0.02351,"14.1":0.04979,"15.1":0.00277,"15.2-15.3":0.00692,"15.4":0.04979,"15.5":0.01798},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0015,"6.0-6.1":0,"7.0-7.1":0.00375,"8.1-8.4":0.0015,"9.0-9.2":0.0015,"9.3":0.02175,"10.0-10.2":0.0015,"10.3":0.05699,"11.0-11.2":0.0255,"11.3-11.4":0.03524,"12.0-12.1":0.0315,"12.2-12.5":1.63476,"13.0-13.1":0.03599,"13.2":0.24746,"13.3":0.3427,"13.4-13.7":0.27671,"14.0-14.4":0.84438,"14.5-14.8":0.95011,"15.0-15.1":0.77839,"15.2-15.3":0.83238,"15.4":1.3723},P:{"4":0.18237,"5.0-5.4":0.02146,"6.2-6.4":0.0304,"7.2-7.4":0.15019,"8.2":0.22305,"9.2":0.05364,"10.1":0.29386,"11.1-11.2":0.02146,"12.0":0.0304,"13.0":0.02146,"14.0":0.09655,"15.0":0.02146,"16.0":0.31111},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0019,"4.2-4.3":0.01305,"4.4":0,"4.4.3-4.4.4":0.07121},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.065,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00862},N:{"10":0.01723,_:"11"},L:{"0":51.13896},S:{"2.5":0.06031},R:{_:"0"},M:{"0":0.06893},Q:{"10.4":0.03446},O:{"0":0.55142},H:{"0":30.29537}}; 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 64b977d4b538fb..691b174c044024 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:{"34":0.00745,"36":0.00248,"47":0.01987,"51":0.00994,"60":0.04223,"67":0.00994,"79":0.0149,"84":0.00248,"91":0.16146,"94":0.00248,"95":0.00745,"97":0.01242,"98":1.54505,"99":3.44282,"100":0.00497,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 48 49 50 52 53 54 55 56 57 58 59 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 85 86 87 88 89 90 92 93 96 101 3.5 3.6"},D:{"26":0.00497,"35":0.00497,"49":0.00745,"51":0.01987,"52":0.02236,"67":0.01242,"71":0.00248,"77":0.00994,"81":0.00497,"83":0.077,"86":0.00745,"87":0.00745,"88":0.12172,"91":0.06458,"93":0.03726,"94":0.00248,"95":0.00248,"96":0.06707,"97":0.02732,"98":0.02236,"99":1.31404,"100":5.67346,"101":0.09688,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 72 73 74 75 76 78 79 80 84 85 89 90 92 102 103 104"},F:{"42":0.00745,"81":0.00248,"84":0.02484,"85":0.25585,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 86 87 9.5-9.6 10.5 10.6 11.5 11.6 12.1","10.0-10.1":0,"11.1":0.00745},B:{"12":0.02732,"14":0.01987,"15":0.0149,"17":0.00745,"18":0.03229,"80":0.00248,"84":0.01242,"85":0.01242,"90":0.00745,"92":0.00745,"95":0.00745,"97":0.02484,"98":0.01987,"99":0.21362,"100":0.30553,_:"13 16 79 81 83 86 87 88 89 91 93 94 96 101"},E:{"4":0,"10":0.00745,"13":0.00248,"14":0.00248,_:"0 5 6 7 8 9 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1","11.1":0.02981,"13.1":0.00497,"14.1":0.02236,"15.1":0.00745,"15.2-15.3":0.01987,"15.4":0.06707},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.00413,"10.0-10.2":0,"10.3":0.01788,"11.0-11.2":0.45357,"11.3-11.4":0.00413,"12.0-12.1":0.0165,"12.2-12.5":0.05749,"13.0-13.1":0.00275,"13.2":0.00138,"13.3":0.02448,"13.4-13.7":0.0165,"14.0-14.4":0.8348,"14.5-14.8":0.32539,"15.0-15.1":0.2239,"15.2-15.3":0.49593,"15.4":0.27203},P:{"4":0.04087,"5.0-5.4":0.01038,"6.2-6.4":0.01042,"7.2-7.4":0.54154,"8.2":0.01047,"9.2":0.19414,"10.1":0.03016,"11.1-11.2":0.05234,"12.0":0.33221,"13.0":0.05109,"14.0":0.01022,"15.0":0.05109,"16.0":0.67438},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00036,"4.4":0,"4.4.3-4.4.4":0.01467},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05216,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.02255},N:{_:"10 11"},L:{"0":64.30837},S:{"2.5":0.03758},R:{_:"0"},M:{"0":0.05261},Q:{"10.4":0},O:{"0":0.49606},H:{"0":15.53349}}; +module.exports={C:{"3":0.00333,"45":0.00666,"51":0.06997,"60":0.00333,"69":0.00333,"72":0.00666,"79":0.00666,"82":0.00666,"84":0.00666,"88":0.00666,"91":0.14994,"93":0.06997,"97":0.00666,"98":0.67306,"99":0.57644,"100":1.14621,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 78 80 81 83 85 86 87 89 90 92 94 95 96 101 102 103 3.5 3.6"},D:{"49":0.01666,"51":0.02999,"52":0.01,"58":0.00666,"64":0.00333,"68":0.02332,"70":0.01,"73":0.00333,"76":0.01333,"79":0.00333,"81":0.00333,"83":0.04998,"84":0.00333,"86":0.01666,"87":0.00666,"88":0.12328,"89":0.00666,"90":0.00333,"91":0.04665,"95":0.00333,"96":0.00666,"97":0.01666,"98":0.02332,"99":0.01,"100":4.77809,"101":11.37545,"102":0.92296,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 53 54 55 56 57 59 60 61 62 63 65 66 67 69 71 72 74 75 77 78 80 85 92 93 94 103 104"},F:{"42":0.00333,"79":0.01333,"85":0.16993,"86":0.44982,"87":0.03665,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.02666,"13":0.06664,"14":0.01333,"15":0.00333,"16":0.00666,"17":0.13661,"18":0.05664,"84":0.00666,"85":0.01666,"89":0.01,"90":0.01666,"92":0.01,"97":0.02332,"98":0.00666,"99":0.09663,"100":0.05331,"101":0.99294,_:"79 80 81 83 86 87 88 91 93 94 95 96"},E:{"4":0,"13":0.00333,"14":0.01333,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00333,"12.1":0.01666,"13.1":0.02332,"14.1":0.01333,"15.1":0.01,"15.2-15.3":0.01,"15.4":0.01333,"15.5":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.00849,"9.3":0.01433,"10.0-10.2":0,"10.3":0.00372,"11.0-11.2":0.08306,"11.3-11.4":0.0061,"12.0-12.1":0.01804,"12.2-12.5":0.13719,"13.0-13.1":0.00372,"13.2":0,"13.3":0.01088,"13.4-13.7":0.02892,"14.0-14.4":0.77591,"14.5-14.8":0.2911,"15.0-15.1":0.45589,"15.2-15.3":0.2765,"15.4":0.54001},P:{"4":0.05014,"5.0-5.4":0.08022,"6.2-6.4":0.01003,"7.2-7.4":0.01003,"8.2":0.02288,"9.2":0.43116,"10.1":0.02077,"11.1-11.2":0.03008,"12.0":0.05014,"13.0":0.01003,"14.0":0.06016,"15.0":0.03008,"16.0":0.51138},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:{"11":0.0833,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":63.62307},S:{"2.5":0.05334},R:{_:"0"},M:{"0":0.05334},Q:{"10.4":0},O:{"0":0.74015},H:{"0":8.18143}}; 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 492a5f2f5e7a69..cc3a0329b53e47 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:{"16":0.00352,"48":0.00352,"52":0.01762,"60":0.01409,"68":0.01057,"72":0.01762,"78":0.00705,"91":0.02466,"96":0.00705,"97":0.00352,"98":0.73983,"99":2.25824,"100":0.00705,"101":0.07398,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 3.5 3.6"},D:{"33":0.00705,"38":0.00352,"43":0.00705,"49":0.00705,"55":0.03875,"64":0.00705,"69":0.04932,"78":0.00352,"79":0.04932,"81":0.00352,"83":0.00352,"84":0.01057,"85":0.00705,"86":0.08808,"87":0.01762,"88":0.01409,"89":0.02114,"91":0.02466,"92":0.03523,"93":0.01409,"94":0.00705,"95":0.01409,"96":0.04932,"97":0.15501,"98":0.08103,"99":2.31813,"100":11.60124,"101":0.34173,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 65 66 67 68 70 71 72 73 74 75 76 77 80 90 102 103 104"},F:{"28":0.00705,"79":0.00352,"80":0.00352,"82":0.00705,"84":0.19729,"85":1.41625,"86":0.01409,_:"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 81 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01057},B:{"12":0.02114,"14":0.00352,"16":0.03523,"17":0.0458,"18":0.1374,"84":0.01057,"85":0.00352,"89":0.02818,"90":0.01057,"91":0.00705,"92":0.02466,"95":0.00352,"96":0.00705,"97":0.05285,"98":0.16558,"99":0.7962,"100":3.64631,"101":0.04932,_:"13 15 79 80 81 83 86 87 88 93 94"},E:{"4":0,"13":0.00352,"14":0.00352,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 11.1","7.1":0.00352,"9.1":0.00705,"10.1":0.02114,"12.1":0.01762,"13.1":0.15149,"14.1":0.01409,"15.1":0.00705,"15.2-15.3":0.00352,"15.4":0.04932},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,"7.0-7.1":0.02313,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03559,"10.0-10.2":0,"10.3":0.19216,"11.0-11.2":0.02669,"11.3-11.4":0.02847,"12.0-12.1":0.00979,"12.2-12.5":3.42337,"13.0-13.1":0.0258,"13.2":0.03381,"13.3":0.02224,"13.4-13.7":0.54802,"14.0-14.4":0.31138,"14.5-14.8":0.77132,"15.0-15.1":0.61919,"15.2-15.3":1.24017,"15.4":1.58001},P:{"4":0.44783,"5.0-5.4":0.08105,"6.2-6.4":0.03039,"7.2-7.4":0.2812,"8.2":0.13171,"9.2":0.02083,"10.1":0.66868,"11.1-11.2":0.02083,"12.0":0.02083,"13.0":0.04166,"14.0":0.05431,"15.0":0.01041,"16.0":0.9894},I:{"0":0,"3":0,"4":0.00018,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00987,"4.2-4.3":0.00645,"4.4":0,"4.4.3-4.4.4":0.0677},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0458,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":59.06909},S:{"2.5":0.37567},R:{_:"0"},M:{"0":0.03239},Q:{"10.4":0.02591},O:{"0":0.65418},H:{"0":1.44715}}; +module.exports={C:{"43":0.00375,"52":0.00751,"56":0.00375,"66":0.01126,"72":0.00375,"78":0.00375,"88":0.00375,"91":0.03379,"94":0.01877,"96":0.00375,"97":0.02252,"98":0.01126,"99":0.73203,"100":2.85304,"101":0.00751,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 95 102 103 3.5 3.6"},D:{"11":0.00751,"31":0.00375,"38":0.01126,"40":0.00751,"42":0.00751,"53":0.00751,"58":0.03003,"63":0.01502,"67":0.01502,"69":0.05256,"73":0.00375,"75":0.00751,"79":0.04129,"80":0.00375,"81":0.09385,"84":0.00751,"85":0.13514,"86":0.03379,"87":0.01126,"88":0.00751,"89":0.03003,"90":0.01877,"91":0.02628,"92":0.04129,"93":0.00751,"94":0.00751,"95":0.01126,"96":0.1389,"97":0.47676,"98":0.12388,"99":0.05631,"100":2.74417,"101":10.62757,"102":0.89721,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 59 60 61 62 64 65 66 68 70 71 72 74 76 77 78 83 103 104"},F:{"42":0.00375,"77":0.00375,"79":0.01502,"82":0.01126,"84":0.03003,"85":0.79209,"86":0.86717,"87":0.06006,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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:{"12":0.01502,"13":0.01502,"14":0.01126,"15":0.00375,"16":0.01502,"17":0.0488,"18":0.13514,"84":0.01502,"85":0.00751,"89":0.01126,"90":0.00751,"92":0.01502,"95":0.00751,"97":0.02252,"98":0.06382,"99":0.02628,"100":0.19896,"101":4.65871,_:"79 80 81 83 86 87 88 91 93 94 96"},E:{"4":0,"15":0.00375,_:"0 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.24776,"11.1":0.00375,"12.1":0.00375,"13.1":0.12764,"14.1":0.03003,"15.1":0.01126,"15.2-15.3":0.00375,"15.4":0.10136,"15.5":0.00375},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0026,"5.0-5.1":0.00433,"6.0-6.1":0,"7.0-7.1":0.03033,"8.1-8.4":0,"9.0-9.2":0.00607,"9.3":0.01387,"10.0-10.2":0.0104,"10.3":0.38909,"11.0-11.2":0.04333,"11.3-11.4":0.01473,"12.0-12.1":0.0104,"12.2-12.5":2.91778,"13.0-13.1":0.05893,"13.2":0.05026,"13.3":0.16205,"13.4-13.7":0.41336,"14.0-14.4":0.23744,"14.5-14.8":0.72099,"15.0-15.1":0.51648,"15.2-15.3":0.77819,"15.4":2.28257},P:{"4":0.47136,"5.0-5.4":0.02146,"6.2-6.4":0.0304,"7.2-7.4":0.32139,"8.2":0.22305,"9.2":0.05364,"10.1":0.29386,"11.1-11.2":0.04285,"12.0":0.0304,"13.0":0.11784,"14.0":0.09655,"15.0":0.01071,"16.0":0.61063},I:{"0":0,"3":0,"4":0.00013,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00329,"4.2-4.3":0.00766,"4.4":0,"4.4.3-4.4.4":0.08886},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09385,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":57.16208},S:{"2.5":0.27482},R:{_:"0"},M:{"0":0.06246},Q:{"10.4":0.01874},O:{"0":0.51217},H:{"0":1.54337}}; 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 9882d2c986a288..07438899ebf1b5 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:{"24":0.02372,"45":0.00593,"48":0.01779,"50":0.02372,"52":0.05929,"54":0.00593,"55":0.00593,"57":0.02372,"66":0.02372,"71":0.01186,"72":0.00593,"78":0.16601,"79":0.00593,"80":0.00593,"81":0.01779,"83":0.01779,"84":0.03557,"85":0.01186,"86":0.00593,"87":0.00593,"88":0.08301,"89":0.01186,"90":0.01186,"91":0.25495,"92":0.00593,"94":0.8182,"95":0.06522,"96":0.06522,"97":0.13637,"98":1.7787,"99":4.73134,"100":0.01779,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 53 56 58 59 60 61 62 63 64 65 67 68 69 70 73 74 75 76 77 82 93 101 3.5 3.6"},D:{"38":0.01186,"49":0.04743,"52":0.26088,"60":0.04743,"63":0.01186,"65":0.0415,"66":0.06522,"67":0.02965,"68":0.02965,"70":0.00593,"71":0.00593,"72":0.02965,"74":0.02965,"77":0.01186,"78":0.03557,"79":0.16008,"80":0.08301,"81":0.02965,"83":0.06522,"84":0.1423,"85":0.12451,"86":0.08894,"87":0.17787,"88":0.02965,"89":0.04743,"90":0.03557,"91":0.04743,"92":0.05336,"93":0.0415,"94":0.05336,"95":0.04743,"96":0.56326,"97":0.2253,"98":0.68776,"99":6.61084,"100":17.87001,"101":0.21937,"102":0.00593,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 62 64 69 73 75 76 103 104"},F:{"46":0.00593,"72":0.00593,"77":0.00593,"78":0.00593,"79":0.00593,"84":0.1838,"85":0.66405,"86":0.01186,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00593,"15":0.02372,"16":0.02372,"18":0.04743,"84":0.04743,"85":0.01186,"86":0.01779,"89":0.02372,"90":0.02372,"91":0.01779,"92":0.01779,"93":0.01186,"94":0.01186,"95":0.01779,"96":0.07115,"97":0.10079,"98":0.19566,"99":2.004,"100":8.17016,"101":0.11265,_:"12 13 17 79 80 81 83 87 88"},E:{"4":0,"10":0.01779,"12":0.01186,"13":0.14823,"14":0.39131,"15":0.21937,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01779,"10.1":0.02372,"11.1":0.08301,"12.1":0.21937,"13.1":0.82413,"14.1":1.38146,"15.1":0.37353,"15.2-15.3":0.42096,"15.4":2.7807},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.00385,"8.1-8.4":0.00385,"9.0-9.2":0.08094,"9.3":0.16573,"10.0-10.2":0.00771,"10.3":0.14261,"11.0-11.2":0.02505,"11.3-11.4":0.10985,"12.0-12.1":0.03083,"12.2-12.5":0.61861,"13.0-13.1":0.0424,"13.2":0.02313,"13.3":0.08479,"13.4-13.7":0.29871,"14.0-14.4":0.83445,"14.5-14.8":2.28945,"15.0-15.1":1.00019,"15.2-15.3":7.06492,"15.4":6.43281},P:{"4":0.12836,"5.0-5.4":0.08139,"6.2-6.4":0.01019,"7.2-7.4":0.79509,"8.2":0.01017,"9.2":0.02139,"10.1":0.0102,"11.1-11.2":0.0107,"12.0":0.02139,"13.0":0.06418,"14.0":0.08557,"15.0":0.06418,"16.0":3.79735},I:{"0":0,"3":0,"4":0.00271,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00271,"4.2-4.3":0.00814,"4.4":0,"4.4.3-4.4.4":0.05157},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00593,"9":0.05336,"11":0.41503,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.04885},H:{"0":0.26208},L:{"0":16.48289},S:{"2.5":0},R:{_:"0"},M:{"0":0.7857},Q:{"10.4":0}}; +module.exports={C:{"24":0.01681,"48":0.01681,"50":0.01681,"52":0.05042,"55":0.0056,"57":0.0112,"66":0.02241,"78":0.15125,"79":0.0112,"80":0.0112,"81":0.01681,"82":0.01681,"83":0.0112,"84":0.0056,"85":0.01681,"88":0.04482,"89":0.0112,"90":0.02241,"91":0.2745,"92":0.0056,"94":0.64983,"95":0.02801,"96":0.03921,"97":0.05602,"98":0.08403,"99":1.21003,"100":5.16504,"101":0.01681,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 56 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 86 87 93 102 103 3.5 3.6"},D:{"38":0.0056,"48":0.0112,"49":0.03921,"52":0.29691,"60":0.03921,"65":0.03361,"66":0.05602,"67":0.02801,"68":0.02241,"69":0.0056,"72":0.02241,"74":0.02241,"77":0.0056,"78":0.03361,"79":0.13445,"80":0.05042,"81":0.03361,"83":0.07283,"84":0.13445,"85":0.11204,"86":0.09523,"87":0.15125,"88":0.01681,"89":0.05042,"90":0.02801,"91":0.04482,"92":0.06722,"93":0.02801,"94":0.03361,"95":0.03921,"96":0.34172,"97":0.11204,"98":0.18487,"99":0.50418,"100":4.36396,"101":17.10291,"102":1.38369,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 50 51 53 54 55 56 57 58 59 61 62 63 64 70 71 73 75 76 103 104"},F:{"71":0.0056,"72":0.0056,"85":0.5602,"86":0.60502,"87":0.02241,_:"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 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:{"14":0.0056,"15":0.01681,"16":0.01681,"17":0.0056,"18":0.05602,"84":0.0112,"85":0.0112,"86":0.0112,"89":0.0112,"90":0.02801,"91":0.0112,"92":0.01681,"93":0.0112,"94":0.0056,"95":0.05602,"96":0.05042,"97":0.03921,"98":0.07283,"99":0.13445,"100":0.73946,"101":8.78394,_:"12 13 79 80 81 83 87 88"},E:{"4":0,"10":0.01681,"12":0.01681,"13":0.08403,"14":0.42575,"15":0.17926,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0112,"10.1":0.02241,"11.1":0.06722,"12.1":0.21288,"13.1":0.80669,"14.1":1.23244,"15.1":0.30811,"15.2-15.3":0.33052,"15.4":4.36956,"15.5":0.52099},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.0045,"8.1-8.4":0.00225,"9.0-9.2":0.16654,"9.3":0.16654,"10.0-10.2":0.009,"10.3":0.11027,"11.0-11.2":0.01575,"11.3-11.4":0.09677,"12.0-12.1":0.02476,"12.2-12.5":0.51986,"13.0-13.1":0.02926,"13.2":0.01575,"13.3":0.06301,"13.4-13.7":0.25656,"14.0-14.4":0.75842,"14.5-14.8":2.34277,"15.0-15.1":0.76067,"15.2-15.3":2.0457,"15.4":15.09859},P:{"4":0.10488,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.02098,"11.1-11.2":0.01049,"12.0":0.02098,"13.0":0.06293,"14.0":0.08391,"15.0":0.05244,"16.0":1.34251},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00116,"4.2-4.3":0.00231,"4.4":0,"4.4.3-4.4.4":0.01852},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00575,"9":0.04023,"11":0.39658,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.6685},Q:{"10.4":0},O:{"0":0.06157},H:{"0":0.24982},L:{"0":16.75693},S:{"2.5":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 13f14e3e04f539..9220830185cff1 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:{"48":0.00292,"50":0.00876,"52":0.07595,"57":0.00292,"70":0.00292,"72":0.01168,"78":0.00876,"84":0.00584,"85":0.00292,"88":0.00876,"89":0.01461,"90":0.00584,"91":0.04089,"93":0.00584,"94":0.00876,"95":0.00584,"96":0.00584,"97":0.02337,"98":0.68936,"99":1.49263,"100":0.01753,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 79 80 81 82 83 86 87 92 101 3.5 3.6"},D:{"11":0.04966,"29":0.02921,"38":0.00876,"49":0.02045,"58":0.00584,"60":0.00584,"61":0.00292,"62":0.00584,"63":0.00292,"64":0.00584,"65":0.00292,"66":0.0555,"67":0.00876,"68":0.00584,"69":0.04382,"70":0.02337,"71":0.00876,"72":0.01168,"73":0.00584,"74":0.02629,"75":0.01168,"76":0.03505,"77":0.02337,"78":0.02629,"79":0.08763,"80":0.03213,"81":0.02629,"83":0.02045,"84":0.04382,"85":0.03213,"86":0.04382,"87":0.08179,"88":0.03505,"89":0.04382,"90":0.03213,"91":0.06718,"92":0.09347,"93":0.07303,"94":0.111,"95":0.0701,"96":0.13729,"97":0.21323,"98":0.29502,"99":2.71653,"100":12.91666,"101":0.20447,"102":0.03213,"103":0.00584,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 104"},F:{"76":0.00292,"79":0.00292,"81":0.00584,"82":0.00292,"83":0.01753,"84":0.10808,"85":0.62509,"86":0.02045,"87":0.00876,_:"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 77 78 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.01168,"13":0.00584,"16":0.00292,"17":0.01753,"18":0.06426,"84":0.00876,"85":0.00292,"89":0.00584,"90":0.00584,"92":0.02045,"94":0.00876,"95":0.00584,"96":0.01168,"97":0.02045,"98":0.02045,"99":0.27165,"100":1.76136,"101":0.02045,_:"14 15 79 80 81 83 86 87 88 91 93"},E:{"4":0,"13":0.00876,"14":0.06426,"15":0.01753,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.01168,"12.1":0.00292,"13.1":0.02921,"14.1":0.05842,"15.1":0.03505,"15.2-15.3":0.01753,"15.4":0.12268},G:{"8":0.00453,"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.01813,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08915,"10.0-10.2":0.00151,"10.3":0.30523,"11.0-11.2":0.38532,"11.3-11.4":0.09822,"12.0-12.1":0.07102,"12.2-12.5":3.87886,"13.0-13.1":0.03022,"13.2":0.01511,"13.3":0.21608,"13.4-13.7":0.25235,"14.0-14.4":1.32821,"14.5-14.8":1.61833,"15.0-15.1":1.35088,"15.2-15.3":2.87553,"15.4":2.56576},P:{"4":0.18732,"5.0-5.4":0.08105,"6.2-6.4":0.03122,"7.2-7.4":0.22894,"8.2":0.13171,"9.2":0.08325,"10.1":0.66868,"11.1-11.2":0.07285,"12.0":0.02081,"13.0":0.04163,"14.0":0.14569,"15.0":0.08325,"16.0":1.03025},I:{"0":0,"3":0,"4":0.00369,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00246,"4.2-4.3":0.00308,"4.4":0,"4.4.3-4.4.4":0.11817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03213,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01416},N:{"10":0.06186,_:"11"},L:{"0":56.26693},S:{"2.5":0},R:{_:"0"},M:{"0":0.26896},Q:{"10.4":0.04955},O:{"0":0.20526},H:{"0":1.72216}}; +module.exports={C:{"47":0.00297,"52":0.06237,"56":0.00594,"70":0.00297,"71":0.00297,"72":0.00891,"75":0.00891,"78":0.00891,"84":0.00297,"85":0.00297,"88":0.00297,"89":0.00594,"90":0.00297,"91":0.03861,"92":0.00594,"93":0.00594,"94":0.00891,"95":0.00594,"96":0.01188,"97":0.01782,"98":0.11583,"99":0.49896,"100":1.86516,"101":0.01782,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 73 74 76 77 79 80 81 82 83 86 87 102 103 3.5 3.6"},D:{"11":0.03861,"19":0.02079,"26":0.00297,"29":0.00297,"33":0.02376,"43":0.00594,"47":0.00297,"49":0.01782,"55":0.00297,"56":0.00594,"62":0.00297,"63":0.00594,"64":0.01188,"65":0.00594,"66":0.0594,"67":0.00594,"68":0.00891,"69":0.02079,"70":0.01485,"71":0.00594,"74":0.03861,"75":0.00594,"76":0.03267,"77":0.01485,"78":0.02376,"79":0.14553,"80":0.03564,"81":0.01782,"83":0.03861,"84":0.03564,"85":0.02079,"86":0.05346,"87":0.21681,"88":0.02376,"89":0.03267,"90":0.0594,"91":0.05346,"92":0.07722,"93":0.04752,"94":0.05346,"95":0.06237,"96":0.13662,"97":0.15147,"98":0.19305,"99":0.23166,"100":3.24324,"101":11.22957,"102":0.95337,"103":0.02673,"104":0.00891,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 25 27 28 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 48 50 51 52 53 54 57 58 59 60 61 72 73"},F:{"17":0.00297,"76":0.00594,"85":0.24057,"86":0.37125,"87":0.04752,_:"9 11 12 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 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:{"12":0.00891,"13":0.00594,"14":0.00297,"16":0.00297,"17":0.02376,"18":0.03267,"84":0.00891,"85":0.00594,"89":0.00594,"90":0.00594,"92":0.02376,"94":0.00297,"96":0.00594,"97":0.00594,"98":0.00891,"99":0.01485,"100":0.12474,"101":2.02554,_:"15 79 80 81 83 86 87 88 91 93 95"},E:{"4":0,"10":0.00297,"13":0.00594,"14":0.02376,"15":0.01188,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01188,"11.1":0.00594,"12.1":0.00594,"13.1":0.0297,"14.1":0.05643,"15.1":0.03267,"15.2-15.3":0.01782,"15.4":0.17226,"15.5":0.03564},G:{"8":0.00845,"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.01831,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09016,"10.0-10.2":0,"10.3":0.3254,"11.0-11.2":0.18735,"11.3-11.4":0.0493,"12.0-12.1":0.11974,"12.2-12.5":2.91736,"13.0-13.1":0.04226,"13.2":0.01268,"13.3":0.18031,"13.4-13.7":0.21834,"14.0-14.4":1.34528,"14.5-14.8":1.51573,"15.0-15.1":1.03256,"15.2-15.3":1.66082,"15.4":4.35702},P:{"4":0.13476,"5.0-5.4":0.07256,"6.2-6.4":0.04147,"7.2-7.4":0.17623,"8.2":0.22305,"9.2":0.07256,"10.1":0.29386,"11.1-11.2":0.1244,"12.0":0.02073,"13.0":0.0311,"14.0":0.13476,"15.0":0.05183,"16.0":0.58051},I:{"0":0,"3":0,"4":0.0009,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00135,"4.2-4.3":0.00314,"4.4":0,"4.4.3-4.4.4":0.07898},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03564,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01406},N:{"10":0.06871,_:"11"},L:{"0":57.70677},S:{"2.5":0.01406},R:{_:"0"},M:{"0":0.39368},Q:{"10.4":0.01406},O:{"0":0.20387},H:{"0":1.49084}}; 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 12fed17a9200a6..1cf44549780832 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:{"88":0.01688,"89":0.00422,"97":0.1604,"98":0.22371,"99":1.05103,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 90 91 92 93 94 95 96 100 101 3.5 3.6"},D:{"49":0.64581,"50":0.01266,"55":0.02111,"65":0.01266,"67":0.01266,"76":0.01266,"79":6.52989,"81":0.00844,"91":0.02955,"92":0.03377,"94":0.09286,"95":0.05909,"96":0.06754,"97":0.0802,"98":0.02955,"99":5.34801,"100":21.51866,"101":0.25326,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 75 77 78 80 83 84 85 86 87 88 89 90 93 102 103 104"},F:{"84":0.03377,"85":0.12241,_:"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 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.00844,"18":0.00844,"94":0.00422,"97":0.01688,"99":0.37567,"100":2.15693,"101":0.02955,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96 98"},E:{"4":0,"11":0.00422,"13":0.02955,"14":0.43054,"15":0.02955,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.08864,"14.1":0.32924,"15.1":0.13507,"15.2-15.3":0.04643,"15.4":0.57828},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.0045,"10.0-10.2":0,"10.3":0.00676,"11.0-11.2":0,"11.3-11.4":0.00901,"12.0-12.1":0,"12.2-12.5":0.30406,"13.0-13.1":0.02027,"13.2":0.02928,"13.3":0.0473,"13.4-13.7":0.37613,"14.0-14.4":1.22976,"14.5-14.8":3.13746,"15.0-15.1":1.20723,"15.2-15.3":8.28622,"15.4":7.86278},P:{"4":0.03052,"5.0-5.4":0.08105,"6.2-6.4":0.03039,"7.2-7.4":0.13224,"8.2":0.13171,"9.2":0.05086,"10.1":0.66868,"11.1-11.2":0.15259,"12.0":0.02034,"13.0":0.22379,"14.0":0.34586,"15.0":0.07121,"16.0":3.93674},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:{"11":0.21105,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":30.37962},S:{"2.5":0},R:{_:"0"},M:{"0":0.16181},Q:{"10.4":0},O:{"0":0.38141},H:{"0":0.04924}}; +module.exports={C:{"78":0.04058,"84":0.00451,"88":0.00451,"89":0.02255,"97":0.01804,"98":0.03156,"99":0.32465,"100":1.11823,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 90 91 92 93 94 95 96 101 102 103 3.5 3.6"},D:{"49":0.58617,"55":0.01353,"65":0.01804,"72":0.00902,"79":5.36571,"83":0.02255,"87":0.04058,"91":0.00902,"92":0.01804,"93":0.07214,"94":0.08116,"96":0.01353,"97":0.06313,"98":0.0992,"99":0.32465,"100":6.61921,"101":22.61714,"102":1.80811,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 78 80 81 84 85 86 88 89 90 95 103 104"},F:{"85":0.02705,"86":0.00902,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00902,"17":0.00902,"18":0.01804,"96":0.00451,"99":0.00902,"100":0.0992,"101":2.51151,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98"},E:{"4":0,"13":0.0496,"14":0.09018,"15":0.03607,_:"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.01353,"12.1":0.00902,"13.1":0.07214,"14.1":0.3517,"15.1":0.18036,"15.2-15.3":0.10822,"15.4":1.05511,"15.5":0.11723},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.00375,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.02063,"11.0-11.2":0,"11.3-11.4":0.01125,"12.0-12.1":0,"12.2-12.5":0.37879,"13.0-13.1":0.09001,"13.2":0,"13.3":0.00938,"13.4-13.7":0.34128,"14.0-14.4":0.95635,"14.5-14.8":2.83341,"15.0-15.1":1.262,"15.2-15.3":1.80956,"15.4":11.02987},P:{"4":0.02026,"5.0-5.4":0.02146,"6.2-6.4":0.0304,"7.2-7.4":0.12153,"8.2":0.22305,"9.2":0.05364,"10.1":0.29386,"11.1-11.2":0.16205,"12.0":0.0304,"13.0":0.22281,"14.0":0.1823,"15.0":0.03038,"16.0":2.35979},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.00549},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12625,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":30.95649},S:{"2.5":0},R:{_:"0"},M:{"0":0.1208},Q:{"10.4":0},O:{"0":0.4887},H:{"0":0.11957}}; 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 630f5cc728a161..583b1cb9513b7d 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:{"52":0.01921,"73":0.00768,"78":0.02689,"80":0.00768,"88":0.00384,"89":0.00768,"90":0.01536,"91":0.02689,"94":0.00384,"95":0.01152,"96":0.00768,"97":0.01536,"98":0.36105,"99":1.087,"100":0.00768,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 81 82 83 84 85 86 87 92 93 101 3.5 3.6"},D:{"34":0.00384,"38":0.02689,"47":0.00768,"48":0.00768,"49":0.0653,"53":0.01152,"56":0.01921,"58":0.00384,"63":0.00768,"65":0.00384,"67":0.00768,"68":0.01152,"69":0.10371,"70":0.00768,"72":0.00768,"73":0.00384,"74":0.00768,"75":0.00768,"76":0.00768,"77":0.00768,"78":0.00384,"79":0.1498,"80":0.01536,"81":0.01921,"83":0.02689,"84":0.03457,"85":0.02689,"86":0.03841,"87":0.15364,"88":0.01152,"89":0.02305,"90":0.02305,"91":0.07298,"92":0.04609,"93":0.01921,"94":0.03073,"95":0.13828,"96":0.13059,"97":0.12675,"98":0.22662,"99":4.5247,"100":21.8284,"101":0.2996,"102":0.00384,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 57 59 60 61 62 64 66 71 103 104"},F:{"28":0.00768,"36":0.00768,"82":0.00768,"83":0.00768,"84":0.45708,"85":1.46342,"86":0.02305,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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.00384,"17":0.00768,"18":0.01152,"84":0.00384,"92":0.01152,"94":0.00384,"95":0.00384,"96":0.01152,"97":0.02689,"98":0.01536,"99":0.30728,"100":2.23546,"101":0.03073,_:"12 13 14 16 79 80 81 83 85 86 87 88 89 90 91 93"},E:{"4":0,"12":0.00384,"13":0.01536,"14":0.08834,"15":0.04225,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00384,"11.1":0.00768,"12.1":0.02305,"13.1":0.13059,"14.1":0.28423,"15.1":0.07682,"15.2-15.3":0.08066,"15.4":0.4494},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00634,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04279,"10.0-10.2":0.00158,"10.3":0.01743,"11.0-11.2":0.00555,"11.3-11.4":0.01664,"12.0-12.1":0.01268,"12.2-12.5":0.3162,"13.0-13.1":0.01109,"13.2":0.00713,"13.3":0.03487,"13.4-13.7":0.12363,"14.0-14.4":0.31223,"14.5-14.8":1.23309,"15.0-15.1":0.32967,"15.2-15.3":2.5795,"15.4":2.86875},P:{"4":0.14506,"5.0-5.4":1.20304,"6.2-6.4":0.07077,"7.2-7.4":0.06217,"8.2":0.01047,"9.2":0.02072,"10.1":0.02022,"11.1-11.2":0.11398,"12.0":0.02072,"13.0":0.07253,"14.0":0.18651,"15.0":0.08289,"16.0":1.67856},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00513,"4.4":0,"4.4.3-4.4.4":0.02566},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00384,"11":0.18053,_:"6 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":51.64571},S:{"2.5":0},R:{_:"0"},M:{"0":0.17858},Q:{"10.4":0},O:{"0":0.03079},H:{"0":0.1749}}; +module.exports={C:{"52":0.01642,"73":0.00411,"78":0.02053,"80":0.00411,"88":0.00821,"89":0.00411,"90":0.01642,"91":0.02874,"95":0.00821,"96":0.00411,"97":0.00411,"98":0.01642,"99":0.25451,"100":1.19866,"101":0.01232,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 81 82 83 84 85 86 87 92 93 94 102 103 3.5 3.6"},D:{"34":0.00411,"38":0.02053,"47":0.00411,"48":0.00411,"49":0.05747,"53":0.01232,"56":0.01232,"63":0.00821,"65":0.00821,"67":0.00821,"68":0.01232,"69":0.078,"70":0.01232,"72":0.00821,"73":0.00821,"74":0.00821,"75":0.00411,"76":0.00821,"77":0.00821,"78":0.00411,"79":0.11084,"80":0.01642,"81":0.01232,"83":0.02053,"84":0.04926,"85":0.03695,"86":0.04926,"87":0.25041,"88":0.01232,"89":0.03695,"90":0.02053,"91":0.08621,"92":0.03695,"93":0.01642,"94":0.02053,"95":0.04105,"96":0.09031,"97":0.07389,"98":0.09442,"99":0.36124,"100":5.09841,"101":21.0176,"102":2.20028,"103":0.00411,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 57 58 59 60 61 62 64 66 71 104"},F:{"28":0.00411,"69":0.00411,"80":0.00411,"82":0.00411,"84":0.00411,"85":1.71179,"86":1.56401,"87":0.04105,_:"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 70 71 72 73 74 75 76 77 78 79 81 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00821,"18":0.01232,"84":0.00411,"86":0.00411,"92":0.00821,"94":0.00411,"96":0.00821,"97":0.00821,"98":0.00821,"99":0.03284,"100":0.11905,"101":2.54921,_:"12 13 14 15 16 79 80 81 83 85 87 88 89 90 91 93 95"},E:{"4":0,"13":0.01642,"14":0.07389,"15":0.02874,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00411,"10.1":0.00411,"11.1":0.00821,"12.1":0.01642,"13.1":0.11494,"14.1":0.25451,"15.1":0.05747,"15.2-15.3":0.06979,"15.4":0.70196,"15.5":0.09031},G:{"8":0.0024,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00399,"6.0-6.1":0.0008,"7.0-7.1":0.0008,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03593,"10.0-10.2":0.00319,"10.3":0.02156,"11.0-11.2":0.00639,"11.3-11.4":0.01277,"12.0-12.1":0.01517,"12.2-12.5":0.27303,"13.0-13.1":0.01038,"13.2":0.00639,"13.3":0.03353,"13.4-13.7":0.11336,"14.0-14.4":0.25866,"14.5-14.8":0.93246,"15.0-15.1":0.19559,"15.2-15.3":0.59077,"15.4":5.45743},P:{"4":0.09427,"5.0-5.4":0.06083,"6.2-6.4":0.05069,"7.2-7.4":0.05237,"8.2":0.22305,"9.2":0.01047,"10.1":0.02077,"11.1-11.2":0.09427,"12.0":0.01047,"13.0":0.06285,"14.0":0.13617,"15.0":0.05237,"16.0":0.68087},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00295,"4.4":0,"4.4.3-4.4.4":0.03242},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14368,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":49.12319},S:{"2.5":0},R:{_:"0"},M:{"0":0.18271},Q:{"10.4":0},O:{"0":0.02358},H:{"0":0.18414}}; 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 3482dc8cbe2b60..40696b60e1e2d9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js @@ -1 +1 @@ -module.exports={C:{"4":0.00461,"38":0.0023,"41":0.00461,"43":0.00922,"47":0.00691,"48":0.00691,"49":0.0023,"50":0.00922,"51":0.00691,"52":0.10138,"54":0.0023,"56":0.00461,"57":0.0023,"60":0.00461,"62":0.00922,"63":0.00461,"64":0.0023,"67":0.00461,"68":0.0023,"72":0.01843,"78":0.01382,"84":0.01152,"85":0.00691,"88":0.00691,"89":0.00691,"90":0.0023,"91":0.03686,"92":0.0023,"93":0.00691,"94":0.00922,"95":0.01613,"96":0.02074,"97":0.03917,"98":0.52992,"99":1.30406,"100":0.06682,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 53 55 58 59 61 65 66 69 70 71 73 74 75 76 77 79 80 81 82 83 86 87 101 3.5 3.6"},D:{"29":0.00691,"31":0.00461,"33":0.01382,"38":0.00691,"39":0.0023,"40":0.00461,"41":0.0023,"43":0.00461,"49":0.01152,"50":0.01152,"53":0.03226,"55":0.00461,"56":0.03917,"57":0.00691,"58":0.00691,"63":0.0023,"64":0.0023,"67":0.0023,"68":0.06221,"69":0.00461,"70":0.00691,"71":0.0023,"72":0.0023,"73":0.0023,"74":0.00922,"75":0.00691,"76":0.00691,"77":0.00461,"78":0.0023,"79":0.07142,"80":0.02074,"81":0.01843,"83":0.01152,"84":0.00691,"85":0.09216,"86":0.0599,"87":0.04608,"88":0.02534,"89":0.02765,"90":0.07142,"91":0.02765,"92":0.02304,"93":0.03917,"94":0.02534,"95":0.0576,"96":0.08064,"97":0.14054,"98":0.18662,"99":1.53446,"100":6.1079,"101":0.09446,"102":0.00922,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 32 34 35 36 37 42 44 45 46 47 48 51 52 54 59 60 61 62 65 66 103 104"},F:{"28":0.0023,"36":0.0023,"42":0.00461,"44":0.00461,"67":0.00461,"79":0.0023,"82":0.0023,"83":0.00461,"84":0.12211,"85":0.50688,"86":0.01382,_:"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 43 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 80 81 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.02995,"13":0.00922,"14":0.02995,"15":0.01382,"16":0.03226,"17":0.01152,"18":0.0576,"84":0.04378,"85":0.00691,"89":0.01613,"90":0.01843,"91":0.00922,"92":0.02074,"94":0.0023,"95":0.00691,"96":0.01382,"97":0.01843,"98":0.02534,"99":0.2304,"100":0.864,"101":0.00691,_:"79 80 81 83 86 87 88 93"},E:{"4":0,"8":0.0023,"10":0.00691,"13":0.00691,"14":0.01152,_:"0 5 6 7 9 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00461,"12.1":0.0023,"13.1":0.01382,"14.1":0.03456,"15.1":0.02765,"15.2-15.3":0.00922,"15.4":0.03456},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00234,"6.0-6.1":0,"7.0-7.1":0.00546,"8.1-8.4":0,"9.0-9.2":0.00078,"9.3":0.02498,"10.0-10.2":0.01327,"10.3":0.40283,"11.0-11.2":0.3232,"11.3-11.4":0.0445,"12.0-12.1":0.14911,"12.2-12.5":1.7745,"13.0-13.1":0.04606,"13.2":0.08666,"13.3":0.20844,"13.4-13.7":0.46919,"14.0-14.4":1.22021,"14.5-14.8":1.08594,"15.0-15.1":0.71589,"15.2-15.3":0.75883,"15.4":0.47153},P:{"4":0.27086,"5.0-5.4":0.04167,"6.2-6.4":0.01042,"7.2-7.4":0.14585,"8.2":0.01042,"9.2":0.15627,"10.1":0.03016,"11.1-11.2":0.05209,"12.0":0.01042,"13.0":0.04167,"14.0":0.1146,"15.0":0.23961,"16.0":0.61465},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00126,"4.2-4.3":0.00389,"4.4":0,"4.4.3-4.4.4":0.03333},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00461,"11":0.12442,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01539},N:{_:"10 11"},L:{"0":69.98493},S:{"2.5":0.03078},R:{_:"0"},M:{"0":0.44637},Q:{"10.4":0.03848},O:{"0":0.70034},H:{"0":4.75781}}; +module.exports={C:{"4":0.00243,"31":0.00243,"34":0.00729,"38":0.00243,"43":0.00243,"44":0.00243,"47":0.00729,"48":0.00243,"49":0.00486,"50":0.01457,"51":0.00486,"52":0.14088,"56":0.00972,"57":0.00486,"58":0.00486,"62":0.00486,"68":0.00243,"70":0.00972,"72":0.01457,"78":0.01215,"81":0.00243,"82":0.00486,"84":0.00486,"85":0.00243,"86":0.00486,"88":0.00729,"89":0.00486,"90":0.00486,"91":0.05101,"92":0.00243,"93":0.00729,"94":0.00972,"95":0.00729,"96":0.02672,"97":0.017,"98":0.02672,"99":0.56839,"100":1.49384,"101":0.14574,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 37 39 40 41 42 45 46 53 54 55 59 60 61 63 64 65 66 67 69 71 73 74 75 76 77 79 80 83 87 102 103 3.5 3.6"},D:{"30":0.00243,"38":0.00729,"39":0.00243,"40":0.00729,"42":0.00729,"43":0.00243,"47":0.00972,"49":0.00972,"50":0.01215,"53":0.03401,"55":0.00729,"56":0.03644,"57":0.00486,"58":0.00486,"63":0.00729,"64":0.00486,"65":0.00243,"68":0.0583,"69":0.00729,"70":0.00729,"72":0.00243,"74":0.01215,"75":0.00972,"76":0.01943,"77":0.00729,"79":0.05344,"80":0.01215,"81":0.01457,"83":0.01943,"84":0.00486,"85":0.08987,"86":0.05587,"87":0.04372,"88":0.00972,"89":0.01457,"90":0.05101,"91":0.04615,"92":0.03158,"93":0.02915,"94":0.03644,"95":0.05101,"96":0.0583,"97":0.12631,"98":0.15303,"99":0.17003,"100":1.72216,"101":5.53326,"102":0.56596,"103":0.01215,"104":0.00729,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 41 44 45 46 48 51 52 54 59 60 61 62 66 67 71 73 78"},F:{"28":0.00486,"42":0.00243,"44":0.00243,"67":0.00243,"79":0.00972,"84":0.00729,"85":0.36435,"86":0.45665,"87":0.03158,_:"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 43 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 80 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.05587,"13":0.00972,"14":0.03401,"15":0.00972,"16":0.017,"17":0.0753,"18":0.06073,"84":0.01215,"85":0.00972,"89":0.00972,"90":0.00729,"91":0.00243,"92":0.02429,"95":0.00486,"96":0.01215,"97":0.00486,"98":0.02429,"99":0.03158,"100":0.1676,"101":1.14649,_:"79 80 81 83 86 87 88 93 94"},E:{"4":0,"10":0.00243,"11":0.00243,"13":0.00729,"14":0.00972,"15":0.00486,_:"0 5 6 7 8 9 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00486,"11.1":0.00486,"12.1":0.00243,"13.1":0.01215,"14.1":0.03158,"15.1":0.01457,"15.2-15.3":0.01215,"15.4":0.06073,"15.5":0.00486},G:{"8":0.00236,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00157,"6.0-6.1":0,"7.0-7.1":0.01259,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03542,"10.0-10.2":0.00551,"10.3":0.47221,"11.0-11.2":0.29277,"11.3-11.4":0.04958,"12.0-12.1":0.17236,"12.2-12.5":1.40798,"13.0-13.1":0.04722,"13.2":0.08736,"13.3":0.22745,"13.4-13.7":0.49425,"14.0-14.4":1.05854,"14.5-14.8":1.01604,"15.0-15.1":0.80906,"15.2-15.3":0.65008,"15.4":1.02391},P:{"4":0.24756,"5.0-5.4":0.05157,"6.2-6.4":0.03029,"7.2-7.4":0.08252,"8.2":0.02288,"9.2":0.08252,"10.1":0.02019,"11.1-11.2":0.05157,"12.0":0.02063,"13.0":0.06189,"14.0":0.12378,"15.0":0.17535,"16.0":0.43322},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00114,"4.2-4.3":0.00303,"4.4":0,"4.4.3-4.4.4":0.03369},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01457,"9":0.00243,"11":0.48823,_:"6 7 10 5.5"},J:{"7":0,"10":0.00757},N:{_:"10 11"},L:{"0":69.68398},S:{"2.5":0.03786},R:{_:"0"},M:{"0":0.53754},Q:{"10.4":0.00757},O:{"0":0.77224},H:{"0":3.7774}}; 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 5e375a458158a0..4f71edbc9128d4 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:{"36":0.02549,"43":1.3763,"51":0.02549,"52":0.04733,"53":0.02913,"54":0.01821,"55":0.02913,"56":0.02549,"57":0.02913,"58":0.01456,"59":0.01092,"60":0.00364,"61":0.00364,"63":0.01092,"66":0.00364,"68":0.00364,"72":0.00728,"78":0.01821,"80":0.00728,"81":0.00728,"82":0.01092,"83":0.00728,"84":0.00728,"85":0.00364,"86":0.00728,"87":0.00728,"88":0.00728,"89":0.01456,"90":0.01821,"91":0.02549,"92":0.00364,"93":0.00364,"94":0.01092,"95":0.01092,"96":0.01092,"97":0.02185,"98":0.26943,"99":0.72456,_:"2 3 4 5 6 7 8 9 10 11 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 44 45 46 47 48 49 50 62 64 65 67 69 70 71 73 74 75 76 77 79 100 101 3.5 3.6"},D:{"11":0.01456,"17":0.00728,"21":0.00364,"27":0.00364,"31":0.00728,"39":0.01821,"40":0.01821,"41":0.01821,"42":0.01456,"43":0.01456,"44":0.01456,"45":0.03641,"46":0.01456,"47":0.02913,"48":0.10195,"49":0.08374,"50":0.01456,"51":0.01456,"52":0.01456,"53":0.02913,"54":0.02185,"55":0.05826,"56":0.02913,"57":0.10195,"58":0.05097,"59":0.02549,"60":0.02185,"61":0.01456,"62":0.13836,"63":0.05097,"64":0.01092,"65":0.04369,"66":0.00364,"67":0.02549,"68":0.01821,"69":1.08502,"70":0.48061,"71":0.01821,"72":0.84471,"73":0.05097,"74":0.29856,"75":0.31677,"76":0.01821,"77":0.11287,"78":0.41872,"79":0.26215,"80":0.11651,"81":0.11651,"83":0.2221,"84":0.10559,"85":0.0801,"86":0.32769,"87":0.21482,"88":0.06918,"89":0.03641,"90":0.10195,"91":0.05462,"92":0.45148,"93":0.03277,"94":0.08738,"95":0.18205,"96":0.3641,"97":0.45513,"98":0.36774,"99":1.04497,"100":3.46259,"101":0.07646,"102":0.01092,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 22 23 24 25 26 28 29 30 32 33 34 35 36 37 38 103 104"},F:{"83":0.00364,"84":0.01456,"85":0.05097,_:"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 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00728,"14":0.00728,"15":0.00364,"16":0.01456,"17":0.02185,"18":0.12015,"84":0.00364,"85":0.00728,"86":0.00728,"87":0.00364,"89":0.01456,"92":0.01821,"93":0.01092,"94":0.01092,"95":0.01821,"96":0.03277,"97":0.05097,"98":0.06554,"99":0.62625,"100":4.29274,"101":0.01456,_:"12 79 80 81 83 88 90 91"},E:{"4":0,"9":0.01092,"11":0.00728,"12":0.00728,"13":0.03277,"14":0.10923,"15":0.03277,_:"0 5 6 7 8 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00364,"10.1":0.00728,"11.1":0.01456,"12.1":0.02549,"13.1":0.12744,"14.1":0.14928,"15.1":0.05826,"15.2-15.3":0.05826,"15.4":0.30584},G:{"8":0,"3.2":0,"4.0-4.1":0.00188,"4.2-4.3":0.04606,"5.0-5.1":0.01598,"6.0-6.1":0.02632,"7.0-7.1":0.00564,"8.1-8.4":0.01598,"9.0-9.2":0.09681,"9.3":0.04418,"10.0-10.2":0.03948,"10.3":0.16824,"11.0-11.2":0.46714,"11.3-11.4":0.06015,"12.0-12.1":0.10809,"12.2-12.5":0.33837,"13.0-13.1":0.03666,"13.2":0.02256,"13.3":0.11561,"13.4-13.7":0.72279,"14.0-14.4":0.99913,"14.5-14.8":1.28674,"15.0-15.1":0.6805,"15.2-15.3":1.92776,"15.4":2.17402},P:{"4":0.14506,"5.0-5.4":1.20304,"6.2-6.4":0.07077,"7.2-7.4":0.06217,"8.2":0.01047,"9.2":0.02072,"10.1":0.02022,"11.1-11.2":0.11398,"12.0":0.02072,"13.0":0.07253,"14.0":0.28005,"15.0":0.01077,"16.0":0.37698},I:{"0":0,"3":0,"4":0.0954,"2.1":0,"2.2":0.01272,"2.3":0,"4.1":0.03816,"4.2-4.3":0.01908,"4.4":0,"4.4.3-4.4.4":0.1908},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.16533,"8":1.04708,"9":0.88176,"10":0.33066,"11":7.71536,_:"7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":36.21691},S:{"2.5":0},R:{_:"0"},M:{"0":0.19716},Q:{"10.4":5.34876},O:{"0":11.28264},H:{"0":0.12042}}; +module.exports={C:{"4":0.00763,"36":0.03817,"43":0.84737,"51":0.01527,"52":0.03435,"53":0.01527,"54":0.00763,"55":0.01527,"56":0.01145,"57":0.01909,"58":0.00763,"59":0.00382,"63":0.01145,"72":0.00382,"78":0.02672,"81":0.00382,"82":0.00763,"84":0.00382,"87":0.00382,"88":0.00382,"89":0.01527,"90":0.01909,"91":0.0229,"94":0.00763,"95":0.00763,"96":0.01145,"97":0.01145,"98":0.01909,"99":0.23284,"100":0.87028,_:"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 37 38 39 40 41 42 44 45 46 47 48 49 50 60 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 83 85 86 92 93 101 102 103 3.5 3.6"},D:{"11":0.01527,"17":0.01145,"27":0.00382,"31":0.00763,"39":0.01527,"40":0.01909,"41":0.01527,"42":0.01145,"43":0.01527,"44":0.01145,"45":0.0229,"46":0.01145,"47":0.05344,"48":0.11451,"49":0.09161,"50":0.01527,"51":0.01145,"52":0.01145,"53":0.02672,"54":0.01909,"55":0.05726,"56":0.02672,"57":0.09924,"58":0.06107,"59":0.0229,"60":0.01527,"61":0.01145,"62":0.14505,"63":0.11451,"64":0.00763,"65":0.04199,"66":0.00382,"67":0.0229,"68":0.01909,"69":1.02677,"70":0.37407,"71":0.0229,"72":0.51148,"73":0.05344,"74":0.29773,"75":0.30536,"76":0.03054,"77":0.0458,"78":0.30918,"79":0.27101,"80":0.11451,"81":0.12596,"83":0.22902,"84":0.08779,"85":0.05344,"86":0.38552,"87":0.1794,"88":0.03435,"89":0.04199,"90":0.08397,"91":0.05344,"92":0.46186,"93":0.03054,"94":0.08016,"95":0.20612,"96":0.36262,"97":0.45041,"98":0.27864,"99":0.3359,"100":1.44664,"101":3.57271,"102":0.20994,"103":0.02672,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 28 29 30 32 33 34 35 36 37 38 104"},F:{"85":0.03054,"86":0.03054,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00382,"14":0.00382,"15":0.00382,"16":0.01527,"17":0.01909,"18":0.09924,"85":0.00382,"86":0.00382,"87":0.00382,"89":0.01527,"92":0.01527,"93":0.00382,"94":0.00763,"95":0.00763,"96":0.01909,"97":0.0229,"98":0.03817,"99":0.06871,"100":0.25574,"101":5.20257,_:"12 79 80 81 83 84 88 90 91"},E:{"4":0,"9":0.01527,"11":0.00382,"12":0.00382,"13":0.03435,"14":0.12214,"15":0.03435,_:"0 5 6 7 8 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00382,"10.1":0.00382,"11.1":0.01145,"12.1":0.02672,"13.1":0.14123,"14.1":0.16031,"15.1":0.05726,"15.2-15.3":0.04962,"15.4":0.57637,"15.5":0.06871},G:{"8":0,"3.2":0,"4.0-4.1":0.00206,"4.2-4.3":0.05162,"5.0-5.1":0.01652,"6.0-6.1":0.02891,"7.0-7.1":0.00723,"8.1-8.4":0.01755,"9.0-9.2":0.12493,"9.3":0.04543,"10.0-10.2":0.02994,"10.3":0.12802,"11.0-11.2":0.31283,"11.3-11.4":0.06814,"12.0-12.1":0.11357,"12.2-12.5":0.36652,"13.0-13.1":0.04027,"13.2":0.02271,"13.3":0.13319,"13.4-13.7":0.74956,"14.0-14.4":1.05724,"14.5-14.8":1.26476,"15.0-15.1":0.67007,"15.2-15.3":1.00355,"15.4":4.07098},P:{"4":0.09427,"5.0-5.4":0.06083,"6.2-6.4":0.05069,"7.2-7.4":0.05237,"8.2":0.22305,"9.2":0.01047,"10.1":0.02077,"11.1-11.2":0.09427,"12.0":0.01047,"13.0":0.06285,"14.0":0.20816,"15.0":0.05237,"16.0":0.18625},I:{"0":0,"3":0,"4":0.10792,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02024,"4.2-4.3":0.02698,"4.4":0,"4.4.3-4.4.4":0.21584},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.27278,"7":0.06819,"8":0.75013,"9":0.61375,"10":0.27278,"11":9.20619,_:"5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":32.63295},S:{"2.5":0},R:{_:"0"},M:{"0":0.21022},Q:{"10.4":5.79347},O:{"0":11.91464},H:{"0":0.12293}}; 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 57c492723389fa..e4b7944c5dedd1 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:{"50":0.01281,"51":0.01708,"52":0.02561,"53":0.01708,"54":0.00854,"55":0.01708,"56":0.01281,"57":0.01281,"58":0.00427,"59":0.00427,"73":0.00427,"78":0.01708,"80":0.00427,"84":0.00854,"88":0.00854,"89":0.00427,"90":0.01708,"91":0.02561,"93":0.00427,"94":0.00427,"95":0.00854,"96":0.01281,"97":0.01708,"98":0.27322,"99":0.86661,"100":0.00854,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 81 82 83 85 86 87 92 101 3.5 3.6"},D:{"22":0.00854,"26":0.00427,"34":0.00427,"38":0.01708,"39":0.00854,"40":0.00427,"41":0.00854,"42":0.00854,"43":0.00427,"44":0.00854,"45":0.00854,"46":0.00854,"47":0.01708,"48":0.00427,"49":0.03842,"50":0.00427,"51":0.00854,"52":0.00427,"53":0.01281,"54":0.00854,"55":0.00854,"56":0.00854,"57":0.00854,"58":0.01281,"59":0.00854,"60":0.00854,"61":0.00854,"62":0.01281,"63":0.01281,"64":0.00854,"65":0.01281,"67":0.00427,"68":0.00427,"69":0.08965,"70":0.00854,"71":0.00854,"72":0.00854,"73":0.00854,"74":0.00854,"75":0.53363,"76":0.01708,"77":0.00854,"78":0.01281,"79":0.15795,"80":0.02988,"81":0.02561,"83":0.02135,"84":0.03415,"85":0.02561,"86":0.04696,"87":0.11099,"88":0.03842,"89":0.03842,"90":0.02988,"91":0.11099,"92":0.05977,"93":0.04269,"94":0.03842,"95":0.22199,"96":0.11953,"97":0.19637,"98":0.29456,"99":4.87947,"100":24.99926,"101":0.38848,"102":0.00854,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 66 103 104"},F:{"82":0.00427,"83":0.00427,"84":0.32018,"85":1.08433,"86":0.01281,_:"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 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.00427,"18":0.01708,"84":0.00427,"86":0.00427,"89":0.00427,"92":0.00854,"94":0.00427,"96":0.00854,"97":0.02988,"98":0.02135,"99":0.26895,"100":1.93813,"101":0.03415,_:"12 13 14 15 16 79 80 81 83 85 87 88 90 91 93 95"},E:{"4":0,"13":0.01281,"14":0.05977,"15":0.02988,_:"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.00427,"12.1":0.02135,"13.1":0.07684,"14.1":0.18784,"15.1":0.05977,"15.2-15.3":0.05977,"15.4":0.27749},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00249,"6.0-6.1":0.0015,"7.0-7.1":0.01247,"8.1-8.4":0,"9.0-9.2":0.00599,"9.3":0.0419,"10.0-10.2":0.00948,"10.3":0.04788,"11.0-11.2":0.00499,"11.3-11.4":0.01846,"12.0-12.1":0.00449,"12.2-12.5":0.26486,"13.0-13.1":0.00599,"13.2":0.00249,"13.3":0.01646,"13.4-13.7":0.0833,"14.0-14.4":0.17408,"14.5-14.8":0.60155,"15.0-15.1":0.22097,"15.2-15.3":1.70987,"15.4":1.75676},P:{"4":0.17839,"5.0-5.4":1.20304,"6.2-6.4":0.07077,"7.2-7.4":0.09444,"8.2":0.01047,"9.2":0.02072,"10.1":0.02022,"11.1-11.2":0.03148,"12.0":0.02072,"13.0":0.04197,"14.0":0.07345,"15.0":0.04197,"16.0":1.02835},I:{"0":0,"3":0,"4":0.00278,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00185,"4.2-4.3":0.00742,"4.4":0,"4.4.3-4.4.4":0.05099},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00854,"9":0.00854,"11":0.08111,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":50.08636},S:{"2.5":0},R:{_:"0"},M:{"0":0.19485},Q:{"10.4":0},O:{"0":0.03439},H:{"0":0.13022}}; +module.exports={C:{"50":0.01344,"51":0.01344,"52":0.02687,"53":0.01344,"54":0.00896,"55":0.01792,"56":0.00896,"57":0.00896,"59":0.00448,"73":0.00448,"78":0.01344,"84":0.00896,"88":0.00896,"90":0.01792,"91":0.02687,"95":0.00448,"96":0.00896,"97":0.00896,"98":0.00896,"99":0.20603,"100":0.9182,"101":0.01344,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 58 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 92 93 94 102 103 3.5 3.6"},D:{"22":0.00896,"26":0.00448,"34":0.00448,"38":0.01344,"39":0.00448,"40":0.00448,"41":0.00896,"42":0.00896,"43":0.00448,"44":0.00448,"45":0.00448,"46":0.00896,"47":0.01344,"48":0.00448,"49":0.04479,"50":0.00448,"51":0.00896,"53":0.00896,"54":0.00448,"55":0.00448,"56":0.00896,"57":0.00448,"58":0.00896,"59":0.00896,"60":0.00448,"61":0.00448,"62":0.00896,"63":0.01344,"64":0.00896,"65":0.00896,"67":0.00448,"68":0.00896,"69":0.06271,"70":0.00448,"71":0.00896,"72":0.00896,"73":0.00896,"74":0.00896,"75":0.01344,"76":0.01792,"77":0.00896,"78":0.01344,"79":0.15677,"80":0.02687,"81":0.0224,"83":0.02687,"84":0.03135,"85":0.02687,"86":0.05823,"87":0.12093,"88":0.03583,"89":0.04031,"90":0.02687,"91":0.09854,"92":0.06271,"93":0.03135,"94":0.03583,"95":0.04479,"96":0.1075,"97":0.14333,"98":0.21051,"99":0.32697,"100":5.82718,"101":24.84053,"102":2.35595,"103":0.00896,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 52 66 104"},F:{"82":0.00896,"84":0.00896,"85":0.93611,"86":0.81966,"87":0.03583,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01344,"89":0.00448,"92":0.00896,"96":0.00448,"97":0.00896,"98":0.00896,"99":0.03135,"100":0.11198,"101":2.38731,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.01792,"14":0.05823,"15":0.03135,_:"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.00448,"12.1":0.01344,"13.1":0.08062,"14.1":0.17916,"15.1":0.05823,"15.2-15.3":0.04927,"15.4":0.46582,"15.5":0.05823},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00159,"6.0-6.1":0.00053,"7.0-7.1":0.01057,"8.1-8.4":0.00053,"9.0-9.2":0.00476,"9.3":0.03964,"10.0-10.2":0.0074,"10.3":0.04228,"11.0-11.2":0.0037,"11.3-11.4":0.00687,"12.0-12.1":0.00264,"12.2-12.5":0.24206,"13.0-13.1":0.00476,"13.2":0.00264,"13.3":0.01638,"13.4-13.7":0.05444,"14.0-14.4":0.16226,"14.5-14.8":0.50632,"15.0-15.1":0.15327,"15.2-15.3":0.4059,"15.4":3.61506},P:{"4":0.15657,"5.0-5.4":0.06083,"6.2-6.4":0.05069,"7.2-7.4":0.08351,"8.2":0.22305,"9.2":0.01047,"10.1":0.02077,"11.1-11.2":0.03131,"12.0":0.01047,"13.0":0.03131,"14.0":0.05219,"15.0":0.03131,"16.0":0.39665},I:{"0":0,"3":0,"4":0.00179,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00179,"4.2-4.3":0.00893,"4.4":0,"4.4.3-4.4.4":0.04823},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00448,"9":0.00896,"11":0.18364,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":49.158},S:{"2.5":0},R:{_:"0"},M:{"0":0.16563},Q:{"10.4":0},O:{"0":0.03865},H:{"0":0.11499}}; 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 b76a78abb683b6..5e742b2127eec6 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:{"52":0.00771,"56":0.00771,"73":0.06166,"78":0.03083,"88":0.18885,"90":0.04239,"91":0.04239,"94":0.00385,"95":0.00385,"96":0.00385,"97":0.02698,"98":0.54727,"99":1.4491,"100":0.02312,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 92 93 101 3.5 3.6"},D:{"47":0.00771,"49":0.03854,"62":0.00385,"63":0.00771,"65":0.01156,"67":0.01156,"69":0.00385,"73":0.00771,"74":0.00385,"75":0.00385,"76":0.01156,"77":0.00771,"78":0.00771,"79":0.0501,"80":0.03083,"81":0.02312,"83":0.01927,"84":0.01542,"85":0.00771,"86":0.06166,"87":0.0501,"88":0.01156,"89":0.01927,"90":0.01542,"91":0.06552,"92":0.08093,"93":0.06937,"94":0.01542,"95":0.06552,"96":0.11177,"97":0.1426,"98":0.17728,"99":4.30877,"100":19.76717,"101":0.35071,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 64 66 68 70 71 72 102 103 104"},F:{"28":0.01156,"71":0.00385,"83":0.01156,"84":0.31217,"85":0.90569,"86":0.01156,_:"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 72 73 74 75 76 77 78 79 80 81 82 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.00385,"17":0.01927,"18":0.01542,"84":0.00385,"89":0.00771,"91":0.00385,"92":0.01156,"94":0.00385,"95":0.01156,"96":0.01927,"97":0.0501,"98":0.01542,"99":0.40467,"100":3.02924,"101":0.04239,_:"12 13 14 16 79 80 81 83 85 86 87 88 90 93"},E:{"4":0,"13":0.02698,"14":0.13874,"15":0.06552,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00771,"11.1":0.02698,"12.1":0.03854,"13.1":0.17343,"14.1":0.44706,"15.1":0.12718,"15.2-15.3":0.15416,"15.4":0.95965},G:{"8":0,"3.2":0.00233,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01049,"6.0-6.1":0,"7.0-7.1":0.02098,"8.1-8.4":0.00233,"9.0-9.2":0,"9.3":0.05362,"10.0-10.2":0.0035,"10.3":0.03964,"11.0-11.2":0.01049,"11.3-11.4":0.01749,"12.0-12.1":0.00583,"12.2-12.5":0.37187,"13.0-13.1":0.00933,"13.2":0.0035,"13.3":0.05596,"13.4-13.7":0.07111,"14.0-14.4":0.39402,"14.5-14.8":1.28699,"15.0-15.1":0.37537,"15.2-15.3":4.19902,"15.4":4.71895},P:{"4":0.14486,"5.0-5.4":0.08105,"6.2-6.4":0.03039,"7.2-7.4":0.11382,"8.2":0.13171,"9.2":0.01035,"10.1":0.66868,"11.1-11.2":0.07243,"12.0":0.02069,"13.0":0.08278,"14.0":0.11382,"15.0":0.06208,"16.0":2.64885},I:{"0":0,"3":0,"4":0.01027,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00257,"4.2-4.3":0.00771,"4.4":0,"4.4.3-4.4.4":0.0655},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11177,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":45.3289},S:{"2.5":0},R:{_:"0"},M:{"0":0.43637},Q:{"10.4":0},O:{"0":0.05531},H:{"0":0.30257}}; +module.exports={C:{"52":0.00421,"56":0.00842,"73":0.04212,"78":0.02948,"82":0.00421,"88":0.12636,"90":0.05476,"91":0.03791,"94":0.00421,"98":0.06318,"99":0.36223,"100":1.66374,"101":0.02527,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 83 84 85 86 87 89 92 93 95 96 97 102 103 3.5 3.6"},D:{"47":0.00421,"49":0.02106,"60":0.00421,"63":0.00842,"65":0.00842,"67":0.00842,"69":0.00421,"72":0.00842,"73":0.01264,"75":0.00421,"76":0.00842,"77":0.00842,"78":0.00842,"79":0.0337,"80":0.02106,"81":0.02106,"83":0.01685,"84":0.02106,"85":0.01264,"86":0.04633,"87":0.05897,"88":0.01264,"89":0.0337,"90":0.01685,"91":0.03791,"92":0.06318,"93":0.04633,"94":0.02106,"95":0.01264,"96":0.0716,"97":0.09266,"98":0.09688,"99":0.22324,"100":5.46718,"101":20.06597,"102":2.20288,"103":0.00842,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 61 62 64 66 68 70 71 74 104"},F:{"28":0.01264,"85":0.85925,"86":0.74131,"87":0.02948,_:"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:{"17":0.02527,"18":0.01264,"89":0.00842,"92":0.01264,"95":0.00842,"96":0.00842,"97":0.01685,"98":0.00842,"99":0.05054,"100":0.13478,"101":3.50438,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 90 91 93 94"},E:{"4":0,"13":0.03791,"14":0.16427,"15":0.05476,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00421,"11.1":0.02106,"12.1":0.02948,"13.1":0.19375,"14.1":0.34538,"15.1":0.08845,"15.2-15.3":0.12636,"15.4":1.42787,"15.5":0.18954},G:{"8":0,"3.2":0.0011,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00552,"6.0-6.1":0.00552,"7.0-7.1":0.02209,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04197,"10.0-10.2":0.0011,"10.3":0.03203,"11.0-11.2":0.00552,"11.3-11.4":0.01988,"12.0-12.1":0.00663,"12.2-12.5":0.338,"13.0-13.1":0.00773,"13.2":0.00552,"13.3":0.05965,"13.4-13.7":0.06296,"14.0-14.4":0.37114,"14.5-14.8":0.88476,"15.0-15.1":0.21871,"15.2-15.3":0.66164,"15.4":8.29202},P:{"4":0.1036,"5.0-5.4":0.02146,"6.2-6.4":0.0304,"7.2-7.4":0.12431,"8.2":0.22305,"9.2":0.02072,"10.1":0.29386,"11.1-11.2":0.06216,"12.0":0.0304,"13.0":0.1036,"14.0":0.09324,"15.0":0.04144,"16.0":0.922},I:{"0":0,"3":0,"4":0.00797,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00228,"4.2-4.3":0.00569,"4.4":0,"4.4.3-4.4.4":0.05352},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09266,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":43.45436},S:{"2.5":0},R:{_:"0"},M:{"0":0.39937},Q:{"10.4":0},O:{"0":0.0463},H:{"0":0.26851}}; 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 bf3fff42d2d611..7403f041e48f5f 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:{"24":0.00935,"32":0.00467,"34":0.01636,"38":0.00701,"39":0.00234,"40":0.00701,"41":0.00467,"42":0.00234,"43":0.00467,"45":0.00935,"46":0.00467,"47":0.00935,"48":0.00467,"49":0.00701,"50":0.02103,"51":0.00467,"52":0.10283,"53":0.00234,"54":0.09114,"55":0.00467,"56":0.02103,"57":0.07011,"58":0.03272,"59":0.01169,"60":0.02804,"61":0.03506,"62":0.01169,"63":0.00935,"64":0.01636,"65":0.01636,"66":0.0187,"67":0.03739,"68":0.02337,"69":0.00935,"70":0.01636,"71":0.03973,"72":0.13555,"73":0.02804,"74":0.00935,"75":0.00701,"76":0.00935,"77":0.0187,"78":0.03973,"79":0.01636,"80":0.02571,"81":0.03038,"82":0.05843,"83":0.01169,"84":0.0444,"85":0.03038,"86":0.02571,"87":0.01636,"88":0.09348,"89":0.09348,"90":0.02804,"91":0.16359,"92":0.08647,"93":0.09582,"94":0.11451,"95":0.13555,"96":0.11919,"97":0.32251,"98":1.85792,"99":4.49873,"100":0.13087,"101":0.01402,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 33 35 36 37 44 3.5 3.6"},D:{"11":0.00234,"26":0.00701,"31":0.00234,"37":0.00467,"42":0.00467,"44":0.01636,"49":0.00701,"53":0.00234,"55":0.00234,"56":0.00467,"62":0.01636,"63":0.00467,"65":0.00935,"66":0.00234,"67":0.00935,"68":0.00935,"69":0.00467,"70":0.01169,"71":0.01636,"72":0.01402,"73":0.14022,"74":0.00935,"75":0.01402,"76":0.00935,"77":0.00935,"78":0.00701,"79":0.04207,"80":0.02337,"81":0.03973,"83":0.01169,"84":0.01169,"85":0.0187,"86":0.06544,"87":0.03973,"88":0.13321,"89":0.04908,"90":0.10283,"91":0.03506,"92":0.03506,"93":0.0187,"94":0.04207,"95":0.06076,"96":0.21968,"97":0.22435,"98":0.19865,"99":1.11942,"100":4.22062,"101":0.05843,"102":0.00701,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 33 34 35 36 38 39 40 41 43 45 46 47 48 50 51 52 54 57 58 59 60 61 64 103 104"},F:{"42":0.00467,"53":0.00234,"64":0.00234,"71":0.00701,"77":0.00467,"79":0.01402,"80":0.00935,"81":0.00467,"82":0.01402,"83":0.00701,"84":0.10984,"85":0.46273,"86":0.03272,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 72 73 74 75 76 78 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.00701,"13":0.01169,"14":0.00935,"15":0.01169,"16":0.00935,"17":0.01636,"18":0.08881,"79":0.00234,"84":0.03739,"85":0.00701,"89":0.0187,"90":0.04207,"91":0.00701,"92":0.02571,"93":0.00467,"95":0.00701,"96":0.02103,"97":0.02571,"98":0.02337,"99":0.20566,"100":0.71746,"101":0.00701,_:"80 81 83 86 87 88 94"},E:{"4":0,"9":0.00234,"13":0.00467,"14":0.03038,_:"0 5 6 7 8 10 11 12 15 3.1 3.2 5.1 6.1 9.1 10.1","7.1":0.00234,"11.1":0.00234,"12.1":0.00701,"13.1":0.01169,"14.1":0.00935,"15.1":0.0187,"15.2-15.3":0.00701,"15.4":0.03506},G:{"8":0.01297,"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.0141,"8.1-8.4":0.03892,"9.0-9.2":0.00169,"9.3":0.02876,"10.0-10.2":0.01579,"10.3":0.28538,"11.0-11.2":0.09306,"11.3-11.4":0.01184,"12.0-12.1":0.0203,"12.2-12.5":0.79693,"13.0-13.1":0.03892,"13.2":0.02538,"13.3":0.1331,"13.4-13.7":0.32543,"14.0-14.4":0.80426,"14.5-14.8":0.59502,"15.0-15.1":0.5076,"15.2-15.3":1.36205,"15.4":0.52847},P:{"4":0.32792,"5.0-5.4":0.05124,"6.2-6.4":0.03074,"7.2-7.4":0.26643,"8.2":0.02049,"9.2":0.10247,"10.1":0.04099,"11.1-11.2":0.11272,"12.0":0.04099,"13.0":0.09223,"14.0":0.20495,"15.0":0.11272,"16.0":1.20919},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00599,"4.2-4.3":0.03536,"4.4":0,"4.4.3-4.4.4":0.21153},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00234,"9":0.00234,"11":0.0444,_:"6 7 10 5.5"},J:{"7":0,"10":0.00766},N:{"10":0.06186,_:"11"},L:{"0":70.8451},S:{"2.5":0},R:{_:"0"},M:{"0":0.68201},Q:{"10.4":0},O:{"0":0.1456},H:{"0":1.09548}}; +module.exports={C:{"24":0.01167,"28":0.00467,"31":0.00233,"32":0.00233,"34":0.01866,"35":0.00467,"38":0.00467,"39":0.00233,"40":0.01167,"41":0.00467,"42":0.00233,"43":0.00933,"45":0.00933,"46":0.00233,"47":0.01167,"48":0.06066,"49":0.007,"50":0.01866,"51":0.00467,"52":0.16798,"53":0.00467,"54":0.16564,"56":0.021,"57":0.07466,"58":0.00933,"59":0.06299,"60":0.03266,"61":0.021,"62":0.014,"63":0.007,"64":0.03266,"65":0.01866,"66":0.021,"67":0.03266,"68":0.05366,"69":0.007,"70":0.01633,"71":0.05133,"72":0.10032,"73":0.028,"74":0.00933,"75":0.00933,"76":0.00467,"77":0.028,"78":0.05599,"79":0.03033,"80":0.01167,"81":0.035,"82":0.03733,"83":0.014,"84":0.03733,"85":0.01866,"86":0.02566,"87":0.01167,"88":0.05366,"89":0.07232,"90":0.035,"91":0.18197,"92":0.08166,"93":0.09099,"94":0.08399,"95":0.11898,"96":0.07699,"97":0.14931,"98":0.27063,"99":1.65876,"100":4.4047,"101":0.10965,"102":0.00933,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 29 30 33 36 37 44 55 103 3.5 3.6"},D:{"21":0.00467,"25":0.00467,"31":0.00233,"37":0.00233,"49":0.007,"51":0.00233,"53":0.007,"54":0.00233,"56":0.00233,"60":0.00233,"61":0.007,"62":0.00933,"63":0.007,"66":0.00233,"67":0.007,"68":0.007,"69":0.007,"70":0.035,"71":0.014,"72":0.014,"73":0.00233,"74":0.00933,"75":0.01866,"76":0.014,"77":0.007,"78":0.00933,"79":0.03733,"80":0.04899,"81":0.035,"83":0.01633,"84":0.007,"85":0.01866,"86":0.05133,"87":0.03033,"88":0.11898,"89":0.04199,"90":0.07232,"91":0.03033,"92":0.035,"93":0.014,"94":0.05833,"95":0.06532,"96":0.14698,"97":0.16331,"98":0.11898,"99":0.29163,"100":1.41846,"101":3.74913,"102":0.44327,"103":0.00233,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 26 27 28 29 30 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 50 52 55 57 58 59 64 65 104"},F:{"26":0.00233,"42":0.00233,"48":0.01167,"53":0.01167,"64":0.00233,"76":0.00233,"77":0.00233,"78":0.00467,"79":0.02566,"80":0.00467,"82":0.00933,"83":0.00467,"84":0.01633,"85":0.28929,"86":0.27996,"87":0.03733,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 49 50 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00933,"13":0.00933,"14":0.01167,"15":0.007,"16":0.014,"17":0.01633,"18":0.07232,"79":0.00233,"84":0.02333,"85":0.014,"89":0.01866,"90":0.03033,"91":0.00467,"92":0.035,"93":0.00233,"95":0.00467,"96":0.01167,"97":0.01633,"98":0.02566,"99":0.04433,"100":0.15398,"101":0.86088,_:"80 81 83 86 87 88 94"},E:{"4":0,"9":0.00467,"13":0.00467,"14":0.05599,"15":0.00233,_:"0 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00233,"11.1":0.00467,"12.1":0.00467,"13.1":0.014,"14.1":0.01633,"15.1":0.01167,"15.2-15.3":0.007,"15.4":0.035,"15.5":0.00933},G:{"8":0.00169,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00056,"6.0-6.1":0,"7.0-7.1":0.01806,"8.1-8.4":0.05136,"9.0-9.2":0.00677,"9.3":0.02201,"10.0-10.2":0.00226,"10.3":0.2252,"11.0-11.2":0.09764,"11.3-11.4":0.01185,"12.0-12.1":0.04402,"12.2-12.5":0.80484,"13.0-13.1":0.02991,"13.2":0.03161,"13.3":0.13771,"13.4-13.7":0.30986,"14.0-14.4":0.81048,"14.5-14.8":0.53223,"15.0-15.1":0.55086,"15.2-15.3":1.02101,"15.4":0.93296},P:{"4":0.25658,"5.0-5.4":0.05132,"6.2-6.4":0.02053,"7.2-7.4":0.27711,"8.2":0.22305,"9.2":0.06158,"10.1":0.04105,"11.1-11.2":0.10263,"12.0":0.02053,"13.0":0.1129,"14.0":0.21553,"15.0":0.10263,"16.0":0.91344},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0033,"4.2-4.3":0.02637,"4.4":0,"4.4.3-4.4.4":0.14668},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00233,"11":0.05133,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":70.75387},S:{"2.5":0},R:{_:"0"},M:{"0":0.62869},Q:{"10.4":0.00767},O:{"0":0.13801},H:{"0":1.14686}}; 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 9078fe4db84fa9..6992ad90a5c184 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:{"52":0.03346,"61":0.02509,"91":0.05018,"94":0.00836,"96":0.00418,"97":0.00836,"98":0.38474,"99":0.97022,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 100 101 3.5 3.6"},D:{"29":0.00418,"43":0.04182,"49":0.04182,"63":0.01673,"65":0.01673,"68":0.00418,"70":0.00836,"71":0.00418,"73":0.10873,"74":0.00418,"78":0.02509,"79":0.02927,"80":0.01673,"81":0.04182,"83":0.01673,"84":0.01673,"85":0.03346,"86":0.12128,"87":0.06691,"88":0.01255,"89":0.05437,"90":0.02509,"91":0.27601,"92":0.02509,"93":0.01673,"94":0.04182,"95":0.02091,"96":0.05437,"97":0.12128,"98":0.28438,"99":4.93476,"100":23.75794,"101":0.38893,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 69 72 75 76 77 102 103 104"},F:{"84":0.51439,"85":1.79826,"86":0.00418,_:"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 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.00836,"15":0.00836,"17":0.00836,"18":0.02927,"84":0.00836,"90":0.00836,"92":0.02927,"93":0.00418,"95":0.00418,"96":0.10873,"97":0.01255,"98":0.01673,"99":0.49348,"100":2.64721,"101":0.10037,_:"13 14 16 79 80 81 83 85 86 87 88 89 91 94"},E:{"4":0,"8":0.00836,"14":0.08364,"15":0.01255,_:"0 5 6 7 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01673,"13.1":0.07528,"14.1":0.05855,"15.1":0.04182,"15.2-15.3":0.01673,"15.4":0.27601},G:{"8":0.00276,"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.00919,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02207,"10.0-10.2":0.00276,"10.3":0.0377,"11.0-11.2":0.15722,"11.3-11.4":0.02391,"12.0-12.1":0.03402,"12.2-12.5":1.23755,"13.0-13.1":0.01103,"13.2":0.00827,"13.3":0.06804,"13.4-13.7":0.56361,"14.0-14.4":1.1217,"14.5-14.8":1.08033,"15.0-15.1":0.3834,"15.2-15.3":2.63048,"15.4":1.7984},P:{"4":0.13496,"5.0-5.4":0.01038,"6.2-6.4":0.01042,"7.2-7.4":0.26992,"8.2":0.01042,"9.2":0.02076,"10.1":0.03016,"11.1-11.2":0.2803,"12.0":0.33221,"13.0":0.06229,"14.0":0.12458,"15.0":0.13496,"16.0":1.42227},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00057,"4.2-4.3":0.00123,"4.4":0,"4.4.3-4.4.4":0.03311},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05437,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":47.46309},S:{"2.5":0},R:{_:"0"},M:{"0":0.27926},Q:{"10.4":0},O:{"0":0.14545},H:{"0":0.24236}}; +module.exports={C:{"52":0.07876,"61":0.02487,"78":0.00829,"91":0.02073,"97":0.02073,"99":0.2943,"100":0.77512,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 98 101 102 103 3.5 3.6"},D:{"40":0.01658,"42":0.01244,"43":0.02902,"49":0.02902,"50":0.00415,"55":0.00415,"62":0.01658,"67":0.00829,"69":0.00829,"75":0.00829,"76":0.00829,"77":0.00415,"78":0.03316,"79":0.04974,"80":0.00829,"81":0.02487,"83":0.01244,"84":0.00415,"85":0.01244,"86":0.01244,"87":0.07047,"88":0.02487,"89":0.06218,"90":0.03731,"91":0.10777,"92":0.01244,"93":0.00829,"94":0.03316,"95":0.01244,"96":0.12435,"97":0.06632,"98":0.06218,"99":0.24041,"100":4.86209,"101":21.37577,"102":1.84453,"103":0.00415,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 44 45 46 47 48 51 52 53 54 56 57 58 59 60 61 63 64 65 66 68 70 71 72 73 74 104"},F:{"36":0.00829,"85":0.75439,"86":0.52642,"87":0.34818,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02073,"13":0.00829,"14":0.00415,"15":0.01658,"16":0.02073,"18":0.26528,"84":0.02073,"85":0.00829,"89":0.00829,"92":0.01658,"95":0.00829,"96":0.14922,"97":0.00829,"98":0.06218,"99":0.07461,"100":0.26528,"101":4.11599,_:"17 79 80 81 83 86 87 88 90 91 93 94"},E:{"4":0,"14":0.0829,"15":0.01244,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04974,"11.1":0.02073,"12.1":0.0456,"13.1":0.14922,"14.1":0.10363,"15.1":0.02073,"15.2-15.3":0.00415,"15.4":0.61346,"15.5":0.0456},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,"7.0-7.1":0.00924,"8.1-8.4":0,"9.0-9.2":0.00084,"9.3":0.03862,"10.0-10.2":0.00336,"10.3":0.13265,"11.0-11.2":0.13937,"11.3-11.4":0.02015,"12.0-12.1":0.10243,"12.2-12.5":0.83367,"13.0-13.1":0.02267,"13.2":0.01007,"13.3":0.07052,"13.4-13.7":0.4819,"14.0-14.4":0.87145,"14.5-14.8":0.96045,"15.0-15.1":0.34422,"15.2-15.3":0.80177,"15.4":3.54122},P:{"4":0.23817,"5.0-5.4":0.01036,"6.2-6.4":0.03029,"7.2-7.4":0.23817,"8.2":0.02288,"9.2":0.03107,"10.1":0.01087,"11.1-11.2":0.16568,"12.0":0.01087,"13.0":0.07249,"14.0":0.25888,"15.0":0.08284,"16.0":0.74558},I:{"0":0,"3":0,"4":0.00029,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00221,"4.2-4.3":0.00192,"4.4":0,"4.4.3-4.4.4":0.03656},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04974,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":48.85057},S:{"2.5":0},R:{_:"0"},M:{"0":0.08196},Q:{"10.4":0},O:{"0":0.11123},H:{"0":0.49325}}; 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 12548935302d60..34802be4a48b67 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:{"97":12.28318,"99":36.83988,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 100 101 3.5 3.6"},D:{"100":31.58118,"101":14.0393,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 102 103 104"},F:{"85":1.75612,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1 15.2-15.3 15.4"},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.755,"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},P:{"4":0.14506,"5.0-5.4":1.20304,"6.2-6.4":0.07077,"7.2-7.4":0.06217,"8.2":0.01047,"9.2":0.02072,"10.1":0.02022,"11.1-11.2":0.11398,"12.0":0.02072,"13.0":0.07253,"14.0":0.28005,"15.0":0.01077,"16.0":0.37698},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 11"},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":1.755},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"97":3.9984,"99":3.9984,"100":5.9976,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 101 102 103 3.5 3.6"},D:{"101":69.9972,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1 15.2-15.3 15.4 15.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":8},P:{"4":0.09427,"5.0-5.4":0.06083,"6.2-6.4":0.05069,"7.2-7.4":0.05237,"8.2":0.22305,"9.2":0.01047,"10.1":0.02077,"11.1-11.2":0.09427,"12.0":0.01047,"13.0":0.06285,"14.0":0.20816,"15.0":0.05237,"16.0":0.18625},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 11"},L:{"0":4},S:{"2.5":0},R:{_:"0"},M:{"0":4},Q:{"10.4":0},O:{"0":0},H:{"0":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 9c5e2f00f3db6e..024f8987788912 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js @@ -1 +1 @@ -module.exports={C:{"52":0.28954,"60":0.00877,"78":0.03071,"79":0.00439,"80":0.01316,"81":0.02194,"83":0.00877,"88":0.03071,"89":0.00439,"90":0.00877,"91":0.02632,"94":0.00877,"95":0.01316,"96":0.00439,"97":0.01316,"98":0.33341,"99":1.12307,"100":0.00877,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 82 84 85 86 87 92 93 101 3.5 3.6"},D:{"38":0.02194,"42":1.57493,"47":0.00877,"49":0.04387,"52":0.00877,"53":0.01316,"57":0.01755,"63":0.00439,"65":0.01316,"67":0.00439,"69":0.01316,"70":1.84254,"71":0.01316,"73":0.00877,"74":0.00439,"75":0.00439,"76":0.00439,"77":0.00877,"78":0.02194,"79":0.17548,"80":0.00877,"81":0.01316,"83":0.00877,"84":0.01755,"85":0.01316,"86":0.02194,"87":0.14477,"88":0.01316,"89":0.03948,"90":0.00877,"91":0.02632,"92":0.0351,"93":0.02632,"94":0.01755,"95":0.02632,"96":0.07897,"97":0.12284,"98":0.2369,"99":5.54078,"100":21.30766,"101":0.30709,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 54 55 56 58 59 60 61 62 64 66 68 72 102 103 104"},F:{"28":0.01755,"40":0.00877,"70":0.00877,"84":0.19742,"85":0.75895,"86":0.03071,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00439,"18":0.02194,"92":0.00877,"97":0.01755,"98":0.02632,"99":0.54838,"100":3.92637,"101":0.0351,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"13":0.03948,"14":0.12722,"15":0.07897,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00877,"10.1":0.00439,"11.1":0.00877,"12.1":0.03071,"13.1":0.71508,"14.1":0.41238,"15.1":0.18425,"15.2-15.3":0.12722,"15.4":0.63173},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00217,"6.0-6.1":0.00434,"7.0-7.1":0.01086,"8.1-8.4":0,"9.0-9.2":0.00977,"9.3":0.05864,"10.0-10.2":0.00326,"10.3":0.0847,"11.0-11.2":0.04561,"11.3-11.4":0.01629,"12.0-12.1":0.0228,"12.2-12.5":0.41697,"13.0-13.1":0.01412,"13.2":0.0076,"13.3":0.04778,"13.4-13.7":0.14659,"14.0-14.4":0.36811,"14.5-14.8":1.50717,"15.0-15.1":0.52555,"15.2-15.3":3.99269,"15.4":3.57247},P:{"4":0.18643,"5.0-5.4":0.05124,"6.2-6.4":0.03074,"7.2-7.4":0.02071,"8.2":0.02049,"9.2":0.01036,"10.1":0.04099,"11.1-11.2":0.05179,"12.0":0.03107,"13.0":0.05179,"14.0":0.09321,"15.0":0.0725,"16.0":3.22107},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00145,"4.2-4.3":0.00435,"4.4":0,"4.4.3-4.4.4":0.03912},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01316,"11":0.24129,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":33.54449},S:{"2.5":0},R:{_:"0"},M:{"0":0.22456},Q:{"10.4":0},O:{"0":0.69614},H:{"0":0.39331}}; +module.exports={C:{"52":0.25713,"60":0.00451,"78":0.0406,"79":0.00451,"81":0.00902,"84":0.00902,"88":0.02256,"89":0.00451,"91":0.03158,"94":0.00451,"95":0.01353,"98":0.00902,"99":0.30675,"100":1.38939,"101":0.00902,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 82 83 85 86 87 90 92 93 96 97 102 103 3.5 3.6"},D:{"38":0.01353,"42":1.76831,"49":0.03609,"52":0.00902,"53":0.00902,"64":0.00902,"67":0.00451,"69":0.00902,"70":1.79087,"71":0.32028,"73":0.00451,"74":0.00902,"77":0.00902,"79":0.1218,"81":0.00902,"83":0.02256,"84":0.03158,"85":0.00902,"86":0.05864,"87":0.06315,"88":0.00902,"89":0.04962,"90":0.01804,"91":0.02256,"92":0.03158,"93":0.01804,"94":0.01353,"95":0.04511,"96":0.05864,"97":0.04511,"98":0.14435,"99":0.19848,"100":5.24178,"101":20.31754,"102":1.85853,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 54 55 56 57 58 59 60 61 62 63 65 66 68 72 75 76 78 80 103 104"},F:{"28":0.01804,"40":0.00902,"46":0.00451,"82":0.00451,"85":0.52779,"86":0.73529,"87":0.03158,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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.01353,"16":0.01353,"18":0.03158,"90":0.00451,"93":0.00902,"97":0.00902,"98":0.02256,"99":0.02256,"100":0.38344,"101":4.52453,_:"12 13 14 17 79 80 81 83 84 85 86 87 88 89 91 92 94 95 96"},E:{"4":0,"13":0.01804,"14":0.16691,"15":0.06315,_:"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.00902,"12.1":0.02256,"13.1":0.5729,"14.1":0.35186,"15.1":0.16691,"15.2-15.3":0.08571,"15.4":1.08715,"15.5":0.11729},G:{"8":0.00112,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00223,"6.0-6.1":0.00335,"7.0-7.1":0.00558,"8.1-8.4":0,"9.0-9.2":0.00446,"9.3":0.05579,"10.0-10.2":0.00223,"10.3":0.08256,"11.0-11.2":0.0145,"11.3-11.4":0.01227,"12.0-12.1":0.02231,"12.2-12.5":0.4619,"13.0-13.1":0.01227,"13.2":0.00558,"13.3":0.04351,"13.4-13.7":0.12942,"14.0-14.4":0.35368,"14.5-14.8":1.32323,"15.0-15.1":0.37823,"15.2-15.3":0.87806,"15.4":7.35587},P:{"4":0.18554,"5.0-5.4":0.05132,"6.2-6.4":0.02053,"7.2-7.4":0.05154,"8.2":0.22305,"9.2":0.01031,"10.1":0.04105,"11.1-11.2":0.06185,"12.0":0.01031,"13.0":0.06185,"14.0":0.07216,"15.0":0.05154,"16.0":1.1751},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.00319,"4.4":0,"4.4.3-4.4.4":0.04462},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00902,"11":0.23908,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":37.28002},S:{"2.5":0},R:{_:"0"},M:{"0":0.17016},Q:{"10.4":0},O:{"0":0.51048},H:{"0":0.41573}}; 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 a624f3f7e952e0..8eb6938e4116d9 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:{"50":0.00478,"52":0.15293,"56":0.01912,"65":0.00956,"66":0.00956,"68":0.01434,"78":0.05257,"84":0.01434,"86":0.00956,"87":0.00478,"88":0.02867,"89":0.01434,"90":0.00478,"91":0.21983,"92":0.00956,"93":0.00956,"94":0.2055,"95":0.01912,"96":0.03823,"97":0.05257,"98":1.48627,"99":4.20552,"100":0.01434,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 57 58 59 60 61 62 63 64 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 101 3.5 3.6"},D:{"22":0.00956,"38":0.00956,"41":0.00478,"42":0.00478,"49":0.04779,"53":0.00956,"60":0.00956,"65":0.00478,"67":0.00956,"68":0.00956,"69":0.00478,"72":0.00956,"73":0.00956,"74":0.00956,"76":0.00478,"78":0.01434,"79":0.0908,"80":0.03345,"81":0.04301,"83":0.03345,"84":0.02867,"85":0.02867,"86":0.03823,"87":0.07646,"88":0.01434,"89":0.08602,"90":0.08124,"91":0.05735,"92":0.03823,"93":0.03823,"94":0.0239,"95":0.03823,"96":0.16249,"97":0.16727,"98":0.32497,"99":4.65475,"100":21.06583,"101":0.26285,"102":0.00956,_:"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 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 61 62 63 64 66 70 71 75 77 103 104"},F:{"46":0.00956,"79":0.00956,"80":0.00478,"82":0.00956,"83":0.01434,"84":0.43967,"85":1.86381,"86":0.04779,"87":0.00478,_:"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 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01434},B:{"15":0.00956,"16":0.00956,"17":0.00956,"18":0.0239,"85":0.00478,"90":0.00478,"91":0.00956,"92":0.01434,"94":0.02867,"95":0.00478,"96":0.01912,"97":0.03345,"98":0.06691,"99":0.82199,"100":5.33814,"101":0.06213,_:"12 13 14 79 80 81 83 84 86 87 88 89 93"},E:{"4":0,"13":0.02867,"14":0.13859,"15":0.05257,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00956,"11.1":0.00956,"12.1":0.02867,"13.1":0.15771,"14.1":0.3632,"15.1":0.11948,"15.2-15.3":0.14337,"15.4":0.78376},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00153,"6.0-6.1":0,"7.0-7.1":0.0023,"8.1-8.4":0.00307,"9.0-9.2":0.00153,"9.3":0.03755,"10.0-10.2":0.00153,"10.3":0.04828,"11.0-11.2":0.01073,"11.3-11.4":0.00996,"12.0-12.1":0.00996,"12.2-12.5":0.22606,"13.0-13.1":0.0046,"13.2":0.0069,"13.3":0.01686,"13.4-13.7":0.07357,"14.0-14.4":0.17625,"14.5-14.8":0.74715,"15.0-15.1":0.30422,"15.2-15.3":2.83303,"15.4":3.14414},P:{"4":0.10513,"5.0-5.4":0.05124,"6.2-6.4":0.03074,"7.2-7.4":0.02071,"8.2":0.02049,"9.2":0.01036,"10.1":0.04099,"11.1-11.2":0.03154,"12.0":0.03107,"13.0":0.03154,"14.0":0.05257,"15.0":0.04205,"16.0":2.05007},I:{"0":0,"3":0,"4":0.00531,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00354,"4.2-4.3":0.01416,"4.4":0,"4.4.3-4.4.4":0.08141},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00956,"9":0.00956,"10":0.07646,"11":0.51613,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":29.33583},S:{"2.5":0},R:{_:"0"},M:{"0":0.36547},Q:{"10.4":0},O:{"0":0.1253},H:{"0":0.45969}}; +module.exports={C:{"50":0.00511,"52":0.16349,"56":0.02044,"65":0.00511,"66":0.01022,"68":0.01533,"76":0.00511,"78":0.04087,"83":0.01022,"84":0.01022,"86":0.01022,"88":0.03065,"89":0.01022,"90":0.00511,"91":0.21969,"92":0.01022,"93":0.01022,"94":0.1686,"95":0.01533,"96":0.02555,"97":0.03065,"98":0.04598,"99":1.1342,"100":4.64919,"101":0.01533,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 57 58 59 60 61 62 63 64 67 69 70 71 72 73 74 75 77 79 80 81 82 85 87 102 103 3.5 3.6"},D:{"38":0.01022,"41":0.01022,"42":0.00511,"49":0.03576,"53":0.00511,"60":0.01022,"63":0.00511,"65":0.00511,"67":0.01533,"68":0.00511,"69":0.00511,"70":0.00511,"72":0.01022,"73":0.00511,"74":0.01533,"76":0.00511,"78":0.01533,"79":0.07664,"80":0.02555,"81":0.04087,"83":0.01533,"84":0.03065,"85":0.03065,"86":0.04087,"87":0.04598,"88":0.01533,"89":0.08174,"90":0.07664,"91":0.05109,"92":0.03065,"93":0.01533,"94":0.02044,"95":0.03065,"96":0.09196,"97":0.06642,"98":0.10729,"99":0.41894,"100":7.06575,"101":20.02728,"102":1.73706,"103":0.00511,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 61 62 64 66 71 75 77 104"},F:{"46":0.00511,"69":0.00511,"84":0.01022,"85":1.57868,"86":0.92473,"87":0.13283,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02044},B:{"15":0.00511,"16":0.01022,"17":0.01022,"18":0.02044,"89":0.00511,"91":0.02044,"92":0.01022,"94":0.03065,"96":0.01533,"97":0.01533,"98":0.02555,"99":0.07153,"100":0.34741,"101":6.25342,_:"12 13 14 79 80 81 83 84 85 86 87 88 90 93 95"},E:{"4":0,"12":0.00511,"13":0.01533,"14":0.1124,"15":0.04598,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00511,"11.1":0.00511,"12.1":0.02555,"13.1":0.14305,"14.1":0.29632,"15.1":0.09707,"15.2-15.3":0.09196,"15.4":1.17507,"15.5":0.16349},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00094,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00094,"9.0-9.2":0.00094,"9.3":0.03668,"10.0-10.2":0.00188,"10.3":0.04797,"11.0-11.2":0.00846,"11.3-11.4":0.01035,"12.0-12.1":0.00941,"12.2-12.5":0.22761,"13.0-13.1":0.00564,"13.2":0.00846,"13.3":0.02163,"13.4-13.7":0.06584,"14.0-14.4":0.17588,"14.5-14.8":0.69975,"15.0-15.1":0.2229,"15.2-15.3":0.66871,"15.4":7.18652},P:{"4":0.0944,"5.0-5.4":0.05132,"6.2-6.4":0.02053,"7.2-7.4":0.05154,"8.2":0.22305,"9.2":0.01031,"10.1":0.04105,"11.1-11.2":0.03147,"12.0":0.01031,"13.0":0.04196,"14.0":0.06293,"15.0":0.04196,"16.0":0.83913},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00359,"4.2-4.3":0.01435,"4.4":0,"4.4.3-4.4.4":0.08967},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01533,"9":0.01022,"10":0.03065,"11":0.50068,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":34.07823},S:{"2.5":0},R:{_:"0"},M:{"0":0.44997},Q:{"10.4":0},O:{"0":0.1614},H:{"0":0.52788}}; 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 40f44867e19d4f..3cad6458a4dbd7 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:{"40":0.00479,"47":0.00479,"48":0.00958,"50":0.00958,"51":0.04791,"52":0.2156,"53":0.03833,"54":0.02396,"55":0.03833,"56":0.03354,"57":0.02875,"58":0.00958,"59":0.03354,"60":0.00958,"66":0.01437,"68":0.01916,"69":0.00958,"70":0.00479,"72":0.01437,"77":0.17248,"78":0.13415,"79":0.14852,"80":0.02396,"81":0.02875,"82":0.01916,"83":0.02396,"84":0.01916,"85":0.00958,"86":0.02396,"87":0.01437,"88":0.03354,"89":0.02396,"90":0.01916,"91":0.32579,"92":0.01916,"93":0.01916,"94":0.15331,"95":0.05749,"96":0.1581,"97":0.11019,"98":2.54402,"99":6.93737,"100":0.01916,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 49 61 62 63 64 65 67 71 73 74 75 76 101 3.5 3.6"},D:{"33":0.00958,"35":0.02875,"38":0.00958,"39":0.00958,"40":0.00958,"41":0.01437,"42":0.00958,"43":0.00958,"44":0.00958,"45":0.01437,"46":0.01437,"47":0.01916,"48":0.01437,"49":0.07666,"50":0.00958,"51":0.06228,"52":0.04312,"53":0.01437,"54":0.00958,"55":0.01437,"56":0.01437,"57":0.01437,"58":0.01916,"59":0.01916,"60":0.02875,"61":0.02396,"62":0.01437,"63":0.01916,"64":0.01437,"65":0.20601,"66":0.11978,"67":0.01916,"68":0.00958,"69":0.08624,"70":0.03833,"71":0.02396,"72":0.0527,"73":0.00958,"74":0.01916,"75":1.76788,"76":0.01916,"77":0.01437,"78":0.03354,"79":0.13894,"80":0.70907,"81":0.11498,"83":0.09103,"84":0.19164,"85":0.17727,"86":0.19643,"87":0.17248,"88":0.03354,"89":0.06228,"90":0.04791,"91":0.04312,"92":0.04312,"93":0.11019,"94":0.25392,"95":0.11019,"96":0.12457,"97":0.09582,"98":0.25871,"99":2.57277,"100":11.56547,"101":0.18206,"102":0.00479,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 36 37 103 104"},F:{"36":0.00958,"46":0.00958,"68":0.00958,"69":0.00958,"70":0.00958,"71":0.01437,"72":0.00479,"77":0.01437,"78":0.00958,"79":0.01437,"80":0.00958,"81":0.00958,"82":0.01437,"83":0.01916,"84":0.36891,"85":1.50917,"86":0.02875,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 74 75 76 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00479},B:{"14":0.00958,"15":0.00958,"16":0.00479,"17":0.01437,"18":0.03833,"83":0.00479,"84":0.00958,"85":0.01437,"86":0.01437,"87":0.00958,"88":0.00479,"89":0.00958,"90":0.00479,"91":0.00958,"92":0.01437,"93":0.00479,"94":0.01916,"95":0.00958,"96":0.02875,"97":0.06707,"98":0.07187,"99":0.85759,"100":5.44258,"101":0.08624,_:"12 13 79 80 81"},E:{"4":0,"7":0.00479,"12":0.00479,"13":0.04312,"14":0.22039,"15":0.10061,_:"0 5 6 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00479,"9.1":0.02396,"10.1":0.00958,"11.1":0.0527,"12.1":0.06228,"13.1":0.32579,"14.1":0.67074,"15.1":0.20601,"15.2-15.3":0.23476,"15.4":1.71039},G:{"8":0.00279,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00419,"6.0-6.1":0.0014,"7.0-7.1":0.00419,"8.1-8.4":0.0014,"9.0-9.2":0.03489,"9.3":0.10049,"10.0-10.2":0.01954,"10.3":0.10607,"11.0-11.2":0.02233,"11.3-11.4":0.10049,"12.0-12.1":0.01675,"12.2-12.5":0.48569,"13.0-13.1":0.01535,"13.2":0.00698,"13.3":0.04187,"13.4-13.7":0.17865,"14.0-14.4":0.38381,"14.5-14.8":1.29378,"15.0-15.1":0.56245,"15.2-15.3":4.8011,"15.4":5.7655},P:{"4":0.15806,"5.0-5.4":0.01054,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.05269,"12.0":0.03161,"13.0":0.10538,"14.0":0.0843,"15.0":0.0843,"16.0":4.98425},I:{"0":0,"3":0,"4":0.00306,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00306,"4.2-4.3":0.00689,"4.4":0,"4.4.3-4.4.4":0.03907},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02417,"9":0.03384,"10":0.00967,"11":0.47371,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":27.29638},S:{"2.5":0},R:{_:"0"},M:{"0":1.10952},Q:{"10.4":0},O:{"0":0.1719},H:{"0":0.60165}}; +module.exports={C:{"48":0.00948,"50":0.00948,"51":0.02369,"52":0.16583,"53":0.02843,"54":0.01421,"55":0.02369,"56":0.02843,"57":0.01895,"58":0.00948,"59":0.03317,"60":0.00948,"66":0.00948,"68":0.01895,"70":0.00474,"71":0.00474,"72":0.00948,"77":0.13266,"78":0.11845,"79":0.12793,"80":0.01895,"81":0.02843,"82":0.01895,"83":0.01421,"84":0.01421,"85":0.00948,"86":0.0379,"87":0.02369,"88":0.02369,"89":0.01895,"90":0.00948,"91":0.32692,"92":0.01421,"93":0.01421,"94":0.08055,"95":0.03317,"96":0.08055,"97":0.05686,"98":0.1374,"99":1.49247,"100":7.23019,"101":0.01895,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 67 69 73 74 75 76 102 103 3.5 3.6"},D:{"35":0.01421,"38":0.00474,"39":0.00474,"40":0.00474,"41":0.01421,"42":0.00948,"43":0.00948,"44":0.00948,"45":0.00948,"46":0.00948,"47":0.01421,"48":0.00948,"49":0.04738,"50":0.00474,"51":0.05212,"52":0.0379,"53":0.00948,"54":0.00474,"55":0.00948,"56":0.00948,"57":0.00948,"58":0.01421,"59":0.01421,"60":0.01895,"61":0.02843,"62":0.01895,"63":0.03317,"64":0.00948,"65":0.14214,"66":0.13266,"67":0.01421,"68":0.01421,"69":0.06159,"70":0.05212,"71":0.01895,"72":0.03317,"73":0.00474,"74":0.00948,"75":1.70094,"76":0.01895,"77":0.00948,"78":0.02843,"79":0.07581,"80":0.04264,"81":0.07107,"83":0.10424,"84":0.18478,"85":0.19426,"86":0.20373,"87":0.17057,"88":0.02843,"89":0.08055,"90":0.03317,"91":0.0379,"92":0.05212,"93":0.02843,"94":0.0379,"95":0.02843,"96":0.08528,"97":0.06159,"98":0.10897,"99":0.26059,"100":2.85701,"101":11.72181,"102":1.05184,"103":0.00474,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 104"},F:{"36":0.00474,"46":0.00474,"68":0.00948,"69":0.01421,"70":0.00474,"71":0.00948,"72":0.00948,"82":0.00948,"83":0.00474,"84":0.01421,"85":1.29347,"86":1.54933,"87":0.05212,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 74 75 76 77 78 79 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00948,"15":0.00474,"17":0.01421,"18":0.03317,"83":0.00474,"84":0.01421,"85":0.01895,"86":0.01421,"87":0.00948,"89":0.02843,"90":0.00474,"91":0.00948,"92":0.01421,"93":0.00948,"94":0.00948,"95":0.00948,"96":0.02369,"97":0.02843,"98":0.02843,"99":0.09476,"100":0.33166,"101":5.79931,_:"12 13 16 79 80 81 88"},E:{"4":0,"7":0.00474,"12":0.00474,"13":0.03317,"14":0.20847,"15":0.08055,_:"0 5 6 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01895,"10.1":0.00948,"11.1":0.05686,"12.1":0.05212,"13.1":0.27954,"14.1":0.5733,"15.1":0.16583,"15.2-15.3":0.17531,"15.4":2.86175,"15.5":0.35535},G:{"8":0.00339,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00339,"6.0-6.1":0.00508,"7.0-7.1":0.00508,"8.1-8.4":0.00508,"9.0-9.2":0.02712,"9.3":0.08135,"10.0-10.2":0.01525,"10.3":0.08643,"11.0-11.2":0.03559,"11.3-11.4":0.0949,"12.0-12.1":0.01695,"12.2-12.5":0.50163,"13.0-13.1":0.01695,"13.2":0.00678,"13.3":0.04915,"13.4-13.7":0.16778,"14.0-14.4":0.51011,"14.5-14.8":1.46083,"15.0-15.1":0.43554,"15.2-15.3":1.17782,"15.4":12.23745},P:{"4":0.11465,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.04169,"12.0":0.02084,"13.0":0.0938,"14.0":0.08338,"15.0":1.3549,"16.0":1.57377},I:{"0":0,"3":0,"4":0.0007,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0021,"4.2-4.3":0.00561,"4.4":0,"4.4.3-4.4.4":0.03368},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01938,"9":0.02907,"10":0.00969,"11":0.37302,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":26.98496},S:{"2.5":0},R:{_:"0"},M:{"0":1.02083},Q:{"10.4":0},O:{"0":0.16312},H:{"0":0.55795}}; 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 3116143442b8bc..513950d8cf5b29 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:{"29":0.03465,"34":0.008,"43":0.00533,"52":0.00533,"60":0.00267,"72":0.01333,"75":0.008,"78":0.02932,"88":0.02132,"91":0.01066,"96":0.01066,"97":0.01599,"98":0.56232,"99":1.9268,"100":0.03198,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 101 3.5 3.6"},D:{"39":0.01599,"46":0.00267,"49":0.07196,"50":0.00267,"55":0.008,"59":0.29582,"63":0.00533,"64":0.00267,"65":0.07196,"67":0.00267,"70":0.008,"71":0.17056,"72":0.00267,"73":0.00267,"76":0.00533,"77":0.01599,"78":0.00533,"79":0.03198,"80":0.00267,"85":0.01599,"86":0.008,"87":0.09061,"88":0.01333,"89":0.01866,"90":0.00533,"91":0.24785,"92":0.08262,"93":0.01066,"94":0.08262,"95":0.01866,"96":0.06929,"97":0.12526,"98":0.1599,"99":3.24864,"100":12.29365,"101":0.2132,"102":0.02665,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 47 48 51 52 53 54 56 57 58 60 61 62 66 68 69 74 75 81 83 84 103 104"},F:{"76":0.47437,"84":0.03731,"85":0.17856,"86":0.01599,_:"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 77 78 79 80 81 82 83 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.02932,"14":0.01866,"16":0.00533,"17":0.02399,"18":0.04264,"84":0.01599,"85":0.00267,"87":0.00267,"89":0.03998,"91":0.00533,"92":0.01066,"94":0.01066,"95":0.00533,"96":0.00533,"97":0.02399,"98":0.02399,"99":0.52767,"100":2.38251,"101":0.02132,_:"13 15 79 80 81 83 86 88 90 93"},E:{"4":0,"14":0.09861,"15":0.0533,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.008,"12.1":0.00533,"13.1":0.14391,"14.1":0.10127,"15.1":0.04264,"15.2-15.3":0.07995,"15.4":0.12792},G:{"8":0.01664,"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.00666,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00333,"10.0-10.2":0.00416,"10.3":0.12149,"11.0-11.2":0.07489,"11.3-11.4":0.15893,"12.0-12.1":0.01914,"12.2-12.5":0.23215,"13.0-13.1":0.00333,"13.2":0.01581,"13.3":0.49426,"13.4-13.7":0.13896,"14.0-14.4":0.35863,"14.5-14.8":1.79399,"15.0-15.1":0.97022,"15.2-15.3":1.52023,"15.4":2.38394},P:{"4":0.40417,"5.0-5.4":0.05124,"6.2-6.4":0.07073,"7.2-7.4":0.97002,"8.2":0.02049,"9.2":0.09094,"10.1":0.04099,"11.1-11.2":0.33344,"12.0":0.06063,"13.0":0.28292,"14.0":0.2324,"15.0":0.17177,"16.0":2.85952},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0066,"4.2-4.3":0.0154,"4.4":0,"4.4.3-4.4.4":0.06601},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04797,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":58.10165},S:{"2.5":0},R:{_:"0"},M:{"0":0.21269},Q:{"10.4":0.3887},O:{"0":0.77007},H:{"0":0.76377}}; +module.exports={C:{"78":0.03952,"81":0.00565,"84":0.00565,"88":0.00847,"91":0.02258,"97":0.01694,"98":0.03388,"99":0.23713,"100":1.63169,"101":0.01412,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 85 86 87 89 90 92 93 94 95 96 102 103 3.5 3.6"},D:{"31":0.00847,"46":0.00565,"47":0.00282,"49":0.01976,"51":0.00282,"59":0.42345,"63":0.01129,"65":0.01694,"69":0.00565,"70":0.00282,"71":0.1468,"72":0.00565,"74":0.00565,"76":0.00847,"79":0.0367,"84":0.01412,"86":0.00565,"87":0.13833,"88":0.01694,"89":0.05081,"91":0.12986,"92":0.04517,"93":0.01412,"94":0.01976,"95":0.00282,"96":0.05928,"97":0.03388,"98":0.06775,"99":0.30206,"100":2.74678,"101":14.17146,"102":1.13767,"103":0.03105,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 48 50 52 53 54 55 56 57 58 60 61 62 64 66 67 68 73 75 77 78 80 81 83 85 90 104"},F:{"76":0.40369,"84":0.00282,"85":0.16938,"86":0.20608,"87":0.01129,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 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:{"13":0.01129,"15":0.00565,"16":0.00565,"17":0.02823,"18":0.05928,"84":0.03388,"89":0.00565,"91":0.01129,"92":0.01412,"93":0.00282,"95":0.00565,"97":0.01694,"98":0.01694,"99":0.12704,"100":0.15809,"101":2.58869,_:"12 14 79 80 81 83 85 86 87 88 90 94 96"},E:{"4":0,"13":0.00282,"14":0.05364,"15":0.05928,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.09316,"12.1":0.00565,"13.1":0.10445,"14.1":0.1722,"15.1":0.04235,"15.2-15.3":0.01976,"15.4":0.41216,"15.5":0.00282},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00303,"6.0-6.1":0.00531,"7.0-7.1":0.01366,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01062,"10.0-10.2":0,"10.3":0.02049,"11.0-11.2":0.02352,"11.3-11.4":0.0349,"12.0-12.1":0.01821,"12.2-12.5":0.2041,"13.0-13.1":0.00759,"13.2":0.01366,"13.3":0.0258,"13.4-13.7":0.11684,"14.0-14.4":0.69196,"14.5-14.8":1.45449,"15.0-15.1":0.66389,"15.2-15.3":0.73293,"15.4":3.54403},P:{"4":0.29492,"5.0-5.4":0.05132,"6.2-6.4":0.03051,"7.2-7.4":0.94579,"8.2":0.22305,"9.2":0.12204,"10.1":0.04105,"11.1-11.2":0.57968,"12.0":0.1017,"13.0":0.539,"14.0":0.54917,"15.0":0.16272,"16.0":1.76953},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00057,"4.2-4.3":0.00344,"4.4":0,"4.4.3-4.4.4":0.02469},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0367,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":56.77624},S:{"2.5":0},R:{_:"0"},M:{"0":0.22246},Q:{"10.4":0.35162},O:{"0":0.57408},H:{"0":0.79487}}; 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 b76d863663b4af..6868ce3d414701 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:{"47":0.01172,"48":0.01759,"51":0.04103,"52":0.08207,"53":0.04103,"54":0.02345,"55":0.04103,"56":0.02931,"57":0.02931,"58":0.01172,"59":0.01172,"68":0.00586,"70":0.02931,"78":0.07034,"81":0.00586,"84":0.01172,"85":0.01172,"87":0.04103,"88":0.01759,"89":0.01172,"90":0.17,"91":0.17,"93":0.04103,"94":0.46896,"95":0.00586,"96":0.01759,"97":0.02345,"98":0.85585,"99":2.33308,"100":0.01172,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 60 61 62 63 64 65 66 67 69 71 72 73 74 75 76 77 79 80 82 83 86 92 101 3.5 3.6"},D:{"38":0.01172,"39":0.01172,"40":0.01172,"41":0.01759,"42":0.01172,"43":0.01172,"44":0.01759,"45":0.01759,"46":0.01759,"47":0.01759,"48":0.01172,"49":0.08793,"50":0.01172,"51":0.01759,"52":0.0469,"53":0.01172,"54":0.01172,"55":0.01172,"56":0.01172,"57":0.01172,"58":0.02345,"59":0.02931,"60":0.01759,"61":0.01172,"62":0.01759,"63":0.01759,"64":0.01172,"65":0.02345,"66":0.01759,"67":0.01172,"69":0.34,"70":0.01759,"72":0.01759,"73":0.00586,"74":0.01172,"75":0.01172,"76":0.02931,"77":0.01172,"78":0.02345,"79":0.08793,"80":0.15241,"81":0.01172,"83":0.04103,"84":0.05276,"85":0.0469,"86":0.02931,"87":0.10552,"88":0.02931,"89":0.08207,"90":0.04103,"91":0.08207,"92":0.05862,"93":0.09379,"94":0.08207,"95":0.12896,"96":0.22276,"97":0.26965,"98":0.7093,"99":7.51508,"100":24.25696,"101":0.35172,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 68 71 102 103 104"},F:{"46":0.00586,"83":0.00586,"84":0.25207,"85":0.75034,"86":0.0469,_:"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 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.00586,"18":0.01172,"84":0.00586,"85":0.01172,"86":0.01172,"88":0.00586,"89":0.01172,"90":0.01172,"91":0.01172,"92":0.01759,"94":0.01172,"95":0.01172,"96":0.02345,"97":0.0469,"98":0.05276,"99":0.93792,"100":5.82683,"101":0.08793,_:"12 13 14 15 16 79 80 81 83 87 93"},E:{"4":0,"5":0.01759,"9":0.00586,"12":0.01172,"13":0.07621,"14":0.44551,"15":0.17586,_:"0 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01172,"11.1":0.02931,"12.1":0.07621,"13.1":0.43965,"14.1":1.44791,"15.1":0.39862,"15.2-15.3":0.38103,"15.4":2.38583},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.00417,"8.1-8.4":0.00208,"9.0-9.2":0.08544,"9.3":0.11461,"10.0-10.2":0.08752,"10.3":0.2709,"11.0-11.2":0.04793,"11.3-11.4":0.03542,"12.0-12.1":0.03542,"12.2-12.5":0.74392,"13.0-13.1":0.03334,"13.2":0.01042,"13.3":0.06877,"13.4-13.7":0.18129,"14.0-14.4":0.57722,"14.5-14.8":2.43389,"15.0-15.1":0.80852,"15.2-15.3":8.27899,"15.4":7.00995},P:{"4":0.10746,"5.0-5.4":0.05124,"6.2-6.4":0.03074,"7.2-7.4":0.02071,"8.2":0.02049,"9.2":0.01075,"10.1":0.04099,"11.1-11.2":0.04298,"12.0":0.03107,"13.0":0.02149,"14.0":0.02149,"15.0":0.05373,"16.0":2.27808},I:{"0":0,"3":0,"4":0.00617,"2.1":0,"2.2":0.0037,"2.3":0.00494,"4.1":0.00494,"4.2-4.3":0.01852,"4.4":0,"4.4.3-4.4.4":0.1272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.01172,"8":0.03517,"9":0.02931,"10":0.09379,"11":0.59792,_:"6 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":16.79836},S:{"2.5":0},R:{_:"0"},M:{"0":0.66606},Q:{"10.4":0.00827},O:{"0":0.04137},H:{"0":0.20367}}; +module.exports={C:{"47":0.00629,"48":0.00629,"52":0.03775,"78":0.05034,"87":0.03146,"90":0.19505,"91":0.09438,"93":0.00629,"94":0.06921,"96":0.01258,"97":0.01888,"98":0.02517,"99":0.4719,"100":2.03861,"101":0.00629,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 92 95 102 103 3.5 3.6"},D:{"38":0.00629,"49":0.0755,"52":0.02517,"58":0.00629,"59":0.01258,"66":0.01258,"67":0.00629,"69":0.16359,"70":0.00629,"75":0.01258,"76":0.03775,"77":0.00629,"78":0.01888,"79":0.06921,"80":0.05663,"81":0.01888,"83":0.01888,"84":0.04404,"85":0.02517,"86":0.03146,"87":0.08809,"88":0.01888,"89":0.06921,"90":0.03146,"91":0.0755,"92":0.0755,"93":0.13213,"94":0.05663,"95":0.0755,"96":0.22651,"97":0.18876,"98":0.28943,"99":0.81796,"100":7.42456,"101":29.64161,"102":1.89389,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 60 61 62 63 64 65 68 71 72 73 74 103 104"},F:{"69":0.00629,"84":0.00629,"85":0.67954,"86":0.69841,"87":0.01888,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"86":0.01258,"90":0.01258,"91":0.00629,"92":0.01258,"94":0.01258,"95":0.00629,"96":0.01258,"97":0.02517,"98":0.03146,"99":0.06292,"100":0.32718,"101":5.80122,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 87 88 89 93"},E:{"4":0,"5":0.01888,"13":0.0755,"14":0.47819,"15":0.20764,_:"0 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00629,"11.1":0.02517,"12.1":0.08809,"13.1":0.42156,"14.1":1.60446,"15.1":0.37123,"15.2-15.3":0.29572,"15.4":4.0898,"15.5":0.37123},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.00206,"8.1-8.4":0,"9.0-9.2":0.06177,"9.3":0.0803,"10.0-10.2":0.04941,"10.3":0.17295,"11.0-11.2":0.02265,"11.3-11.4":0.02265,"12.0-12.1":0.01853,"12.2-12.5":0.51473,"13.0-13.1":0.01441,"13.2":0.00824,"13.3":0.03912,"13.4-13.7":0.14001,"14.0-14.4":0.45914,"14.5-14.8":2.16393,"15.0-15.1":0.52914,"15.2-15.3":1.61214,"15.4":14.67192},P:{"4":0.05346,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.01069,"13.0":0.01069,"14.0":0.01069,"15.0":0.02138,"16.0":0.65224},I:{"0":0,"3":0,"4":0.00269,"2.1":0,"2.2":0.00359,"2.3":0.00179,"4.1":0.00269,"4.2-4.3":0.00448,"4.4":0,"4.4.3-4.4.4":0.06634},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.01258,"8":0.01258,"9":0.00629,"10":0.08809,"11":0.40898,_:"6 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":13.76846},S:{"2.5":0},R:{_:"0"},M:{"0":0.44496},Q:{"10.4":0.00371},O:{"0":0.02596},H:{"0":0.16148}}; 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 314dc40a503c58..be16676d363f6f 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:{"68":0.01133,"87":0.01133,"96":0.01133,"97":0.06797,"98":0.23222,"99":1.06483,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 100 101 3.5 3.6"},D:{"49":0.01133,"51":0.12461,"58":0.00566,"62":0.01133,"69":0.01699,"73":4.4689,"74":0.01133,"75":0.24922,"76":1.73885,"77":0.18125,"79":0.0793,"80":0.02266,"83":0.00566,"85":0.02266,"86":0.00566,"87":0.0793,"88":0.03965,"89":0.01133,"90":0.05098,"91":0.01699,"92":0.02832,"93":0.03965,"94":0.01133,"95":0.02266,"96":0.03398,"97":0.31152,"98":1.06483,"99":5.28451,"100":21.25699,"101":0.89491,"102":0.01699,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 59 60 61 63 64 65 66 67 68 70 71 72 78 81 84 103 104"},F:{"28":0.02266,"82":0.00566,"84":0.03398,"85":0.37949,"86":0.03965,_:"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 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.2209,"18":0.11328,"85":0.01133,"96":0.06797,"97":0.0623,"98":0.02832,"99":1.30838,"100":5.15424,"101":0.04531,_:"12 13 14 15 17 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95"},E:{"4":0,"13":0.01133,"14":0.03965,"15":0.01699,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00566,"11.1":0.01133,"12.1":0.00566,"13.1":0.0623,"14.1":0.37949,"15.1":0.13027,"15.2-15.3":0.10195,"15.4":0.4871},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00597,"6.0-6.1":0,"7.0-7.1":0.00656,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01014,"10.0-10.2":0,"10.3":0.01909,"11.0-11.2":0.00597,"11.3-11.4":0.00656,"12.0-12.1":0,"12.2-12.5":0.34657,"13.0-13.1":0.01253,"13.2":0.00775,"13.3":0.00775,"13.4-13.7":0.03042,"14.0-14.4":0.1372,"14.5-14.8":0.70389,"15.0-15.1":0.4456,"15.2-15.3":2.04246,"15.4":2.17787},P:{"4":1.09731,"5.0-5.4":0.05124,"6.2-6.4":0.07073,"7.2-7.4":0.18288,"8.2":0.02049,"9.2":0.09094,"10.1":0.04099,"11.1-11.2":0.04303,"12.0":0.06063,"13.0":0.03227,"14.0":0.21516,"15.0":0.04303,"16.0":3.21662},I:{"0":0,"3":0,"4":0.00178,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00025,"4.4":0,"4.4.3-4.4.4":0.05867},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02266,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00867},N:{"10":0.06186,_:"11"},L:{"0":40.96363},S:{"2.5":0},R:{_:"0"},M:{"0":0.1084},Q:{"10.4":0},O:{"0":0.59403},H:{"0":0.11084}}; +module.exports={C:{"34":0.01049,"68":0.00524,"78":0.00524,"97":0.05244,"98":0.02098,"99":0.2622,"100":1.64137,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 101 102 103 3.5 3.6"},D:{"49":0.01573,"58":0.02098,"62":0.03146,"63":0.00524,"69":0.02098,"73":0.24122,"75":0.0839,"76":1.29527,"77":0.24647,"78":0.01573,"79":0.01049,"80":0.01049,"81":0.03146,"83":0.00524,"85":0.01049,"87":0.00524,"88":0.01049,"90":0.03146,"91":0.01573,"92":0.05768,"93":0.0472,"95":0.03671,"96":0.11537,"97":0.32513,"98":0.77611,"99":0.30415,"100":5.96243,"101":20.48306,"102":1.93504,"103":0.29891,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 59 60 61 64 65 66 67 68 70 71 72 74 84 86 89 94 104"},F:{"85":0.3461,"86":0.26744,"87":0.09964,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.15208,"85":0.00524,"92":1.52076,"95":0.00524,"97":0.00524,"98":0.01573,"99":0.02622,"100":0.58733,"101":4.96082,_:"12 13 14 15 17 18 79 80 81 83 84 86 87 88 89 90 91 93 94 96"},E:{"4":0,"14":0.03671,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.0472,"12.1":0.01049,"13.1":0.19927,"14.1":0.24122,"15.1":0.18354,"15.2-15.3":0.03671,"15.4":0.75514,"15.5":0.3094},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00075,"6.0-6.1":0,"7.0-7.1":0.00597,"8.1-8.4":0.00075,"9.0-9.2":0,"9.3":0.00448,"10.0-10.2":0,"10.3":0.04852,"11.0-11.2":0.00523,"11.3-11.4":0.00448,"12.0-12.1":0.00075,"12.2-12.5":0.29858,"13.0-13.1":0.00224,"13.2":0.00075,"13.3":0.00075,"13.4-13.7":0.04927,"14.0-14.4":0.15377,"14.5-14.8":0.84796,"15.0-15.1":0.60612,"15.2-15.3":1.23985,"15.4":4.19354},P:{"4":0.36502,"5.0-5.4":0.05132,"6.2-6.4":0.03051,"7.2-7.4":0.13957,"8.2":0.22305,"9.2":0.12204,"10.1":0.04105,"11.1-11.2":0.44017,"12.0":0.1017,"13.0":0.10736,"14.0":0.07515,"15.0":0.02147,"16.0":1.07359},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.15222},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06293,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00476},N:{"10":0.06871,_:"11"},L:{"0":42.87415},S:{"2.5":0},R:{_:"0"},M:{"0":0.0999},Q:{"10.4":0},O:{"0":0.11417},H:{"0":0.10809}}; 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 5fbc8f5f10694b..2b796cb082650e 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:{"52":0.01556,"55":0.01167,"57":0.01556,"64":0.00389,"73":0.03889,"78":0.01556,"79":0.00778,"80":0.01167,"81":0.02333,"82":0.00389,"83":0.00778,"84":0.01167,"85":0.00389,"87":0.00778,"88":0.01167,"89":0.00778,"90":0.01167,"91":0.01556,"94":0.00389,"95":0.01167,"96":0.00389,"97":0.01945,"98":0.2839,"99":0.84391,"100":0.00778,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 58 59 60 61 62 63 65 66 67 68 69 70 71 72 74 75 76 77 86 92 93 101 3.5 3.6"},D:{"38":0.00778,"47":0.01167,"49":0.09723,"50":0.00778,"53":0.00389,"54":0.00389,"55":0.00389,"58":0.00778,"62":0.00778,"63":0.02722,"64":0.00778,"65":0.01556,"67":0.00778,"68":0.00778,"69":0.00389,"70":0.01945,"72":0.00778,"73":0.00778,"74":0.00778,"75":0.01556,"76":0.035,"77":0.00389,"78":0.01167,"79":0.07,"80":0.02722,"81":0.02722,"83":0.07,"84":0.14,"85":0.10111,"86":0.105,"87":0.17889,"88":0.02722,"89":0.07,"90":0.04278,"91":0.12834,"92":0.03889,"93":0.07,"94":0.08167,"95":0.04667,"96":0.105,"97":0.14778,"98":0.23723,"99":4.30123,"100":20.91504,"101":0.30723,"102":0.01167,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 56 57 59 60 61 66 71 103 104"},F:{"70":0.01167,"84":0.32279,"85":1.01114,"86":0.01556,_:"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 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00389,"14":0.00778,"17":0.00778,"18":0.14778,"83":0.00778,"84":0.01167,"89":0.01167,"90":0.01556,"92":0.01945,"94":0.00389,"95":0.00389,"96":0.00778,"97":0.02722,"98":0.02333,"99":0.3889,"100":2.59007,"101":0.03889,_:"13 15 16 79 80 81 85 86 87 88 91 93"},E:{"4":0,"13":0.02333,"14":0.11278,"15":0.06222,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.035,"11.1":0.01556,"12.1":0.035,"13.1":0.11667,"14.1":0.31112,"15.1":0.09334,"15.2-15.3":0.09723,"15.4":0.46279},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00162,"6.0-6.1":0,"7.0-7.1":0.05036,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03736,"10.0-10.2":0.0065,"10.3":0.04061,"11.0-11.2":0.02112,"11.3-11.4":0.02112,"12.0-12.1":0.04548,"12.2-12.5":0.63026,"13.0-13.1":0.02437,"13.2":0.0065,"13.3":0.07635,"13.4-13.7":0.23066,"14.0-14.4":0.88041,"14.5-14.8":2.58439,"15.0-15.1":0.78782,"15.2-15.3":5.30198,"15.4":5.48391},P:{"4":0.09535,"5.0-5.4":0.01059,"6.2-6.4":0.07073,"7.2-7.4":0.10595,"8.2":0.02049,"9.2":0.01059,"10.1":0.04099,"11.1-11.2":0.15892,"12.0":0.06063,"13.0":0.04238,"14.0":0.05297,"15.0":0.04238,"16.0":1.27138},I:{"0":0,"3":0,"4":0.00124,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00186,"4.2-4.3":0.00434,"4.4":0,"4.4.3-4.4.4":0.03534},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01945,"11":0.07778,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":40.43217},S:{"2.5":0},R:{_:"0"},M:{"0":0.42777},Q:{"10.4":0},O:{"0":0.055},H:{"0":0.24878}}; +module.exports={C:{"52":0.01251,"73":0.02918,"75":0.01251,"78":0.03752,"81":0.00834,"82":0.01251,"83":0.00417,"84":0.01251,"88":0.01668,"90":0.02085,"91":0.01251,"92":0.00417,"93":0.00417,"95":0.00834,"97":0.01251,"99":0.23346,"100":0.92552,"101":0.01251,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 76 77 79 80 85 86 87 89 94 96 98 102 103 3.5 3.6"},D:{"30":0.00834,"43":0.01251,"47":0.00417,"49":0.07087,"50":0.01251,"55":0.00417,"56":0.00417,"63":0.01251,"64":0.00834,"65":0.02085,"67":0.00834,"68":0.00417,"69":0.00834,"70":0.02085,"72":0.01251,"73":0.00417,"74":0.01251,"75":0.01251,"76":0.02501,"77":0.00417,"78":0.00834,"79":0.05837,"80":0.02085,"81":0.02918,"83":0.10006,"84":0.14592,"85":0.10839,"86":0.26265,"87":0.20011,"88":0.03752,"89":0.0667,"90":0.03752,"91":0.0667,"92":0.03335,"93":0.07087,"94":0.05837,"95":0.05837,"96":0.09172,"97":0.10006,"98":0.1209,"99":0.23763,"100":5.16539,"101":19.99036,"102":1.89273,"103":0.01251,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 53 54 57 58 59 60 61 62 66 71 104"},F:{"68":0.01251,"69":0.00417,"70":0.01251,"72":0.01251,"84":0.00834,"85":0.78794,"86":0.68789,"87":0.03335,_:"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 71 73 74 75 76 77 78 79 80 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.00834,"14":0.00417,"17":0.00834,"18":0.13341,"84":0.00834,"89":0.00834,"90":0.00417,"92":0.02085,"94":0.01251,"96":0.01251,"97":0.01251,"98":0.00834,"99":0.04169,"100":0.15008,"101":3.11007,_:"13 15 16 79 80 81 83 85 86 87 88 91 93 95"},E:{"4":0,"13":0.02501,"14":0.17093,"15":0.07087,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00834,"11.1":0.01668,"12.1":0.02918,"13.1":0.14175,"14.1":0.33769,"15.1":0.07921,"15.2-15.3":0.10006,"15.4":0.90884,"15.5":0.10423},G:{"8":0,"3.2":0.00161,"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.05136,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04013,"10.0-10.2":0.00963,"10.3":0.04173,"11.0-11.2":0.00803,"11.3-11.4":0.01926,"12.0-12.1":0.0321,"12.2-12.5":0.54893,"13.0-13.1":0.02247,"13.2":0.00803,"13.3":0.09791,"13.4-13.7":0.21508,"14.0-14.4":0.71907,"14.5-14.8":2.00311,"15.0-15.1":0.51522,"15.2-15.3":1.38035,"15.4":10.32855},P:{"4":0.0749,"5.0-5.4":0.0107,"6.2-6.4":0.03051,"7.2-7.4":0.1177,"8.2":0.22305,"9.2":0.0107,"10.1":0.04105,"11.1-11.2":0.1605,"12.0":0.0107,"13.0":0.0321,"14.0":0.0535,"15.0":0.0321,"16.0":0.58849},I:{"0":0,"3":0,"4":0.00221,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00332,"4.2-4.3":0.00775,"4.4":0,"4.4.3-4.4.4":0.07417},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00859,"8":0.0043,"11":0.12886,_:"7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":39.38326},S:{"2.5":0},R:{_:"0"},M:{"0":0.4081},Q:{"10.4":0},O:{"0":0.06996},H:{"0":0.24286}}; 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 5a1e70f1b9c4fb..a7d0ee30ff07a1 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:{"33":0.00361,"34":0.00361,"36":0.00361,"38":0.00723,"40":0.00723,"41":0.00361,"43":0.01084,"47":0.01445,"48":0.00723,"52":0.1951,"56":0.00723,"60":0.00361,"67":0.00361,"68":0.00361,"72":0.01807,"78":0.01445,"80":0.00723,"82":0.00361,"83":0.00723,"84":0.05058,"85":0.00361,"86":0.00361,"87":0.00361,"88":0.01084,"89":0.0289,"91":0.05781,"92":0.03252,"93":0.00723,"94":0.01084,"95":0.01807,"96":0.02168,"97":0.03613,"98":0.63589,"99":2.03412,"100":0.03252,_:"2 3 4 5 6 7 8 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 37 39 42 44 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 69 70 71 73 74 75 76 77 79 81 90 101 3.5 3.6"},D:{"22":0.00361,"26":0.00723,"31":0.00723,"32":0.00723,"33":0.02168,"34":0.00361,"38":0.01084,"39":0.01084,"40":0.01807,"42":0.00361,"43":0.16259,"45":0.00361,"47":0.00723,"49":0.20594,"50":0.01445,"51":0.01084,"52":0.00361,"53":0.00723,"54":0.00361,"55":0.01084,"56":0.03252,"57":0.00361,"58":0.02168,"59":0.00361,"60":0.00723,"61":0.01084,"62":0.00723,"63":0.04336,"64":0.02529,"65":0.01084,"66":0.00723,"67":0.01807,"68":0.01445,"69":0.0289,"70":0.01445,"71":0.01445,"72":0.01445,"73":0.00723,"74":0.01445,"75":0.00723,"76":0.01445,"77":0.01445,"78":0.01807,"79":0.09033,"80":0.03974,"81":0.06142,"83":0.05058,"84":0.05781,"85":0.05058,"86":0.1662,"87":0.23846,"88":0.03252,"89":0.06503,"90":0.05058,"91":0.06865,"92":0.06142,"93":0.11562,"94":0.06142,"95":0.09755,"96":0.1951,"97":0.18788,"98":0.44079,"99":3.42151,"100":18.1192,"101":0.23846,"102":0.01445,_:"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 35 36 37 41 44 46 48 103 104"},F:{"28":0.01084,"68":0.00723,"70":0.00361,"79":0.01084,"80":0.00361,"82":0.01084,"83":0.01084,"84":0.28904,"85":1.27539,"86":0.01807,_:"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 71 72 73 74 75 76 77 78 81 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.01084,"13":0.00723,"15":0.00723,"16":0.01084,"17":0.00723,"18":0.0289,"84":0.01084,"85":0.01084,"86":0.00723,"88":0.00361,"89":0.00723,"90":0.00723,"91":0.00723,"92":0.02529,"93":0.00361,"94":0.00361,"95":0.00723,"96":0.02168,"97":0.112,"98":0.02529,"99":0.22039,"100":1.4163,"101":0.00723,_:"14 79 80 81 83 87"},E:{"4":0,"13":0.0289,"14":0.02529,"15":0.01084,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00723,"11.1":0.00361,"12.1":0.01445,"13.1":0.0289,"14.1":0.05781,"15.1":0.03252,"15.2-15.3":0.02529,"15.4":0.20233},G:{"8":0.00032,"3.2":0.00032,"4.0-4.1":0.00064,"4.2-4.3":0.00548,"5.0-5.1":0.00805,"6.0-6.1":0.00193,"7.0-7.1":0.04413,"8.1-8.4":0.00451,"9.0-9.2":0.00258,"9.3":0.04736,"10.0-10.2":0.00226,"10.3":0.03705,"11.0-11.2":0.00773,"11.3-11.4":0.0087,"12.0-12.1":0.0087,"12.2-12.5":0.19941,"13.0-13.1":0.00999,"13.2":0.00515,"13.3":0.03254,"13.4-13.7":0.14948,"14.0-14.4":0.17396,"14.5-14.8":0.35984,"15.0-15.1":0.21133,"15.2-15.3":0.87077,"15.4":1.02733},P:{"4":0.14824,"5.0-5.4":0.31222,"6.2-6.4":0.02118,"7.2-7.4":0.15882,"8.2":0.02357,"9.2":0.05294,"10.1":0.03021,"11.1-11.2":0.09529,"12.0":0.04235,"13.0":0.15882,"14.0":0.12706,"15.0":0.10588,"16.0":1.40825},I:{"0":0,"3":0,"4":0.00094,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00157,"4.2-4.3":0.00504,"4.4":0,"4.4.3-4.4.4":0.03716},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01445,"9":0.04336,"11":0.12284,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":59.67214},S:{"2.5":0},R:{_:"0"},M:{"0":0.19164},Q:{"10.4":0},O:{"0":0.46632},H:{"0":0.65316}}; +module.exports={C:{"15":0.04276,"22":0.00777,"26":0.00777,"27":0.00777,"29":0.00389,"30":0.00777,"31":0.00389,"32":0.00389,"33":0.00389,"34":0.00777,"35":0.00777,"36":0.00777,"37":0.00389,"38":0.02332,"39":0.00777,"40":0.01166,"41":0.00389,"43":0.01555,"44":0.00389,"47":0.01944,"48":0.01166,"52":0.22156,"56":0.00777,"57":0.00389,"60":0.00389,"65":0.00389,"67":0.00389,"68":0.00777,"72":0.01555,"78":0.01166,"79":0.00389,"80":0.00389,"83":0.00389,"84":0.01944,"87":0.00389,"88":0.01166,"89":0.02721,"90":0.00389,"91":0.04664,"92":0.00777,"93":0.00777,"94":0.01166,"95":0.01555,"96":0.01944,"97":0.01944,"98":0.04276,"99":0.55584,"100":2.16895,"101":0.0311,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 23 24 25 28 42 45 46 49 50 51 53 54 55 58 59 61 62 63 64 66 69 70 71 73 74 75 76 77 81 82 85 86 102 103 3.5 3.6"},D:{"11":0.00389,"18":0.00777,"20":0.00389,"22":0.01166,"26":0.01555,"27":0.00777,"30":0.00389,"31":0.01166,"32":0.00389,"33":0.02721,"34":0.00389,"37":0.00389,"38":0.01944,"39":0.01166,"40":0.02332,"42":0.00777,"43":0.21379,"45":0.00777,"46":0.00777,"47":0.01166,"48":0.00389,"49":0.37704,"50":0.01944,"51":0.01555,"52":0.00389,"53":0.00389,"54":0.00777,"55":0.00389,"56":0.04276,"57":0.00389,"58":0.02721,"60":0.01555,"61":0.01166,"62":0.00777,"63":0.04664,"64":0.02721,"65":0.01555,"66":0.00777,"67":0.01944,"68":0.01166,"69":0.03498,"70":0.02332,"71":0.01944,"72":0.01166,"73":0.01166,"74":0.01944,"75":0.00777,"76":0.01555,"77":0.01555,"78":0.02721,"79":0.10495,"80":0.04664,"81":0.05831,"83":0.03887,"84":0.04276,"85":0.05053,"86":0.18658,"87":0.12438,"88":0.04276,"89":0.06219,"90":0.04276,"91":0.0894,"92":0.06608,"93":0.05442,"94":0.04664,"95":0.10495,"96":0.15548,"97":0.14771,"98":0.28764,"99":0.39647,"100":4.0075,"101":18.57597,"102":1.4965,"103":0.01944,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 21 23 24 25 28 29 35 36 41 44 59 104"},F:{"25":0.00389,"28":0.01944,"36":0.00389,"68":0.00389,"79":0.02721,"80":0.00389,"82":0.00777,"83":0.01166,"84":0.05053,"85":0.85903,"86":0.80461,"87":0.03887,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01166,"13":0.00777,"15":0.00389,"16":0.01555,"17":0.00777,"18":0.02332,"84":0.01166,"85":0.00389,"89":0.00389,"92":0.01555,"96":0.00777,"97":0.02721,"98":0.01166,"99":0.08163,"100":0.08163,"101":1.51593,_:"14 79 80 81 83 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.03498,"14":0.01555,"15":0.01166,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00389,"11.1":0.00389,"12.1":0.00777,"13.1":0.01555,"14.1":0.0311,"15.1":0.01555,"15.2-15.3":0.02721,"15.4":0.23322,"15.5":0.03887},G:{"8":0.00062,"3.2":0.00093,"4.0-4.1":0.00062,"4.2-4.3":0.00467,"5.0-5.1":0.01182,"6.0-6.1":0.00156,"7.0-7.1":0.04884,"8.1-8.4":0.00404,"9.0-9.2":0.00062,"9.3":0.05911,"10.0-10.2":0.00218,"10.3":0.03733,"11.0-11.2":0.00684,"11.3-11.4":0.01182,"12.0-12.1":0.00809,"12.2-12.5":0.1795,"13.0-13.1":0.00871,"13.2":0.00684,"13.3":0.03049,"13.4-13.7":0.07031,"14.0-14.4":0.14248,"14.5-14.8":0.27189,"15.0-15.1":0.18634,"15.2-15.3":0.3282,"15.4":1.68766},P:{"4":0.18755,"5.0-5.4":0.24206,"6.2-6.4":0.01042,"7.2-7.4":0.14587,"8.2":0.05043,"9.2":0.04168,"10.1":0.01042,"11.1-11.2":0.06252,"12.0":0.03126,"13.0":0.11461,"14.0":0.09377,"15.0":0.09377,"16.0":0.69809},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0018,"4.2-4.3":0.0063,"4.4":0,"4.4.3-4.4.4":0.0408},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01583,"9":0.04749,"11":0.15435,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":57.27982},S:{"2.5":0},R:{_:"0"},M:{"0":0.16505},Q:{"10.4":0},O:{"0":0.43402},H:{"0":0.65398}}; 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 bfdb01586b77e9..7fd0e7271aa967 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:{"51":0.01537,"52":0.02562,"60":0.00512,"64":0.01025,"66":0.01537,"68":0.01537,"72":0.01025,"73":0.0205,"78":0.06661,"81":0.01025,"84":0.01025,"86":0.01025,"88":0.04612,"89":0.02562,"90":0.01537,"91":0.04612,"92":0.0205,"93":0.01025,"94":0.01537,"95":0.01537,"96":0.0205,"97":0.06661,"98":0.80959,"99":2.64398,"100":0.01025,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 61 62 63 65 67 69 70 71 74 75 76 77 79 80 82 83 85 87 101 3.5 3.6"},D:{"22":0.01025,"38":0.03587,"47":0.02562,"49":0.03587,"53":0.0205,"55":0.01537,"56":0.00512,"63":0.01025,"65":0.01537,"66":0.01025,"67":0.01025,"68":0.01025,"69":0.00512,"70":0.00512,"71":0.00512,"73":0.01025,"74":0.0205,"75":0.03587,"76":0.01537,"77":0.01025,"78":0.01025,"79":0.20496,"80":0.01537,"81":0.01537,"83":0.02562,"84":0.04099,"85":0.03074,"86":0.04612,"87":0.08198,"88":0.0205,"89":0.03587,"90":0.0205,"91":0.21008,"92":0.04612,"93":0.03587,"94":0.07686,"95":0.14347,"96":0.15372,"97":0.24595,"98":0.36893,"99":5.35458,"100":29.23242,"101":0.43042,"102":0.01025,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 61 62 64 72 103 104"},F:{"28":0.01025,"83":0.00512,"84":0.35356,"85":1.45009,"86":0.01537,_:"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 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.00512,"18":0.01537,"84":0.00512,"85":0.00512,"89":0.00512,"92":0.01537,"96":0.01025,"97":0.0205,"98":0.0205,"99":0.31769,"100":2.55688,"101":0.03587,_:"12 13 14 15 16 79 80 81 83 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.01537,"14":0.08711,"15":0.04612,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01537,"11.1":0.01025,"12.1":0.02562,"13.1":0.11785,"14.1":0.23058,"15.1":0.09223,"15.2-15.3":0.1281,"15.4":0.42017},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01899,"6.0-6.1":0.01564,"7.0-7.1":0.00447,"8.1-8.4":0,"9.0-9.2":0.00056,"9.3":0.01731,"10.0-10.2":0.00056,"10.3":0.0229,"11.0-11.2":0.00391,"11.3-11.4":0.00614,"12.0-12.1":0.00503,"12.2-12.5":0.31501,"13.0-13.1":0.00391,"13.2":0.00782,"13.3":0.01117,"13.4-13.7":0.0592,"14.0-14.4":0.16476,"14.5-14.8":0.65236,"15.0-15.1":0.20833,"15.2-15.3":1.8018,"15.4":2.26314},P:{"4":0.227,"5.0-5.4":0.01059,"6.2-6.4":0.07073,"7.2-7.4":0.12382,"8.2":0.02049,"9.2":0.01059,"10.1":0.04099,"11.1-11.2":0.06191,"12.0":0.02064,"13.0":0.08254,"14.0":0.08254,"15.0":0.06191,"16.0":1.65087},I:{"0":0,"3":0,"4":0.00163,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00163,"4.2-4.3":0.00488,"4.4":0,"4.4.3-4.4.4":0.04551},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00512,"11":0.15372,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":40.51396},S:{"2.5":0},R:{_:"0"},M:{"0":0.17066},Q:{"10.4":0},O:{"0":0.03901},H:{"0":0.2539}}; +module.exports={C:{"51":0.01033,"52":0.02067,"58":0.00517,"64":0.00517,"66":0.01033,"68":0.0155,"72":0.01033,"73":0.02067,"78":0.062,"79":0.01033,"81":0.00517,"84":0.01033,"88":0.03617,"89":0.02067,"90":0.0155,"91":0.04134,"92":0.0155,"93":0.00517,"94":0.01033,"95":0.01033,"96":0.02067,"97":0.06717,"98":0.05167,"99":0.59937,"100":2.84702,"101":0.02067,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 59 60 61 62 63 65 67 69 70 71 74 75 76 77 80 82 83 85 86 87 102 103 3.5 3.6"},D:{"22":0.00517,"38":0.02584,"47":0.02067,"49":0.02584,"53":0.01033,"55":0.02067,"56":0.01033,"63":0.00517,"65":0.0155,"66":0.01033,"67":0.0155,"68":0.01033,"70":0.00517,"73":0.00517,"74":0.02067,"75":0.02067,"76":0.0155,"77":0.01033,"78":0.01033,"79":0.18085,"80":0.02067,"81":0.0155,"83":0.031,"84":0.02584,"85":0.031,"86":0.062,"87":0.08784,"88":0.0155,"89":0.02584,"90":0.0155,"91":0.26868,"92":0.04134,"93":0.02584,"94":0.06717,"95":0.02584,"96":0.12918,"97":0.20668,"98":0.24285,"99":0.28935,"100":6.20557,"101":27.62795,"102":2.96069,"103":0.01033,_:"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 51 52 54 57 58 59 60 61 62 64 69 71 72 104"},F:{"28":0.01033,"83":0.00517,"84":0.00517,"85":1.0334,"86":1.02307,"87":0.04134,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0155,"89":0.00517,"92":0.01033,"93":0.00517,"96":0.01033,"97":0.01033,"98":0.01033,"99":0.02067,"100":0.12401,"101":2.91419,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 94 95"},E:{"4":0,"13":0.01033,"14":0.08267,"15":0.0465,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01033,"11.1":0.02067,"12.1":0.02067,"13.1":0.10334,"14.1":0.19635,"15.1":0.062,"15.2-15.3":0.08784,"15.4":0.67688,"15.5":0.07751},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.01667,"7.0-7.1":0.00402,"8.1-8.4":0,"9.0-9.2":0.00115,"9.3":0.01724,"10.0-10.2":0,"10.3":0.01609,"11.0-11.2":0.0023,"11.3-11.4":0.00632,"12.0-12.1":0.00345,"12.2-12.5":0.25062,"13.0-13.1":0.00345,"13.2":0.00517,"13.3":0.01322,"13.4-13.7":0.04771,"14.0-14.4":0.13623,"14.5-14.8":0.48457,"15.0-15.1":0.13853,"15.2-15.3":0.35638,"15.4":4.22889},P:{"4":0.18784,"5.0-5.4":0.0107,"6.2-6.4":0.03051,"7.2-7.4":0.12522,"8.2":0.22305,"9.2":0.01044,"10.1":0.04105,"11.1-11.2":0.04174,"12.0":0.02087,"13.0":0.06261,"14.0":0.06261,"15.0":0.04174,"16.0":0.69917},I:{"0":0,"3":0,"4":0.00354,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00177,"4.2-4.3":0.00354,"4.4":0,"4.4.3-4.4.4":0.04429},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01033,"11":0.06717,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":39.20138},S:{"2.5":0},R:{_:"0"},M:{"0":0.17878},Q:{"10.4":0},O:{"0":0.03866},H:{"0":0.11437}}; 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 a049d5f09e268b..ae624da10e1ba7 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:{"52":0.03402,"65":0.0068,"66":0.01361,"68":0.07483,"69":0.0068,"78":0.05442,"81":0.0068,"82":0.0068,"84":0.02041,"85":0.0068,"87":0.12926,"88":0.02041,"91":0.13606,"92":0.0068,"93":0.02041,"94":0.02721,"95":0.02721,"96":0.07483,"97":0.06123,"98":1.02045,"99":2.78243,"100":0.02041,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 67 70 71 72 73 74 75 76 77 79 80 83 86 89 90 101 3.5 3.6"},D:{"39":0.04082,"49":0.03402,"60":0.02721,"65":0.0068,"68":0.02721,"69":1.08168,"71":0.0068,"72":0.0068,"73":0.0068,"74":0.02041,"75":0.0068,"76":0.01361,"78":0.02041,"79":0.04082,"80":0.02041,"81":0.08844,"83":0.03402,"84":0.03402,"85":0.02721,"86":0.06123,"87":0.04762,"88":0.08844,"89":0.02721,"90":0.08164,"91":3.47633,"92":0.03402,"93":0.17008,"94":0.02721,"95":0.05442,"96":0.14967,"97":0.34695,"98":0.63268,"99":7.9391,"100":31.7428,"101":0.4558,"102":0.01361,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 64 66 67 70 77 103 104"},F:{"36":0.0068,"77":0.02721,"78":0.02041,"79":0.02041,"80":0.01361,"81":0.01361,"82":0.01361,"84":0.74153,"85":4.29269,"86":0.02041,_:"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 83 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.02041,"85":0.0068,"88":0.02041,"92":0.01361,"94":0.0068,"96":0.01361,"97":0.02721,"98":0.04762,"99":0.59866,"100":4.21786,"101":0.07483,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 89 90 91 93 95"},E:{"4":0,"12":0.0068,"13":0.04762,"14":0.23811,"15":0.11565,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02041,"12.1":0.04762,"13.1":0.24491,"14.1":0.58506,"15.1":0.24491,"15.2-15.3":0.2313,"15.4":1.05447},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00296,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01774,"10.0-10.2":0.00789,"10.3":0.16463,"11.0-11.2":0.01282,"11.3-11.4":0.0069,"12.0-12.1":0.01972,"12.2-12.5":0.19224,"13.0-13.1":0.01084,"13.2":0.01183,"13.3":0.02563,"13.4-13.7":0.10844,"14.0-14.4":0.38151,"14.5-14.8":1.02525,"15.0-15.1":0.50573,"15.2-15.3":3.65838,"15.4":3.70373},P:{"4":0.02159,"5.0-5.4":0.02064,"6.2-6.4":0.1032,"7.2-7.4":0.4541,"8.2":0.02057,"9.2":0.08256,"10.1":0.01032,"11.1-11.2":0.07224,"12.0":0.0108,"13.0":0.05398,"14.0":0.07558,"15.0":0.04319,"16.0":2.12699},I:{"0":0,"3":0,"4":0.00085,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00085,"4.2-4.3":0.0055,"4.4":0,"4.4.3-4.4.4":0.02159},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.96603,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":18.80994},S:{"2.5":0},R:{_:"0"},M:{"0":0.28142},Q:{"10.4":0},O:{"0":0.03198},H:{"0":0.20588}}; +module.exports={C:{"52":0.04713,"66":0.01347,"68":0.05386,"69":0.01347,"78":0.0202,"81":0.02693,"84":0.02693,"87":0.10773,"91":0.14813,"92":0.00673,"93":0.01347,"94":0.0202,"96":0.0404,"97":0.0202,"98":0.0404,"99":0.65983,"100":2.92212,"101":0.0202,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 70 71 72 73 74 75 76 77 79 80 82 83 85 86 88 89 90 95 102 103 3.5 3.6"},D:{"39":0.03367,"49":0.02693,"60":0.03367,"67":0.00673,"68":0.00673,"69":0.85509,"74":0.0202,"76":0.00673,"78":0.00673,"79":0.03367,"80":0.0202,"81":0.22892,"83":0.02693,"84":0.02693,"85":0.03367,"86":0.0202,"87":0.08753,"88":0.0202,"89":0.0404,"90":0.03367,"91":2.50468,"92":0.03367,"93":0.04713,"94":0.0606,"95":0.04713,"96":0.09426,"97":0.11446,"98":0.28952,"99":0.7137,"100":10.01197,"101":29.81372,"102":2.47774,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 70 71 72 73 75 77 103 104"},F:{"82":0.01347,"84":0.0202,"85":2.17476,"86":2.673,"87":0.13466,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.03367,"85":0.101,"88":0.00673,"92":0.01347,"96":0.01347,"97":0.01347,"98":0.0202,"99":0.05386,"100":0.24912,"101":4.45725,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 89 90 91 93 94 95"},E:{"4":0,"12":0.00673,"13":0.02693,"14":0.20872,"15":0.0808,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01347,"12.1":0.0404,"13.1":0.20199,"14.1":0.47131,"15.1":0.16159,"15.2-15.3":0.16159,"15.4":1.64285,"15.5":0.24912},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00314,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01672,"10.0-10.2":0.01045,"10.3":0.16408,"11.0-11.2":0.00941,"11.3-11.4":0.00627,"12.0-12.1":0.00836,"12.2-12.5":0.18917,"13.0-13.1":0.00418,"13.2":0.00523,"13.3":0.0209,"13.4-13.7":0.09406,"14.0-14.4":0.27591,"14.5-14.8":0.91448,"15.0-15.1":0.37206,"15.2-15.3":0.88417,"15.4":7.47261},P:{"4":0.02168,"5.0-5.4":0.0204,"6.2-6.4":0.0306,"7.2-7.4":0.55083,"8.2":0.01032,"9.2":0.11221,"10.1":0.04105,"11.1-11.2":0.102,"12.0":0.01084,"13.0":0.02168,"14.0":0.06504,"15.0":0.03252,"16.0":0.73714},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00052,"4.2-4.3":0.0026,"4.4":0,"4.4.3-4.4.4":0.01974},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.57904,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":19.53535},S:{"2.5":0},R:{_:"0"},M:{"0":0.3168},Q:{"10.4":0},O:{"0":0.02939},H:{"0":0.35558}}; 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 d5b44a493e059a..d0fb136bcb77e4 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:{"52":0.0428,"84":0.00611,"91":0.01834,"97":0.00611,"98":0.19565,"99":0.6542,"100":0.01223,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 90 92 93 94 95 96 101 3.5 3.6"},D:{"33":0.00611,"40":0.01223,"43":0.11617,"49":0.02446,"63":0.00611,"79":0.06114,"80":0.01223,"81":0.00611,"83":0.00611,"84":0.01223,"85":0.01223,"86":0.04891,"87":0.01834,"88":0.01223,"89":0.01834,"90":0.01223,"91":0.01834,"92":0.02446,"93":0.01223,"94":0.01223,"95":0.01223,"96":0.05503,"97":0.05503,"98":0.12228,"99":9.37276,"100":48.05604,"101":0.11005,"102":0.00611,_:"4 5 6 7 8 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 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 103 104"},F:{"64":0.01223,"72":0.00611,"73":0.01223,"79":0.01834,"80":0.00611,"81":0.01223,"82":0.01834,"83":0.01834,"84":0.02446,"85":0.01834,_:"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 65 66 67 68 69 70 71 74 75 76 77 78 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.00611,"92":0.00611,"97":0.00611,"98":0.00611,"99":0.07948,"100":0.66643,"101":0.01223,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"14":0.01223,"15":0.00611,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.01223,"13.1":0.01223,"14.1":0.03668,"15.1":0.01223,"15.2-15.3":0.01223,"15.4":0.04891},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00063,"6.0-6.1":0.00314,"7.0-7.1":0.01443,"8.1-8.4":0.0069,"9.0-9.2":0.00376,"9.3":0.05959,"10.0-10.2":0.01254,"10.3":0.19946,"11.0-11.2":0.01882,"11.3-11.4":0.04767,"12.0-12.1":0.03512,"12.2-12.5":2.04351,"13.0-13.1":0.02258,"13.2":0.01004,"13.3":0.07589,"13.4-13.7":0.28037,"14.0-14.4":0.93896,"14.5-14.8":0.32741,"15.0-15.1":0.16182,"15.2-15.3":0.95088,"15.4":1.05688},P:{"4":0.16073,"5.0-5.4":0.01059,"6.2-6.4":0.07073,"7.2-7.4":0.06429,"8.2":0.02049,"9.2":0.01059,"10.1":0.04099,"11.1-11.2":0.05358,"12.0":0.01072,"13.0":0.06429,"14.0":0.06429,"15.0":0.04286,"16.0":0.86792},I:{"0":0,"3":0,"4":0.00297,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00475,"4.2-4.3":0.02017,"4.4":0,"4.4.3-4.4.4":0.36839},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03057,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":30.43298},S:{"2.5":0},R:{_:"0"},M:{"0":0.09324},Q:{"10.4":0.00389},O:{"0":0.2331},H:{"0":0.22068}}; +module.exports={C:{"40":0.00409,"43":0.00409,"44":0.00205,"47":0.00409,"48":0.00205,"51":0.01023,"52":0.07979,"55":0.00205,"56":0.00409,"60":0.00205,"72":0.00614,"78":0.00614,"81":0.00409,"82":0.00205,"83":0.00205,"84":0.00818,"88":0.00409,"89":0.00614,"90":0.00205,"91":0.03069,"92":0.00818,"93":0.00205,"94":0.00818,"95":0.00614,"96":0.00614,"97":0.01023,"98":0.01432,"99":0.2578,"100":1.26034,"101":0.02864,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 45 46 49 50 53 54 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 85 86 87 102 103 3.5 3.6"},D:{"25":0.00614,"26":0.00614,"31":0.00614,"33":0.01228,"34":0.00205,"38":0.00818,"40":0.01432,"43":0.21483,"47":0.01023,"48":0.00205,"49":0.0491,"51":0.00409,"53":0.01023,"55":0.00205,"56":0.00205,"58":0.00205,"60":0.00205,"63":0.01023,"65":0.00205,"66":0.00205,"67":0.00205,"68":0.00409,"69":0.00614,"70":0.00614,"71":0.00614,"72":0.00614,"73":0.00409,"74":0.00818,"75":0.01023,"76":0.01228,"77":0.00614,"78":0.00614,"79":0.13094,"80":0.01841,"81":0.01432,"83":0.01637,"84":0.02455,"85":0.01841,"86":0.06138,"87":0.03274,"88":0.03887,"89":0.0266,"90":0.01841,"91":0.03069,"92":0.03683,"93":0.02046,"94":0.02251,"95":0.02251,"96":0.06752,"97":0.07366,"98":0.14527,"99":0.1514,"100":1.95598,"101":10.66784,"102":1.34013,"103":0.01023,"104":0.00205,_:"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 32 35 36 37 39 41 42 44 45 46 50 52 54 57 59 61 62 64"},F:{"28":0.00409,"56":0.01228,"63":0.00614,"64":0.02455,"65":0.00205,"66":0.00205,"68":0.00614,"69":0.00409,"70":0.00614,"71":0.00409,"72":0.01637,"73":0.02046,"74":0.00205,"75":0.00409,"76":0.00614,"77":0.00409,"78":0.00409,"79":0.0266,"80":0.01432,"81":0.02251,"82":0.03274,"83":0.02455,"84":0.03274,"85":0.06138,"86":0.01841,"87":0.00205,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00205,"15":0.00205,"16":0.00205,"17":0.00205,"18":0.01228,"84":0.00409,"89":0.00409,"90":0.00409,"92":0.01228,"95":0.00205,"96":0.00818,"97":0.00614,"98":0.00614,"99":0.02046,"100":0.05524,"101":1.34831,_:"13 14 79 80 81 83 85 86 87 88 91 93 94"},E:{"4":0,"13":0.00614,"14":0.02455,"15":0.01432,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01023,"11.1":0.00409,"12.1":0.00409,"13.1":0.0266,"14.1":0.06752,"15.1":0.02455,"15.2-15.3":0.01637,"15.4":0.13913,"15.5":0.02046},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.00615,"7.0-7.1":0.02708,"8.1-8.4":0.00246,"9.0-9.2":0.01354,"9.3":0.1403,"10.0-10.2":0.03077,"10.3":0.35076,"11.0-11.2":0.03323,"11.3-11.4":0.08,"12.0-12.1":0.06277,"12.2-12.5":3.78203,"13.0-13.1":0.04308,"13.2":0.02831,"13.3":0.12923,"13.4-13.7":0.4566,"14.0-14.4":1.67748,"14.5-14.8":0.57229,"15.0-15.1":0.23876,"15.2-15.3":0.58337,"15.4":4.04664},P:{"4":0.31748,"5.0-5.4":0.0107,"6.2-6.4":0.03051,"7.2-7.4":0.09217,"8.2":0.22305,"9.2":0.02048,"10.1":0.04105,"11.1-11.2":0.09217,"12.0":0.02048,"13.0":0.11265,"14.0":0.09217,"15.0":0.05121,"16.0":0.6452},I:{"0":0,"3":0,"4":0.00369,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0086,"4.2-4.3":0.0344,"4.4":0,"4.4.3-4.4.4":0.89189},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00409,"11":0.05524,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":63.2318},S:{"2.5":0},R:{_:"0"},M:{"0":0.15908},Q:{"10.4":0},O:{"0":0.6045},H:{"0":0.37652}}; 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 505a48bf4a05f0..2944dfa7321196 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:{"20":0.00256,"30":0.00256,"34":0.00256,"35":0.0128,"41":0.0128,"42":0.00512,"43":0.00256,"46":0.00512,"47":0.03071,"50":0.00512,"52":0.01535,"57":0.00768,"59":0.00768,"82":0.01535,"84":0.00256,"87":0.00512,"88":0.01535,"89":0.05886,"91":0.0128,"95":0.05118,"96":0.00768,"97":0.01791,"98":0.73443,"99":1.27182,"100":0.06909,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 31 32 33 36 37 38 39 40 44 45 48 49 51 53 54 55 56 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 85 86 90 92 93 94 101 3.5 3.6"},D:{"11":0.00512,"31":0.00512,"33":0.09724,"34":0.00512,"38":0.00768,"40":0.02559,"43":0.08701,"45":0.00256,"46":0.00512,"49":0.01024,"50":0.03327,"53":0.0128,"55":0.00512,"56":0.01791,"58":0.00512,"64":0.01024,"67":0.00256,"68":0.00256,"69":0.01024,"70":0.02047,"72":0.00768,"74":0.00512,"75":0.00512,"79":0.03839,"80":0.04094,"81":0.02815,"83":0.00768,"85":0.00256,"86":0.03583,"87":0.0128,"88":0.00768,"89":0.00768,"90":0.01791,"91":0.01535,"92":0.02559,"93":0.00512,"94":0.0128,"95":0.04606,"96":0.03839,"97":0.05118,"98":0.36338,"99":1.59426,"100":10.93973,"101":0.26358,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 35 36 37 39 41 42 44 47 48 51 52 54 57 59 60 61 62 63 65 66 71 73 76 77 78 84 102 103 104"},F:{"28":0.00512,"36":0.00512,"46":0.00512,"64":0.00512,"67":0.00768,"76":0.00256,"79":0.00768,"80":0.00512,"82":0.01024,"84":0.16122,"85":0.94683,"86":0.02559,_:"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 65 66 68 69 70 71 72 73 74 75 77 78 81 83 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.03071,"14":0.00512,"15":0.00768,"16":0.01024,"17":0.01535,"18":0.0435,"84":0.0128,"85":0.00512,"89":0.01024,"90":0.00768,"91":0.00512,"92":0.02047,"96":0.0128,"97":0.00512,"98":0.0128,"99":0.33267,"100":1.54052,"101":0.00512,_:"13 79 80 81 83 86 87 88 93 94 95"},E:{"4":0,"11":0.00512,"14":0.00768,_:"0 5 6 7 8 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1","13.1":0.00512,"14.1":0.06142,"15.2-15.3":0.00512,"15.4":0.00768},G:{"8":0.00153,"3.2":0,"4.0-4.1":0.08231,"4.2-4.3":0,"5.0-5.1":0.00153,"6.0-6.1":0,"7.0-7.1":0.01595,"8.1-8.4":0.12881,"9.0-9.2":0.0207,"9.3":0.03038,"10.0-10.2":0,"10.3":0.02529,"11.0-11.2":0.00441,"11.3-11.4":0.00611,"12.0-12.1":0.00967,"12.2-12.5":0.14408,"13.0-13.1":0.00662,"13.2":0.00119,"13.3":0.01901,"13.4-13.7":0.03937,"14.0-14.4":0.1395,"14.5-14.8":0.23979,"15.0-15.1":0.06313,"15.2-15.3":0.28154,"15.4":0.43563},P:{"4":0.35089,"5.0-5.4":0.02064,"6.2-6.4":0.1032,"7.2-7.4":0.4541,"8.2":0.02057,"9.2":0.08256,"10.1":0.01032,"11.1-11.2":0.07224,"12.0":0.03086,"13.0":0.11352,"14.0":0.1032,"15.0":0.03096,"16.0":1.03203},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.01444,"4.4":0,"4.4.3-4.4.4":0.0592},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03839,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":61.84187},S:{"2.5":0},R:{_:"0"},M:{"0":0.03721},Q:{"10.4":0},O:{"0":1.75608},H:{"0":11.32781}}; +module.exports={C:{"6":0.00204,"33":0.00204,"35":0.00611,"41":0.00407,"42":0.00204,"46":0.01222,"47":0.00814,"48":0.00611,"49":0.00204,"52":0.01629,"56":0.00407,"57":0.03868,"59":0.00407,"60":0.00407,"61":0.00204,"72":0.00814,"77":0.00204,"82":0.06515,"89":0.08551,"91":0.00814,"95":0.00204,"97":0.00611,"98":0.02443,"99":0.51918,"100":0.87548,"101":0.14863,_:"2 3 4 5 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 36 37 38 39 40 43 44 45 50 51 53 54 55 58 62 63 64 65 66 67 68 69 70 71 73 74 75 76 78 79 80 81 83 84 85 86 87 88 90 92 93 94 96 102 103 3.5 3.6"},D:{"33":0.00407,"35":0.00611,"40":0.03054,"43":0.07737,"44":0.00611,"48":0.01018,"49":0.02647,"50":0.00204,"52":0.00611,"55":0.02443,"56":0.00611,"57":0.01425,"58":0.02036,"60":0.00407,"64":0.00204,"67":0.00407,"68":0.00407,"69":0.02443,"70":0.01832,"72":0.04479,"73":0.00407,"74":0.00611,"75":0.01018,"79":0.03868,"80":0.02036,"83":0.01832,"84":0.03054,"85":0.00407,"86":0.02036,"87":0.0224,"88":0.00814,"89":0.00204,"90":0.00204,"91":0.01425,"92":0.01018,"93":0.01425,"94":0.1242,"95":0.03461,"96":0.10994,"97":0.01425,"98":0.30744,"99":0.21378,"100":2.92573,"101":5.61122,"102":0.21174,"103":0.00814,_:"4 5 6 7 8 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 36 37 38 39 41 42 45 46 47 51 53 54 59 61 62 63 65 66 71 76 77 78 81 104"},F:{"28":0.00611,"36":0.01018,"37":0.00204,"38":0.00407,"62":0.00814,"63":0.00407,"64":0.00407,"82":0.04683,"83":0.00204,"84":0.01629,"85":0.31762,"86":0.34408,"87":0.04886,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.04886,"13":0.01018,"14":0.01222,"15":0.00611,"17":0.01018,"18":0.03054,"84":0.03868,"85":0.01018,"89":0.02036,"90":0.00611,"91":0.00611,"92":0.02647,"96":0.0224,"97":0.00814,"98":0.03054,"99":0.02036,"100":0.1018,"101":1.61048,_:"16 79 80 81 83 86 87 88 93 94 95"},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 13.1 15.1 15.5","12.1":0.01832,"14.1":0.03054,"15.2-15.3":0.01018,"15.4":0.00611},G:{"8":0,"3.2":0,"4.0-4.1":0.0015,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03267,"8.1-8.4":0.0162,"9.0-9.2":0,"9.3":0.0354,"10.0-10.2":0.00313,"10.3":0.03186,"11.0-11.2":0.003,"11.3-11.4":0.0015,"12.0-12.1":0.04112,"12.2-12.5":0.12838,"13.0-13.1":0.00191,"13.2":0.00191,"13.3":0.02696,"13.4-13.7":0.02464,"14.0-14.4":0.13301,"14.5-14.8":0.19006,"15.0-15.1":0.04847,"15.2-15.3":0.26248,"15.4":0.37766},P:{"4":0.52022,"5.0-5.4":0.0204,"6.2-6.4":0.0306,"7.2-7.4":0.55083,"8.2":0.01032,"9.2":0.11221,"10.1":0.04105,"11.1-11.2":0.102,"12.0":0.02064,"13.0":0.11221,"14.0":0.11221,"15.0":0.0306,"16.0":0.76503},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00072,"4.2-4.3":0.02479,"4.4":0,"4.4.3-4.4.4":0.10989},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0224,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":62.56541},S:{"2.5":0},R:{_:"0"},M:{"0":0.03982},Q:{"10.4":0},O:{"0":1.73615},H:{"0":14.86849}}; 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 7f282887b0148d..f1cd906ca9ee07 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:{"48":0.00733,"50":0.00366,"51":0.01465,"52":0.08791,"53":0.01465,"54":0.00733,"55":0.01465,"56":0.01465,"57":0.01099,"58":0.00366,"59":0.01099,"60":0.00733,"66":0.00733,"67":0.00733,"68":0.01465,"69":0.00366,"72":0.00366,"73":0.00366,"78":0.07326,"79":0.00366,"80":0.00366,"81":0.00366,"82":0.00366,"83":0.00366,"84":0.00366,"85":0.00733,"86":0.00366,"87":0.00366,"88":0.02564,"89":0.00733,"90":0.01099,"91":0.10256,"92":0.00733,"93":0.04029,"94":0.09158,"95":0.01465,"96":0.01832,"97":0.03297,"98":0.71429,"99":1.88645,"100":0.00733,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 70 71 74 75 76 77 101 3.5 3.6"},D:{"34":0.00366,"38":0.01832,"39":0.00366,"40":0.00366,"41":0.00366,"42":0.00366,"43":0.00733,"44":0.00366,"45":0.00366,"46":0.01099,"47":0.00733,"48":0.00366,"49":0.11355,"50":0.00366,"51":0.00733,"53":0.00733,"54":0.00366,"55":0.00366,"56":0.00733,"57":0.00733,"58":0.01099,"59":0.00733,"60":0.02564,"61":0.00733,"62":0.00733,"63":0.01099,"64":0.01099,"65":0.01832,"66":0.02564,"67":0.01099,"68":0.01465,"69":0.02198,"70":0.00366,"71":0.00366,"72":0.00733,"73":0.04396,"74":0.01465,"75":0.05495,"76":0.01099,"77":0.00733,"78":0.01465,"79":0.18681,"80":0.0293,"81":0.02564,"83":0.0293,"84":0.05495,"85":0.04396,"86":0.04396,"87":0.07326,"88":0.02198,"89":0.0696,"90":0.03297,"91":0.09524,"92":0.04029,"93":0.07326,"94":0.08059,"95":0.15751,"96":0.13187,"97":0.12088,"98":0.34799,"99":3.93406,"100":17.6813,"101":0.25275,"102":0.00733,_:"4 5 6 7 8 9 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 52 103 104"},F:{"28":0.00366,"36":0.00366,"46":0.00733,"84":0.17582,"85":0.70696,"86":0.01099,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00366,"16":0.00733,"17":0.01099,"18":0.01099,"85":0.00366,"87":0.00366,"89":0.00366,"91":0.00733,"92":0.01465,"95":0.01099,"96":0.00733,"97":0.03663,"98":0.02564,"99":0.41392,"100":2.68498,"101":0.05128,_:"12 13 14 79 80 81 83 84 86 88 90 93 94"},E:{"4":0,"13":0.03297,"14":0.18315,"15":0.08059,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00366,"10.1":0.00733,"11.1":0.0293,"12.1":0.06593,"13.1":0.23077,"14.1":0.53114,"15.1":0.13919,"15.2-15.3":0.15385,"15.4":0.84249},G:{"8":0.00103,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00514,"6.0-6.1":0,"7.0-7.1":0.00617,"8.1-8.4":0.00308,"9.0-9.2":0.00514,"9.3":0.07608,"10.0-10.2":0.01028,"10.3":0.09458,"11.0-11.2":0.01748,"11.3-11.4":0.0329,"12.0-12.1":0.02056,"12.2-12.5":0.42665,"13.0-13.1":0.02056,"13.2":0.00617,"13.3":0.04626,"13.4-13.7":0.13262,"14.0-14.4":0.38758,"14.5-14.8":1.18331,"15.0-15.1":0.4688,"15.2-15.3":3.77095,"15.4":3.56328},P:{"4":0.1777,"5.0-5.4":0.01012,"6.2-6.4":0.11171,"7.2-7.4":0.53632,"8.2":0.01012,"9.2":0.03036,"10.1":0.04048,"11.1-11.2":0.08362,"12.0":0.03136,"13.0":0.10453,"14.0":0.12543,"15.0":0.06272,"16.0":2.4564},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0027,"4.2-4.3":0.00944,"4.4":0,"4.4.3-4.4.4":0.05124},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00733,"9":0.01465,"11":0.25641,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.0507},H:{"0":0.23998},L:{"0":46.87541},S:{"2.5":0},R:{_:"0"},M:{"0":0.29784},Q:{"10.4":0}}; +module.exports={C:{"48":0.00414,"51":0.01241,"52":0.08272,"53":0.01241,"54":0.00414,"55":0.00827,"56":0.01241,"57":0.00827,"59":0.00827,"60":0.01241,"66":0.00414,"67":0.00827,"68":0.01241,"72":0.00827,"78":0.07031,"79":0.00414,"81":0.00414,"82":0.00414,"84":0.00827,"85":0.00827,"86":0.00827,"87":0.00414,"88":0.02895,"89":0.00827,"90":0.00827,"91":0.1034,"92":0.00414,"93":0.07031,"94":0.09099,"95":0.01241,"96":0.01654,"97":0.01654,"98":0.03309,"99":0.52527,"100":2.10109,"101":0.00827,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 58 61 62 63 64 65 69 70 71 73 74 75 76 77 80 83 102 103 3.5 3.6"},D:{"38":0.01241,"43":0.00414,"46":0.00414,"47":0.00414,"49":0.10754,"51":0.00414,"53":0.00827,"56":0.00414,"57":0.00414,"58":0.00827,"60":0.02895,"62":0.00414,"63":0.01241,"64":0.00827,"65":0.01654,"66":0.02895,"67":0.02068,"68":0.01241,"69":0.02068,"70":0.00414,"71":0.00414,"72":0.00827,"73":0.00827,"74":0.01241,"75":0.05377,"76":0.01241,"77":0.00827,"78":0.01241,"79":0.13235,"80":0.02482,"81":0.02895,"83":0.02895,"84":0.05377,"85":0.03722,"86":0.05377,"87":0.09513,"88":0.02068,"89":0.05377,"90":0.03309,"91":0.07445,"92":0.04136,"93":0.04963,"94":0.07445,"95":0.04136,"96":0.1034,"97":0.09099,"98":0.21094,"99":0.3102,"100":4.94252,"101":19.3813,"102":1.51378,"103":0.00827,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 48 50 52 54 55 59 61 104"},F:{"36":0.00414,"46":0.00414,"85":0.6659,"86":0.65349,"87":0.01654,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00414,"17":0.00827,"18":0.01241,"85":0.00414,"86":0.00414,"87":0.00414,"89":0.00414,"91":0.00827,"92":0.01241,"95":0.00827,"96":0.00827,"97":0.01654,"98":0.01241,"99":0.04136,"100":0.17371,"101":3.21781,_:"12 13 14 15 79 80 81 83 84 88 90 93 94"},E:{"4":0,"13":0.03722,"14":0.18612,"15":0.07858,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00414,"10.1":0.00414,"11.1":0.03309,"12.1":0.06618,"13.1":0.23575,"14.1":0.517,"15.1":0.13235,"15.2-15.3":0.12822,"15.4":1.68335,"15.5":0.16544},G:{"8":0.00108,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00323,"6.0-6.1":0,"7.0-7.1":0.00539,"8.1-8.4":0.00323,"9.0-9.2":0.00323,"9.3":0.06465,"10.0-10.2":0.00646,"10.3":0.08081,"11.0-11.2":0.01401,"11.3-11.4":0.03232,"12.0-12.1":0.01401,"12.2-12.5":0.38681,"13.0-13.1":0.01832,"13.2":0.00539,"13.3":0.03879,"13.4-13.7":0.12499,"14.0-14.4":0.34587,"14.5-14.8":1.00312,"15.0-15.1":0.33078,"15.2-15.3":0.84042,"15.4":7.44743},P:{"4":0.12573,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.05239,"12.0":0.02096,"13.0":0.0943,"14.0":0.0943,"15.0":0.05239,"16.0":0.92203},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.04588},A:{"8":0.00414,"9":0.01241,"11":0.24402,_:"6 7 10 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.28142},Q:{"10.4":0},O:{"0":0.03518},H:{"0":0.22758},L:{"0":44.15568},S:{"2.5":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 e31d09edf82c47..f0b4fff11b7f98 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:{"29":0.00777,"30":0.00388,"31":0.00388,"33":0.00388,"34":0.01553,"41":0.00388,"43":0.01165,"47":0.01165,"48":0.00777,"52":0.16697,"60":0.06989,"61":0.00777,"64":0.02718,"65":0.01553,"66":0.00388,"67":0.05048,"68":0.00777,"69":0.00777,"72":0.03106,"77":0.02718,"78":0.00388,"84":0.12814,"86":0.01165,"87":0.00777,"88":0.05436,"89":0.05825,"90":0.00777,"91":0.08931,"92":0.01553,"93":0.00388,"94":0.01165,"95":0.03495,"96":0.07766,"97":0.07766,"98":1.11442,"99":3.88688,"100":0.67564,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 32 35 36 37 38 39 40 42 44 45 46 49 50 51 53 54 55 56 57 58 59 62 63 70 71 73 74 75 76 79 80 81 82 83 85 101 3.5 3.6"},D:{"11":0.0233,"33":0.01553,"38":0.00777,"40":0.05825,"43":0.12814,"44":0.00777,"45":0.00777,"49":0.05048,"50":0.00388,"53":0.00777,"55":0.01165,"56":0.0233,"58":0.00388,"60":0.01165,"63":0.01942,"64":0.01165,"65":0.01553,"67":0.00388,"68":0.01165,"69":0.01165,"70":0.03495,"71":0.01553,"72":0.00777,"73":0.00777,"74":0.00777,"75":0.01165,"76":0.00777,"77":0.00777,"78":0.0233,"79":0.27181,"80":0.08931,"81":0.03883,"83":0.03106,"84":0.01165,"85":0.01165,"86":0.08154,"87":0.06213,"88":0.03495,"89":0.05825,"90":0.12426,"91":0.03495,"92":0.10096,"93":0.04271,"94":0.10872,"95":0.05825,"96":0.15532,"97":0.15144,"98":0.8232,"99":2.7181,"100":16.70467,"101":0.28346,"102":0.20968,"103":0.0466,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 46 47 48 51 52 54 57 59 61 62 66 104"},F:{"28":0.00777,"42":0.00388,"79":0.01165,"82":0.01165,"83":0.00777,"84":0.30676,"85":1.80948,"86":0.02718,_:"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 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 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.03883,"13":0.03106,"14":0.04271,"15":0.00777,"16":0.01165,"17":0.01553,"18":0.07378,"84":0.01165,"85":0.01553,"88":0.00388,"89":0.00777,"90":0.00777,"91":0.00388,"92":0.03883,"95":0.00388,"96":0.07766,"97":0.01165,"98":0.03495,"99":0.39218,"100":2.33368,"101":0.05048,_:"79 80 81 83 86 87 93 94"},E:{"4":0,"13":0.00388,"14":0.01165,"15":0.00388,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00388,"11.1":0.01165,"12.1":0.00777,"13.1":0.01165,"14.1":0.04271,"15.1":0.00777,"15.2-15.3":0.00388,"15.4":0.03495},G:{"8":0.00049,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00074,"6.0-6.1":0.00049,"7.0-7.1":0.12999,"8.1-8.4":0.00346,"9.0-9.2":0.00717,"9.3":0.0813,"10.0-10.2":0.01878,"10.3":0.1416,"11.0-11.2":0.0084,"11.3-11.4":0.05684,"12.0-12.1":0.05906,"12.2-12.5":0.43099,"13.0-13.1":0.00989,"13.2":0.06376,"13.3":0.02521,"13.4-13.7":0.03484,"14.0-14.4":0.18683,"14.5-14.8":0.34697,"15.0-15.1":0.2454,"15.2-15.3":0.34425,"15.4":0.27481},P:{"4":0.52113,"5.0-5.4":0.02085,"6.2-6.4":0.02085,"7.2-7.4":0.19803,"8.2":0.02057,"9.2":0.02085,"10.1":0.01032,"11.1-11.2":0.0938,"12.0":0.01042,"13.0":0.11465,"14.0":0.07296,"15.0":0.05211,"16.0":1.02142},I:{"0":0,"3":0,"4":0.00018,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00141,"4.2-4.3":0.02082,"4.4":0,"4.4.3-4.4.4":0.07547},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00429,"11":0.07725,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":50.94028},S:{"2.5":0},R:{_:"0"},M:{"0":0.08564},Q:{"10.4":0},O:{"0":1.13776},H:{"0":6.07495}}; +module.exports={C:{"29":0.00795,"30":0.00795,"32":0.00398,"34":0.02386,"35":0.00398,"37":0.00795,"38":0.00398,"40":0.01193,"42":0.00398,"43":0.00795,"44":0.00398,"47":0.01988,"48":0.00398,"49":0.00795,"52":0.1829,"57":0.02386,"60":0.05566,"61":0.01193,"64":0.0159,"65":0.01193,"66":0.00795,"67":0.01193,"68":0.0159,"72":0.01988,"77":0.0159,"78":0.00795,"84":0.20278,"87":0.00795,"88":0.03578,"89":0.04771,"91":0.09145,"92":0.00795,"94":0.00795,"95":0.03578,"96":0.02386,"97":0.04771,"98":0.1153,"99":0.95026,"100":4.12311,"101":0.5805,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 33 36 39 41 45 46 50 51 53 54 55 56 58 59 62 63 69 70 71 73 74 75 76 79 80 81 82 83 85 86 90 93 102 103 3.5 3.6"},D:{"11":0.00795,"33":0.01193,"35":0.00398,"37":0.00398,"38":0.01193,"40":0.04771,"43":0.12326,"44":0.01193,"45":0.00795,"49":0.05964,"50":0.0159,"53":0.00398,"55":0.01193,"56":0.01193,"60":0.00398,"63":0.0159,"64":0.00398,"65":0.01988,"66":0.00398,"67":0.00795,"68":0.02386,"69":0.01193,"70":0.02386,"71":0.02386,"72":0.00795,"73":0.00795,"74":0.01193,"75":0.01193,"76":0.00795,"77":0.0159,"78":0.02386,"79":0.34194,"80":0.05169,"81":0.03578,"83":0.05566,"84":0.01193,"85":0.01988,"86":0.0835,"87":0.09542,"88":0.03578,"89":0.05964,"90":0.07157,"91":0.04771,"92":0.05169,"93":0.04771,"94":0.05566,"95":0.05964,"96":0.14711,"97":0.21073,"98":0.78327,"99":0.20675,"100":3.42731,"101":15.05314,"102":1.33594,"103":0.22663,"104":0.02386,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 36 39 41 42 46 47 48 51 52 54 57 58 59 61 62"},F:{"28":0.00398,"36":0.00398,"79":0.02386,"82":0.0159,"83":0.00795,"84":0.01988,"85":0.82303,"86":1.41943,"87":0.0994,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.06759,"13":0.05169,"14":0.0159,"15":0.02386,"16":0.01988,"17":0.0159,"18":0.08747,"84":0.01193,"85":0.00398,"89":0.00795,"90":0.00795,"92":0.04374,"95":0.00795,"96":0.1153,"97":0.01193,"98":0.0159,"99":0.04771,"100":0.15506,"101":2.90248,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"7":0.00398,"14":0.00795,"15":0.00398,_:"0 5 6 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01193,"12.1":0.01193,"13.1":0.01193,"14.1":0.05566,"15.1":0.00398,"15.2-15.3":0.00398,"15.4":0.05169,"15.5":0.00795},G:{"8":0.00159,"3.2":0,"4.0-4.1":0.00091,"4.2-4.3":0.00045,"5.0-5.1":0.00204,"6.0-6.1":0.00136,"7.0-7.1":0.08199,"8.1-8.4":0.00409,"9.0-9.2":0.00977,"9.3":0.05655,"10.0-10.2":0.01408,"10.3":0.11742,"11.0-11.2":0.02158,"11.3-11.4":0.02203,"12.0-12.1":0.03589,"12.2-12.5":0.41996,"13.0-13.1":0.00681,"13.2":0.005,"13.3":0.02998,"13.4-13.7":0.04702,"14.0-14.4":0.13832,"14.5-14.8":0.33524,"15.0-15.1":0.15149,"15.2-15.3":0.21146,"15.4":0.55601},P:{"4":0.52436,"5.0-5.4":0.01049,"6.2-6.4":0.01049,"7.2-7.4":0.23072,"8.2":0.01032,"9.2":0.06292,"10.1":0.04105,"11.1-11.2":0.07341,"12.0":0.01084,"13.0":0.15731,"14.0":0.10487,"15.0":0.05244,"16.0":0.61875},I:{"0":0,"3":0,"4":0.00023,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00139,"4.2-4.3":0.02535,"4.4":0,"4.4.3-4.4.4":0.10556},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07554,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":51.30593},S:{"2.5":0},R:{_:"0"},M:{"0":0.11446},Q:{"10.4":0},O:{"0":1.14456},H:{"0":5.24688}}; 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 9e1b6562e97af2..9aca5f4055de98 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:{"51":0.00601,"52":0.0541,"54":0.00601,"55":0.04208,"59":0.00601,"60":0.01202,"62":0.00601,"64":0.00601,"68":0.00601,"72":0.00601,"74":0.01202,"78":0.28853,"79":0.01202,"80":0.03607,"81":0.04208,"82":0.03006,"83":0.04809,"84":0.01803,"85":0.01202,"86":0.03006,"87":0.01803,"88":0.04208,"89":0.02404,"90":0.02404,"91":0.27651,"92":0.02404,"93":0.04208,"94":0.03607,"95":0.04809,"96":0.03607,"97":0.07213,"98":1.37051,"99":3.93721,"100":0.01803,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 56 57 58 61 63 65 66 67 69 70 71 73 75 76 77 101 3.5 3.6"},D:{"28":0.01202,"38":0.02404,"42":0.01803,"48":0.01803,"49":0.03607,"52":0.03006,"56":0.03006,"58":0.00601,"59":0.00601,"60":0.04208,"61":0.01202,"63":0.02404,"65":0.00601,"66":0.04809,"67":0.01803,"69":0.22241,"70":0.01803,"71":0.00601,"75":0.00601,"76":0.04208,"77":0.01202,"78":0.01803,"79":1.12406,"80":0.49891,"81":0.04208,"83":0.11421,"84":0.29454,"85":0.80547,"86":0.24645,"87":0.33061,"88":0.10219,"89":0.0541,"90":0.07814,"91":0.04809,"92":0.25847,"93":0.15028,"94":2.88528,"95":0.03006,"96":1.55685,"97":0.69127,"98":1.01586,"99":5.34378,"100":23.32869,"101":0.40274,"102":0.00601,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 50 51 53 54 55 57 62 64 68 72 73 74 103 104"},F:{"64":0.00601,"68":0.01803,"69":0.01803,"71":0.01202,"77":0.11421,"78":0.07814,"79":0.11421,"80":0.08415,"81":0.06011,"82":0.00601,"83":0.00601,"84":0.26448,"85":0.84755,"86":0.00601,_:"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 65 66 67 70 72 73 74 75 76 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.04208,"84":0.07213,"85":0.02404,"86":0.02404,"87":0.00601,"89":0.01202,"92":0.02404,"93":0.00601,"95":0.01202,"96":0.04809,"97":0.03006,"98":0.04208,"99":0.6552,"100":4.46016,"101":0.07213,_:"12 13 14 15 16 17 79 80 81 83 88 90 91 94"},E:{"4":0,"9":0.00601,"12":0.01803,"13":0.07213,"14":0.19836,"15":0.12623,_:"0 5 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01202,"10.1":0.01202,"11.1":0.01803,"12.1":0.04809,"13.1":0.28252,"14.1":0.61312,"15.1":0.17432,"15.2-15.3":0.20437,"15.4":1.53882},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.00113,"8.1-8.4":0.01013,"9.0-9.2":0.16768,"9.3":0.04839,"10.0-10.2":0.00788,"10.3":0.0709,"11.0-11.2":0.02476,"11.3-11.4":0.04501,"12.0-12.1":0.03151,"12.2-12.5":0.38712,"13.0-13.1":0.01125,"13.2":0.01238,"13.3":0.04389,"13.4-13.7":0.20931,"14.0-14.4":0.52104,"14.5-14.8":1.28627,"15.0-15.1":0.64595,"15.2-15.3":3.98261,"15.4":3.74178},P:{"4":0.07534,"5.0-5.4":0.01076,"6.2-6.4":0.0102,"7.2-7.4":1.91754,"8.2":0.0204,"9.2":0.01076,"10.1":0.0102,"11.1-11.2":0.04305,"12.0":0.03229,"13.0":0.11839,"14.0":0.13992,"15.0":0.09687,"16.0":2.43245},I:{"0":0,"3":0,"4":0.00226,"2.1":0,"2.2":0.00151,"2.3":0.00151,"4.1":0.00151,"4.2-4.3":0.01132,"4.4":0,"4.4.3-4.4.4":0.03773},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03072,"9":0.03072,"10":0.01229,"11":0.20277,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":24.45936},S:{"2.5":0},R:{_:"0"},M:{"0":0.73398},Q:{"10.4":0},O:{"0":0.18748},H:{"0":0.42675}}; +module.exports={C:{"52":0.03884,"54":0.01295,"55":0.02589,"59":0.01295,"66":0.00647,"68":0.01295,"76":0.01942,"77":0.00647,"78":0.20714,"79":0.05178,"80":0.04531,"81":0.03884,"82":0.05178,"83":0.03884,"84":0.01295,"85":0.00647,"86":0.01942,"87":0.01295,"88":0.03237,"89":0.01942,"90":0.01295,"91":0.22656,"92":0.01942,"93":0.01942,"94":0.02589,"95":0.03237,"96":0.02589,"97":0.03237,"98":0.03884,"99":1.17809,"100":9.54768,"101":0.01942,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 56 57 58 60 61 62 63 64 65 67 69 70 71 72 73 74 75 102 103 3.5 3.6"},D:{"38":0.00647,"42":0.01942,"48":0.00647,"49":0.03237,"52":0.04531,"53":0.00647,"56":0.01295,"59":0.00647,"60":0.05826,"63":0.01295,"65":0.01295,"66":0.05178,"67":0.00647,"69":0.10357,"70":0.01295,"73":0.00647,"75":0.03237,"76":0.02589,"77":0.01942,"78":0.01295,"79":0.7444,"80":0.38191,"81":0.03237,"83":0.15535,"84":0.28481,"85":0.29129,"86":0.32365,"87":0.36896,"88":0.01295,"89":0.03884,"90":0.03237,"91":0.03884,"92":0.14888,"93":0.12946,"94":0.20714,"95":0.02589,"96":1.16514,"97":0.55021,"98":0.479,"99":0.55021,"100":8.70619,"101":23.21218,"102":2.03252,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 50 51 54 55 57 58 61 62 64 68 71 72 74 103 104"},F:{"68":0.00647,"70":0.00647,"71":0.01942,"72":0.01942,"77":0.05178,"78":0.03237,"79":0.04531,"80":0.03884,"81":0.02589,"84":0.00647,"85":0.61494,"86":0.62141,"87":0.01942,_:"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 73 74 75 76 82 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.00647,"17":0.01295,"18":0.03237,"84":0.06473,"85":0.03884,"86":0.01942,"92":0.01942,"95":0.01942,"96":0.0712,"97":0.01295,"98":0.01942,"99":0.0712,"100":0.38838,"101":4.8677,_:"12 13 14 16 79 80 81 83 87 88 89 90 91 93 94"},E:{"4":0,"13":0.05178,"14":0.16183,"15":0.07768,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00647,"10.1":0.01295,"11.1":0.01942,"12.1":0.03237,"13.1":0.20714,"14.1":0.43369,"15.1":0.11651,"15.2-15.3":0.36896,"15.4":1.82539,"15.5":0.24597},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.00421,"9.0-9.2":0.12957,"9.3":0.04424,"10.0-10.2":0.00421,"10.3":0.0632,"11.0-11.2":0.01685,"11.3-11.4":0.0474,"12.0-12.1":0.01685,"12.2-12.5":0.30233,"13.0-13.1":0.01264,"13.2":0.01159,"13.3":0.04424,"13.4-13.7":0.18961,"14.0-14.4":0.50037,"14.5-14.8":0.97545,"15.0-15.1":0.43822,"15.2-15.3":0.99125,"15.4":6.73231},P:{"4":0.06445,"5.0-5.4":0.02148,"6.2-6.4":0.03059,"7.2-7.4":1.95808,"8.2":0.01032,"9.2":0.05099,"10.1":0.0102,"11.1-11.2":0.04297,"12.0":0.03223,"13.0":0.08594,"14.0":0.08594,"15.0":0.06445,"16.0":0.88085},I:{"0":0,"3":0,"4":0.00388,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00155,"4.2-4.3":0.00621,"4.4":0,"4.4.3-4.4.4":0.02716},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03377,"9":0.02702,"10":0.01351,"11":0.23641,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":21.43},S:{"2.5":0},R:{_:"0"},M:{"0":0.62781},Q:{"10.4":0.00353},O:{"0":0.15872},H:{"0":0.34393}}; 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 fd5af5c7b38cd0..f5be8a3225c443 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:{"29":0.00664,"34":0.00332,"47":0.01328,"52":0.03319,"65":0.0697,"78":0.00996,"81":0.00996,"87":0.00332,"88":0.02323,"90":0.00332,"91":0.07634,"94":0.00664,"95":0.03651,"96":0.00332,"97":0.01328,"98":0.48457,"99":1.7292,"100":0.15931,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 89 92 93 101 3.5 3.6"},D:{"38":0.00332,"39":0.04647,"45":0.00332,"49":0.01991,"53":0.01328,"65":0.02987,"67":0.00664,"68":0.01328,"70":0.00664,"71":0.00332,"73":0.00996,"75":0.02323,"76":0.00996,"77":0.00996,"78":0.00332,"79":0.04315,"80":0.00664,"81":0.00996,"83":0.04979,"84":0.00664,"85":0.00332,"86":0.00996,"87":0.16927,"88":0.02987,"89":0.04315,"90":0.00332,"91":0.02323,"92":0.03983,"93":0.01328,"94":0.03983,"95":0.0166,"96":0.06638,"97":0.14604,"98":0.15931,"99":3.94629,"100":16.62819,"101":0.19582,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 69 72 74 102 103 104"},F:{"28":0.00332,"84":0.04647,"85":0.34518,_:"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 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.00664,"13":0.00664,"14":0.00996,"15":0.01328,"16":0.00996,"17":0.0166,"18":0.04315,"80":0.0166,"84":0.04647,"85":0.04647,"86":0.00332,"89":0.08629,"90":0.00664,"91":0.00332,"92":0.0166,"93":0.00332,"94":0.0166,"95":0.0166,"96":0.02655,"97":0.01991,"98":0.04315,"99":0.48126,"100":3.09331,"101":0.03651,_:"79 81 83 87 88"},E:{"4":0,"6":0.00332,"13":0.04647,"14":0.09957,"15":0.03983,_:"0 5 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00996,"11.1":0.00332,"12.1":0.01328,"13.1":0.14272,"14.1":0.15599,"15.1":0.08298,"15.2-15.3":0.08629,"15.4":0.24229},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00237,"6.0-6.1":0.00297,"7.0-7.1":0.17566,"8.1-8.4":0.00059,"9.0-9.2":0,"9.3":0.09317,"10.0-10.2":0.00297,"10.3":0.0902,"11.0-11.2":0.02374,"11.3-11.4":0.00415,"12.0-12.1":0.04095,"12.2-12.5":0.4623,"13.0-13.1":0.00534,"13.2":0.00237,"13.3":0.13293,"13.4-13.7":0.04807,"14.0-14.4":0.59582,"14.5-14.8":0.66288,"15.0-15.1":0.38634,"15.2-15.3":1.65217,"15.4":1.54772},P:{"4":0.23459,"5.0-5.4":0.02085,"6.2-6.4":0.0102,"7.2-7.4":1.91754,"8.2":0.0204,"9.2":0.0816,"10.1":0.0102,"11.1-11.2":0.59158,"12.0":0.0714,"13.0":0.70378,"14.0":0.94857,"15.0":0.62218,"16.0":5.30385},I:{"0":0,"3":0,"4":0.00171,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00128,"4.2-4.3":0.00128,"4.4":0,"4.4.3-4.4.4":0.02912},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00853,"11":0.08108,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":50.99866},S:{"2.5":0},R:{_:"0"},M:{"0":0.11358},Q:{"10.4":0},O:{"0":1.32952},H:{"0":0.48704}}; +module.exports={C:{"30":0.00325,"47":0.0065,"52":0.02599,"65":0.03249,"66":0.0065,"78":0.04549,"87":0.0065,"88":0.00975,"89":0.00325,"91":0.05848,"95":0.03899,"98":0.00975,"99":0.41262,"100":1.53678,"101":0.08123,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 90 92 93 94 96 97 102 103 3.5 3.6"},D:{"39":0.02274,"47":0.0065,"49":0.02599,"53":0.04874,"54":0.0065,"56":0.0065,"63":0.00325,"65":0.00325,"66":0.00325,"68":0.06498,"69":0.00975,"74":0.013,"75":0.01949,"76":0.01949,"77":0.13971,"78":0.0065,"79":0.02274,"80":0.0065,"81":0.00975,"83":0.02599,"84":0.00975,"85":0.08447,"86":0.00975,"87":0.04224,"88":0.01625,"89":0.02274,"90":0.013,"91":0.01625,"92":0.01949,"93":0.01949,"94":0.04874,"95":0.0065,"96":0.07473,"97":0.06498,"98":0.05848,"99":0.23718,"100":4.071,"101":14.4613,"102":1.54977,"103":0.02274,"104":0.00975,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 48 50 51 52 55 57 58 59 60 61 62 64 67 70 71 72 73"},F:{"28":0.013,"36":0.00325,"85":0.06823,"86":0.6368,"87":0.04224,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00325,"13":0.0065,"14":0.00975,"15":0.013,"16":0.00975,"17":0.01625,"18":0.1592,"80":0.0065,"84":0.02274,"85":0.02274,"88":0.00325,"89":0.04224,"90":0.00325,"92":0.01625,"94":0.0065,"95":0.0065,"96":0.03249,"97":0.00975,"98":0.02599,"99":0.08123,"100":0.22743,"101":2.7519,_:"79 81 83 86 87 91 93"},E:{"4":0,"12":0.00325,"13":0.05523,"14":0.37688,"15":0.013,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01949,"11.1":0.0065,"12.1":0.02924,"13.1":0.12346,"14.1":0.13321,"15.1":0.08447,"15.2-15.3":0.04224,"15.4":0.57182,"15.5":0.04549},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00231,"6.0-6.1":0.00751,"7.0-7.1":0.08372,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07391,"10.0-10.2":0.01039,"10.3":0.07044,"11.0-11.2":0.00635,"11.3-11.4":0.0052,"12.0-12.1":0.05139,"12.2-12.5":0.59297,"13.0-13.1":0.00635,"13.2":0.00808,"13.3":0.07391,"13.4-13.7":0.08026,"14.0-14.4":0.4365,"14.5-14.8":0.47692,"15.0-15.1":0.26098,"15.2-15.3":0.48616,"15.4":3.03877},P:{"4":0.27535,"5.0-5.4":0.07142,"6.2-6.4":0.03059,"7.2-7.4":1.95808,"8.2":0.01032,"9.2":0.05099,"10.1":0.0102,"11.1-11.2":0.86686,"12.0":0.07139,"13.0":0.34674,"14.0":0.74448,"15.0":0.50992,"16.0":2.56998},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00063,"4.2-4.3":0.00063,"4.4":0,"4.4.3-4.4.4":0.01899},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01733,"11":0.06065,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":52.24024},S:{"2.5":0},R:{_:"0"},M:{"0":0.39156},Q:{"10.4":0},O:{"0":1.12067},H:{"0":0.55605}}; 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 d7204d0321959d..d3b86df6c0ffa2 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:{"48":0.00897,"52":0.0314,"61":0.30056,"78":1.33683,"84":0.04037,"87":0.0628,"91":0.04037,"92":0.02243,"94":0.0628,"95":0.04037,"97":0.24673,"98":1.3458,"99":4.72376,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 88 89 90 93 96 100 101 3.5 3.6"},D:{"49":0.46654,"62":0.00897,"84":0.20636,"86":0.02243,"94":0.07178,"96":0.12561,"97":0.05383,"98":0.0314,"99":2.91141,"100":18.78288,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 85 87 88 89 90 91 92 93 95 101 102 103 104"},F:{"31":0.00897,"52":0.02243,"73":0.00897,"83":0.00897,"84":0.02243,"85":0.84785,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 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.00897,"13":0.00897,"16":0.0628,"18":0.37234,"84":0.05383,"87":0.07178,"90":0.00897,"92":0.00897,"93":0.02243,"95":0.10318,"96":0.08075,"97":0.08075,"98":0.09421,"99":0.29159,"100":4.46357,"101":0.00897,_:"14 15 17 79 80 81 83 85 86 88 89 91 94"},E:{"4":0,"13":0.68187,"14":0.02243,"15":0.0628,_:"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.0314,"12.1":0.00897,"13.1":0.05383,"14.1":0.17495,"15.1":0.56972,"15.2-15.3":0.63253,"15.4":1.81234},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.01703,"9.3":0.36985,"10.0-10.2":0,"10.3":0.00852,"11.0-11.2":0,"11.3-11.4":0.01703,"12.0-12.1":0.03406,"12.2-12.5":3.7532,"13.0-13.1":0,"13.2":0.02555,"13.3":0,"13.4-13.7":0.02555,"14.0-14.4":0.11801,"14.5-14.8":0.66305,"15.0-15.1":0.54504,"15.2-15.3":2.96363,"15.4":3.62668},P:{"4":0.52113,"5.0-5.4":0.02085,"6.2-6.4":0.02085,"7.2-7.4":0.19803,"8.2":0.01025,"9.2":0.01025,"10.1":0.03076,"11.1-11.2":0.06152,"12.0":0.04101,"13.0":0.12303,"14.0":0.16405,"15.0":0.05211,"16.0":4.55226},I:{"0":0,"3":0,"4":0.00802,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00046,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03562},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.54318,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":24.08385},S:{"2.5":0},R:{_:"0"},M:{"0":0.83798},Q:{"10.4":0},O:{"0":13.74942},H:{"0":0.07307}}; +module.exports={C:{"43":0.0173,"52":0.00865,"67":0.00865,"78":1.31017,"88":0.0173,"91":0.00865,"94":0.0173,"97":0.11675,"98":0.09513,"99":0.9729,"100":6.01036,"101":0.04756,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 95 96 102 103 3.5 3.6"},D:{"49":0.54915,"62":0.00865,"86":0.08648,"96":0.07783,"99":0.24214,"100":4.19428,"101":16.15014,"102":2.12741,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 97 98 103 104"},F:{"73":0.03027,"85":0.72211,"86":0.15566,"87":0.09513,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 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:{"14":0.06918,"16":0.07783,"17":0.1254,"18":0.36754,"84":0.00865,"85":0.0173,"88":0.0173,"90":0.03027,"91":0.10378,"92":0.00865,"95":0.13404,"97":0.00865,"99":0.03892,"100":0.7394,"101":4.57912,_:"12 13 15 79 80 81 83 86 87 89 93 94 96 98"},E:{"4":0,"12":0.05621,"13":0.8475,"15":0.00865,_:"0 5 6 7 8 9 10 11 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.05621,"12.1":0.00865,"13.1":0.03027,"14.1":0.32862,"15.1":0.03892,"15.2-15.3":0.11675,"15.4":0.60536,"15.5":0.17296},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.16462,"10.0-10.2":0,"10.3":0.01485,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00743,"12.2-12.5":3.37647,"13.0-13.1":0,"13.2":0.00743,"13.3":0,"13.4-13.7":0.02971,"14.0-14.4":0.19432,"14.5-14.8":0.50127,"15.0-15.1":0.12006,"15.2-15.3":1.93949,"15.4":6.02022},P:{"4":0.52436,"5.0-5.4":0.07142,"6.2-6.4":0.01049,"7.2-7.4":0.04081,"8.2":0.01032,"9.2":0.02041,"10.1":0.03061,"11.1-11.2":0.02041,"12.0":0.01084,"13.0":0.02041,"14.0":8.64181,"15.0":0.05244,"16.0":1.60185},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:{"10":0.00865,"11":0.42375,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":21.92547},S:{"2.5":0},R:{_:"0"},M:{"0":0.914},Q:{"10.4":0},O:{"0":8.91289},H:{"0":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 de4103c48e45ed..b6c0a4898b93ec 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:{"77":0.01121,"78":0.01121,"83":0.02242,"89":0.01682,"91":0.02242,"98":0.86317,"99":1.96736,"100":0.24102,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 79 80 81 82 84 85 86 87 88 90 92 93 94 95 96 97 101 3.5 3.6"},D:{"33":0.28586,"48":0.01682,"49":0.1121,"68":0.01121,"70":0.02803,"77":0.01682,"79":0.10089,"81":0.02242,"84":0.01682,"87":0.02242,"90":0.1121,"91":0.03363,"92":0.4484,"93":0.81833,"95":0.02242,"96":0.03363,"97":0.02803,"98":0.16255,"99":4.484,"100":22.74509,"101":0.31949,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 71 72 73 74 75 76 78 80 83 85 86 88 89 94 102 103 104"},F:{"28":0.03924,"85":0.03363,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.07287,"86":0.13452,"92":0.06726,"94":0.03363,"98":0.02242,"99":1.16024,"100":12.48794,"101":0.05605,_:"12 13 14 15 16 18 79 80 81 83 84 85 87 88 89 90 91 93 95 96 97"},E:{"4":0,"11":0.04484,"13":0.02242,"14":0.43159,"15":0.01121,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.22981,"13.1":0.72305,"14.1":0.1121,"15.1":0.11771,"15.2-15.3":1.36202,"15.4":0.38114},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.02327,"10.0-10.2":0,"10.3":0.00776,"11.0-11.2":0.01164,"11.3-11.4":0.02327,"12.0-12.1":0.04655,"12.2-12.5":1.6302,"13.0-13.1":0,"13.2":0,"13.3":0.04267,"13.4-13.7":0.77098,"14.0-14.4":0.4975,"14.5-14.8":2.17716,"15.0-15.1":0.74673,"15.2-15.3":2.13061,"15.4":1.59141},P:{"4":0.11895,"5.0-5.4":0.06035,"6.2-6.4":0.01062,"7.2-7.4":0.66926,"8.2":0.01006,"9.2":0.03061,"10.1":0.09052,"11.1-11.2":0.35057,"12.0":0.06122,"13.0":0.01062,"14.0":0.02125,"15.0":0.10623,"16.0":0.81799},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:{"11":0.1065,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00879,_:"11"},L:{"0":34.7284},S:{"2.5":0},R:{_:"0"},M:{"0":0.05274},Q:{"10.4":0},O:{"0":0.15383},H:{"0":0.1914}}; +module.exports={C:{"78":0.01053,"89":0.02105,"91":0.01579,"94":0.01053,"96":0.2421,"98":0.1,"99":1.63153,"100":3.11043,"101":0.20526,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 95 97 102 103 3.5 3.6"},D:{"33":0.09473,"49":0.09473,"76":0.38946,"78":0.01053,"79":0.24736,"84":0.01579,"87":0.01053,"88":0.01053,"90":0.01579,"91":0.01053,"93":0.41578,"96":0.02105,"97":0.07368,"98":0.15263,"99":0.5684,"100":5.18406,"101":17.11528,"102":1.78416,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 80 81 83 85 86 89 92 94 95 103 104"},F:{"85":0.15263,"86":0.33157,"87":0.01053,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01053,"15":0.01579,"16":0.01579,"17":0.09473,"86":0.07368,"90":0.02105,"92":0.06842,"96":0.02105,"97":0.05789,"98":0.03158,"99":0.11052,"100":0.71051,"101":14.29431,_:"13 14 18 79 80 81 83 84 85 87 88 89 91 93 94 95"},E:{"4":0,"14":0.6684,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3","11.1":0.01053,"12.1":0.03684,"13.1":0.30525,"14.1":0.1421,"15.1":0.03158,"15.4":0.33683,"15.5":0.05263},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.05933,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.42956,"10.0-10.2":0,"10.3":0.00712,"11.0-11.2":0.00712,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.78586,"13.0-13.1":0,"13.2":0.00712,"13.3":0.03797,"13.4-13.7":0.31445,"14.0-14.4":0.5411,"14.5-14.8":1.25188,"15.0-15.1":0.77486,"15.2-15.3":1.33495,"15.4":5.31486},P:{"4":0.0945,"5.0-5.4":0.04028,"6.2-6.4":0.0705,"7.2-7.4":0.05365,"8.2":0.01019,"9.2":0.03219,"10.1":0.06042,"11.1-11.2":0.11803,"12.0":0.01073,"13.0":0.021,"14.0":0.08584,"15.0":0.02146,"16.0":0.31116},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:{"11":0.01579,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.06158},Q:{"10.4":0},O:{"0":0.14685},H:{"0":0.2063},L:{"0":37.22893},S:{"2.5":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 26a3a87dbf39a4..b946cdae208bac 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:{"78":0.06938,"91":0.07979,"97":0.00694,"98":0.22549,"99":0.72849,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 100 101 3.5 3.6"},D:{"49":0.01041,"73":0.00347,"79":0.00694,"83":0.01388,"86":0.00694,"87":0.00694,"88":0.01735,"90":0.00694,"91":0.00694,"92":0.07632,"96":0.02775,"97":0.05897,"98":0.22202,"99":2.2722,"100":5.38736,"101":0.04163,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 84 85 89 93 94 95 102 103 104"},F:{"83":0.00347,"84":0.05897,"85":0.10754,_:"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 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.03816,"91":0.01735,"95":0.02428,"98":0.00694,"99":0.36078,"100":1.54717,"101":0.02081,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 92 93 94 96 97"},E:{"4":0,"12":0.00694,"13":0.01041,"14":0.31568,"15":0.01388,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01735,"12.1":0.03816,"13.1":0.10754,"14.1":0.43709,"15.1":1.16212,"15.2-15.3":1.39454,"15.4":11.57605},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.06624,"10.0-10.2":0.01807,"10.3":0.06022,"11.0-11.2":0,"11.3-11.4":0.01204,"12.0-12.1":0,"12.2-12.5":0.19271,"13.0-13.1":0,"13.2":0,"13.3":0.02409,"13.4-13.7":0.06624,"14.0-14.4":0.53596,"14.5-14.8":0.84911,"15.0-15.1":1.80661,"15.2-15.3":23.37753,"15.4":33.18742},P:{"4":0.52113,"5.0-5.4":0.02085,"6.2-6.4":0.02085,"7.2-7.4":0.19803,"8.2":0.02057,"9.2":0.02085,"10.1":0.01032,"11.1-11.2":0.0938,"12.0":0.01042,"13.0":0.0212,"14.0":0.07296,"15.0":0.05211,"16.0":0.79517},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:{"11":0.12835,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":4.27697},S:{"2.5":0},R:{_:"0"},M:{"0":0.07837},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"48":0.00364,"78":0.10929,"91":0.08379,"99":0.16029,"100":0.60474,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 101 102 103 3.5 3.6"},D:{"38":0.00364,"49":0.01457,"67":0.01093,"71":0.01822,"79":0.00729,"83":0.00729,"84":0.00364,"87":0.0255,"88":0.00729,"90":0.00729,"91":0.0255,"92":0.02914,"96":0.05465,"97":0.01822,"98":0.04007,"99":0.14936,"100":1.83607,"101":7.39529,"102":0.53188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 72 73 74 75 76 77 78 80 81 85 86 89 93 94 95 103 104"},F:{"85":0.15301,"86":0.20401,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00364,"87":0.00364,"91":0.00729,"94":0.01457,"95":0.02186,"98":0.00729,"99":0.00729,"100":0.10929,"101":1.74135,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 88 89 90 92 93 96 97"},E:{"4":0,"13":0.01822,"14":0.54281,"15":0.03279,_:"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.18579,"12.1":0.00364,"13.1":0.07286,"14.1":0.36066,"15.1":0.57559,"15.2-15.3":0.71403,"15.4":15.79969,"15.5":2.04737},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.02909,"10.0-10.2":0.01164,"10.3":0.07564,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00582,"12.2-12.5":0.21529,"13.0-13.1":0,"13.2":0,"13.3":0.00582,"13.4-13.7":0.03491,"14.0-14.4":0.56442,"14.5-14.8":0.96591,"15.0-15.1":1.34994,"15.2-15.3":4.00327,"15.4":50.87301},P:{"4":0.52436,"5.0-5.4":0.01049,"6.2-6.4":0.01049,"7.2-7.4":0.23072,"8.2":0.01032,"9.2":0.06292,"10.1":0.04105,"11.1-11.2":0.07341,"12.0":0.01084,"13.0":0.15731,"14.0":0.10487,"15.0":0.05244,"16.0":0.3846},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:{"11":0.06557,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":4.61812},S:{"2.5":0},R:{_:"0"},M:{"0":0.08264},Q:{"10.4":0},O:{"0":0},H:{"0":0.01204}}; 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 9acfb07e5fe7c8..de3b60b0bfd606 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:{"45":0.01406,"47":0.02344,"48":0.02813,"51":0.01406,"52":0.11251,"53":0.01406,"54":0.00938,"55":0.01406,"56":0.01406,"57":0.00938,"58":0.00469,"59":0.01875,"60":0.00938,"66":0.00469,"68":0.02813,"72":0.00469,"75":0.00469,"77":0.00938,"78":0.22034,"79":0.01406,"80":0.01875,"81":0.48286,"82":0.01875,"83":0.01406,"84":0.02344,"85":0.00938,"86":0.00938,"87":0.00938,"88":0.02813,"89":0.02813,"90":0.03282,"91":0.35629,"92":0.00938,"93":0.02344,"94":0.0375,"95":0.02813,"96":0.02813,"97":0.08907,"98":1.60798,"99":4.55674,"100":0.01406,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 50 61 62 63 64 65 67 69 70 71 73 74 76 101 3.6","3.5":0.00938},D:{"24":0.00469,"28":0.03282,"38":0.00469,"39":0.00469,"41":0.00938,"44":0.00938,"45":0.00469,"46":0.00469,"47":0.00469,"48":0.00469,"49":0.13126,"50":0.00938,"51":0.02344,"52":0.02813,"53":0.00469,"54":0.0797,"55":0.00469,"56":0.01406,"57":0.00469,"58":0.01406,"59":0.00469,"60":0.14533,"61":0.00469,"62":0.00938,"63":0.01406,"64":0.04688,"65":0.01875,"66":0.07032,"67":0.02344,"69":0.02344,"70":0.00938,"71":0.02344,"72":0.00938,"73":0.00469,"74":0.00938,"75":0.01875,"76":0.01875,"77":0.01406,"78":0.02344,"79":0.09845,"80":0.06563,"81":0.04219,"83":0.08438,"84":0.15939,"85":0.16877,"86":0.18283,"87":0.29066,"88":0.0375,"89":0.06094,"90":0.03282,"91":0.04688,"92":0.04688,"93":0.1172,"94":0.20158,"95":0.06563,"96":0.17814,"97":0.17814,"98":0.30941,"99":4.09262,"100":17.48155,"101":0.25315,"102":0.00469,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 29 30 31 32 33 34 35 36 37 40 42 43 68 103 104"},F:{"28":0.00469,"68":0.00469,"70":0.00938,"71":0.00938,"72":0.00938,"83":0.00469,"84":0.21565,"85":0.78758,"86":0.01406,_:"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 73 74 75 76 77 78 79 80 81 82 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00469,"17":0.01875,"18":0.0375,"83":0.00469,"84":0.01406,"85":0.01406,"86":0.01875,"87":0.00938,"88":0.00469,"89":0.00938,"90":0.00469,"91":0.00938,"92":0.01406,"94":0.00938,"95":0.00938,"96":0.07501,"97":0.07032,"98":0.05626,"99":0.77352,"100":4.70206,"101":0.07501,_:"12 13 14 15 79 80 81 93"},E:{"4":0,"12":0.00469,"13":0.07501,"14":0.27659,"15":0.11251,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00469,"9.1":0.01406,"10.1":0.01875,"11.1":0.0797,"12.1":0.12189,"13.1":0.41254,"14.1":0.79227,"15.1":0.22502,"15.2-15.3":0.24846,"15.4":1.0923},G:{"8":0.00604,"3.2":0,"4.0-4.1":0.00302,"4.2-4.3":0,"5.0-5.1":0.00302,"6.0-6.1":0.00151,"7.0-7.1":0.00906,"8.1-8.4":0.00453,"9.0-9.2":0.01962,"9.3":0.12075,"10.0-10.2":0.03019,"10.3":0.13283,"11.0-11.2":0.05736,"11.3-11.4":0.04226,"12.0-12.1":0.03472,"12.2-12.5":0.67622,"13.0-13.1":0.05434,"13.2":0.01358,"13.3":0.08604,"13.4-13.7":0.28377,"14.0-14.4":0.66414,"14.5-14.8":1.90488,"15.0-15.1":0.77131,"15.2-15.3":5.33428,"15.4":4.83014},P:{"4":0.10579,"5.0-5.4":0.02116,"6.2-6.4":0.0102,"7.2-7.4":0.01058,"8.2":0.0204,"9.2":0.03174,"10.1":0.0102,"11.1-11.2":0.07405,"12.0":0.03174,"13.0":0.12695,"14.0":0.11637,"15.0":0.08463,"16.0":2.97265},I:{"0":0,"3":0,"4":0.00372,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00465,"4.2-4.3":0.00558,"4.4":0,"4.4.3-4.4.4":0.06044},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01442,"9":0.02883,"10":0.00961,"11":0.33156,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":31.19545},S:{"2.5":0},R:{_:"0"},M:{"0":0.6535},Q:{"10.4":0},O:{"0":0.4888},H:{"0":0.43761}}; +module.exports={C:{"45":0.05911,"47":0.01819,"48":0.02274,"52":0.08185,"56":0.00909,"59":0.01364,"60":0.00909,"61":0.00455,"65":0.00455,"68":0.02728,"72":0.00455,"75":0.00455,"77":0.00909,"78":0.20007,"79":0.01819,"80":0.02274,"81":0.29556,"82":0.01819,"83":0.01364,"84":0.01819,"86":0.00455,"87":0.00455,"88":0.02274,"89":0.01819,"90":0.01819,"91":0.35921,"92":0.00909,"93":0.02274,"94":0.03638,"95":0.01819,"96":0.01819,"97":0.05002,"98":0.06366,"99":1.12766,"100":4.64703,"101":0.01364,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 50 51 53 54 55 57 58 62 63 64 66 67 69 70 71 73 74 76 85 102 103 3.5 3.6"},D:{"38":0.00455,"44":0.00455,"48":0.00455,"49":0.10458,"50":0.00909,"51":0.02728,"52":0.02728,"54":0.06821,"56":0.00455,"58":0.00909,"60":0.12277,"63":0.01364,"64":0.02274,"65":0.01364,"66":0.05456,"67":0.02274,"69":0.01819,"70":0.00909,"71":0.01819,"72":0.00455,"74":0.00909,"75":0.00909,"76":0.01364,"77":0.01364,"78":0.02274,"79":0.09094,"80":0.06366,"81":0.03183,"83":0.10458,"84":0.18188,"85":0.16824,"86":0.18643,"87":0.24554,"88":0.03183,"89":0.05911,"90":0.02274,"91":0.04092,"92":0.04547,"93":0.09094,"94":0.1455,"95":0.05911,"96":0.1455,"97":0.19097,"98":0.16369,"99":0.26827,"100":4.9335,"101":16.16004,"102":0.94578,"103":0.00909,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 45 46 47 53 55 57 59 61 62 68 73 104"},F:{"28":0.00455,"68":0.00909,"69":0.00455,"70":0.00909,"71":0.00909,"72":0.00455,"85":0.62749,"86":0.58202,"87":0.02274,_:"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 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:{"16":0.00455,"17":0.01819,"18":0.04092,"83":0.00455,"84":0.01364,"85":0.01364,"86":0.01364,"87":0.00455,"89":0.00909,"91":0.00909,"92":0.00909,"94":0.00455,"95":0.00455,"96":0.06821,"97":0.02728,"98":0.02274,"99":0.07275,"100":0.31374,"101":4.81073,_:"12 13 14 15 79 80 81 88 90 93"},E:{"4":0,"12":0.00909,"13":0.05002,"14":0.2228,"15":0.10003,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00909,"10.1":0.02274,"11.1":0.06366,"12.1":0.11368,"13.1":0.37285,"14.1":0.65932,"15.1":0.17733,"15.2-15.3":0.17733,"15.4":1.85972,"15.5":0.16824},G:{"8":0.00493,"3.2":0,"4.0-4.1":0.00658,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00164,"7.0-7.1":0.00658,"8.1-8.4":0.00493,"9.0-9.2":0.02302,"9.3":0.11181,"10.0-10.2":0.01973,"10.3":0.11509,"11.0-11.2":0.0411,"11.3-11.4":0.04275,"12.0-12.1":0.0296,"12.2-12.5":0.61328,"13.0-13.1":0.05097,"13.2":0.01151,"13.3":0.07728,"13.4-13.7":0.24498,"14.0-14.4":0.62973,"14.5-14.8":1.69681,"15.0-15.1":0.56231,"15.2-15.3":1.4288,"15.4":10.71191},P:{"4":0.08394,"5.0-5.4":0.01049,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.02099,"9.2":0.03148,"11.1-11.2":0.06296,"12.0":0.03148,"13.0":0.10493,"14.0":0.10493,"15.0":0.07345,"16.0":1.20668},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00436,"4.2-4.3":0.01091,"4.4":0,"4.4.3-4.4.4":0.06107},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00939,"9":0.02347,"10":0.00469,"11":0.25346,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":33.15677},S:{"2.5":0},R:{_:"0"},M:{"0":0.59983},Q:{"10.4":0},O:{"0":0.49077},H:{"0":0.43882}}; 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 0a40d7f7b9e601..9870351d9c3e0b 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:{"47":0.02366,"52":0.03718,"54":0.02704,"72":0.00676,"78":0.01352,"91":0.03718,"93":0.00338,"94":0.00676,"95":0.0338,"96":0.01014,"97":0.01014,"98":0.43602,"99":2.12264,"100":0.00338,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 101 3.5 3.6"},D:{"22":0.06422,"47":0.00676,"49":0.00338,"63":0.0507,"65":0.00676,"69":0.02366,"70":0.02028,"72":0.00338,"73":0.10478,"74":0.01352,"75":0.01352,"76":0.0676,"79":0.31434,"80":0.00338,"81":0.03042,"83":0.00676,"84":0.11492,"85":0.00676,"86":0.01352,"87":0.02366,"88":0.00676,"89":0.00676,"90":0.00676,"91":0.0169,"92":0.07436,"93":0.01352,"94":0.02366,"95":0.04732,"96":0.2366,"97":0.08112,"98":0.1014,"99":2.88314,"100":15.8522,"101":0.1859,"102":0.0169,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 71 77 78 103 104"},F:{"28":0.01014,"36":0.00338,"46":0.0338,"77":0.00338,"79":0.00338,"84":0.18928,"85":1.88942,"86":0.00676,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 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.01014,"13":0.01014,"14":0.00676,"16":0.00338,"17":0.02028,"18":0.0338,"84":0.00676,"89":0.00338,"91":0.00338,"92":0.01014,"93":0.00676,"95":0.00676,"96":0.00676,"97":0.01014,"98":0.03718,"99":0.45292,"100":2.74118,"101":0.0169,_:"15 79 80 81 83 85 86 87 88 90 94"},E:{"4":0,"11":0.00676,"13":0.00338,"14":0.0169,"15":0.00676,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00338,"11.1":0.0338,"12.1":0.01352,"13.1":0.03042,"14.1":0.0338,"15.1":0.02366,"15.2-15.3":0.02028,"15.4":0.14872},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.06911,"6.0-6.1":0.00087,"7.0-7.1":0.03149,"8.1-8.4":0.00087,"9.0-9.2":0,"9.3":0.02537,"10.0-10.2":0.00262,"10.3":0.06824,"11.0-11.2":0.40068,"11.3-11.4":0.00437,"12.0-12.1":0.08399,"12.2-12.5":3.03574,"13.0-13.1":0.007,"13.2":0.00525,"13.3":0.00962,"13.4-13.7":0.02712,"14.0-14.4":0.4523,"14.5-14.8":0.63164,"15.0-15.1":0.45405,"15.2-15.3":1.93342,"15.4":1.50125},P:{"4":0.72311,"5.0-5.4":0.02116,"6.2-6.4":0.02037,"7.2-7.4":0.32591,"8.2":0.0204,"9.2":0.02037,"10.1":0.0102,"11.1-11.2":0.05092,"12.0":0.03055,"13.0":0.31572,"14.0":0.10185,"15.0":0.15277,"16.0":1.70083},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00243,"4.2-4.3":0.00405,"4.4":0,"4.4.3-4.4.4":0.21199},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.22646,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01324},N:{"10":0.06186,_:"11"},L:{"0":52.62748},S:{"2.5":0.02648},R:{_:"0"},M:{"0":0.45016},Q:{"10.4":0},O:{"0":0.28466},H:{"0":2.65111}}; +module.exports={C:{"52":0.01737,"54":0.01389,"66":0.00347,"72":0.02084,"78":0.03473,"90":0.00347,"91":0.02778,"94":0.00347,"95":0.03126,"96":0.01042,"98":0.01042,"99":0.62514,"100":2.47278,"101":0.00347,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 93 97 102 103 3.5 3.6"},D:{"38":0.00695,"47":0.00695,"49":0.01389,"56":0.06946,"65":0.00695,"69":0.03126,"70":0.01389,"71":0.00695,"72":0.00695,"73":0.01389,"74":0.02778,"75":0.06599,"76":0.03126,"79":0.32299,"80":0.00695,"81":0.01737,"83":0.01389,"84":0.03126,"85":0.01737,"86":0.01737,"87":0.06946,"88":0.01737,"89":0.01389,"91":0.00695,"92":0.02431,"93":0.00695,"94":0.01042,"95":0.11461,"96":0.03473,"97":0.04515,"98":0.04168,"99":0.13892,"100":4.77538,"101":13.22866,"102":1.05232,"103":0.04862,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 66 67 68 77 78 90 104"},F:{"28":0.02431,"80":0.00347,"84":0.01389,"85":0.93771,"86":1.51423,"87":0.05904,_:"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 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.01389,"13":0.01042,"16":0.00695,"17":0.01389,"18":0.02778,"84":0.00347,"85":0.00695,"90":0.00347,"92":0.01737,"96":0.00695,"97":0.00347,"98":0.01042,"99":0.02431,"100":0.18407,"101":2.70547,_:"14 15 79 80 81 83 86 87 88 89 91 93 94 95"},E:{"4":0,"11":0.00347,"13":0.00695,"14":0.01389,"15":0.00347,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01389,"12.1":0.00347,"13.1":0.01737,"14.1":0.04515,"15.1":0.01042,"15.2-15.3":0.01389,"15.4":0.18407,"15.5":0.11461},G:{"8":0.13672,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.09695,"6.0-6.1":0.00166,"7.0-7.1":0.03977,"8.1-8.4":0,"9.0-9.2":0.00331,"9.3":0.00829,"10.0-10.2":0,"10.3":0.07043,"11.0-11.2":0.04557,"11.3-11.4":0.00994,"12.0-12.1":0.22207,"12.2-12.5":2.45268,"13.0-13.1":0.00497,"13.2":0.00083,"13.3":0.00829,"13.4-13.7":0.02983,"14.0-14.4":0.24693,"14.5-14.8":0.3505,"15.0-15.1":0.76729,"15.2-15.3":0.55682,"15.4":3.22991},P:{"4":0.55274,"5.0-5.4":0.02148,"6.2-6.4":0.03071,"7.2-7.4":0.59368,"8.2":0.01032,"9.2":0.03071,"10.1":0.01021,"11.1-11.2":0.03071,"12.0":0.04094,"13.0":0.29684,"14.0":0.1126,"15.0":0.07165,"16.0":1.00312},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00126,"4.2-4.3":0.00378,"4.4":0,"4.4.3-4.4.4":0.17771},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08683,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01305},N:{"10":0.01411,_:"11"},L:{"0":52.80359},S:{"2.5":0.00653},R:{_:"0"},M:{"0":0.62007},Q:{"10.4":0.00653},O:{"0":0.35246},H:{"0":1.94649}}; 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 0061b7a8eabbd5..b958f721888d7e 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:{"11":0.00439,"48":0.00878,"52":0.0395,"59":0.01756,"68":0.00439,"78":0.14923,"80":0.00439,"81":0.00439,"82":0.00439,"83":0.00439,"87":0.01756,"88":0.00878,"89":0.02195,"90":0.03072,"91":0.06584,"92":0.00878,"93":0.00878,"94":0.01317,"95":0.01317,"96":0.01317,"97":0.03072,"98":0.85147,"99":1.87849,"100":0.00878,_:"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 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 84 85 86 101 3.5 3.6"},D:{"35":0.00439,"36":0.01317,"38":0.00439,"40":0.25895,"42":0.00439,"43":0.01317,"49":0.07461,"51":0.00878,"56":0.03072,"59":0.00439,"60":0.02195,"63":0.00878,"65":0.01317,"66":0.06584,"67":0.03511,"69":0.07022,"70":0.00439,"71":0.00439,"72":0.00439,"74":0.01756,"75":0.01317,"76":0.0395,"77":0.01317,"78":0.00878,"79":0.079,"80":0.05267,"81":0.02633,"83":0.07022,"84":0.06145,"85":0.05267,"86":0.05267,"87":0.079,"88":0.02195,"89":0.06145,"90":0.02195,"91":0.07022,"92":0.04828,"93":0.06145,"94":0.08778,"95":0.06584,"96":0.14484,"97":0.17117,"98":0.42134,"99":4.08177,"100":16.29636,"101":0.23701,"102":0.00439,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 39 41 44 45 46 47 48 50 52 53 54 55 57 58 61 62 64 68 73 103 104"},F:{"24":0.00439,"46":0.00878,"83":0.00439,"84":0.12728,"85":0.46085,"86":0.00439,_:"9 11 12 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01317},B:{"15":0.00439,"16":0.00439,"17":0.01317,"18":0.07461,"84":0.00878,"85":0.01317,"89":0.00439,"91":0.00439,"92":0.01756,"93":0.01756,"94":0.00439,"95":0.01317,"96":0.02633,"97":0.14045,"98":0.04389,"99":1.00947,"100":6.33333,"101":0.01317,_:"12 13 14 79 80 81 83 86 87 88 90"},E:{"4":0,"8":0.00439,"12":0.00439,"13":0.06584,"14":0.35112,"15":0.14484,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00878,"10.1":0.01317,"11.1":0.06145,"12.1":0.08778,"13.1":0.3994,"14.1":1.19381,"15.1":0.28967,"15.2-15.3":0.3204,"15.4":2.10233},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.00491,"7.0-7.1":0.01227,"8.1-8.4":0.01718,"9.0-9.2":0.00736,"9.3":0.29935,"10.0-10.2":0.00981,"10.3":0.28463,"11.0-11.2":0.05398,"11.3-11.4":0.0638,"12.0-12.1":0.0319,"12.2-12.5":1.30784,"13.0-13.1":0.02699,"13.2":0.00736,"13.3":0.07116,"13.4-13.7":0.21838,"14.0-14.4":0.68459,"14.5-14.8":2.8316,"15.0-15.1":0.91524,"15.2-15.3":9.51554,"15.4":8.15373},P:{"4":0.06476,"5.0-5.4":0.01062,"6.2-6.4":0.02187,"7.2-7.4":0.05118,"8.2":0.02446,"9.2":0.01093,"10.1":0.01028,"11.1-11.2":0.05397,"12.0":0.03238,"13.0":0.09714,"14.0":0.10793,"15.0":0.07555,"16.0":4.09073},I:{"0":0,"3":0,"4":0.01922,"2.1":0,"2.2":0.00074,"2.3":0,"4.1":0.00185,"4.2-4.3":0.00407,"4.4":0,"4.4.3-4.4.4":0.03585},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00445,"9":0.01778,"10":0.00445,"11":0.31567,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.1515},H:{"0":0.25498},L:{"0":25.70336},S:{"2.5":0},R:{_:"0"},M:{"0":0.40399},Q:{"10.4":0}}; +module.exports={C:{"48":0.00487,"52":0.03407,"59":0.0146,"68":0.00487,"78":0.09734,"80":0.00487,"81":0.00487,"87":0.00973,"88":0.00487,"89":0.0146,"90":0.03894,"91":0.09734,"92":0.00487,"93":0.00487,"94":0.00973,"95":0.00973,"96":0.00973,"97":0.0146,"98":0.16061,"99":0.41856,"100":1.70832,"101":0.00973,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 82 83 84 85 86 102 103 3.5 3.6"},D:{"35":0.00487,"36":0.00973,"38":0.00487,"40":0.20928,"43":0.00973,"49":0.05354,"51":0.00973,"56":0.0292,"60":0.01947,"62":0.01947,"63":0.00487,"65":0.00973,"66":0.05354,"67":0.02434,"69":0.04867,"71":0.00487,"74":0.0146,"75":0.00973,"76":0.05354,"77":0.0146,"78":0.00973,"79":0.06327,"80":0.03894,"81":0.01947,"83":0.06327,"84":0.06814,"85":0.04867,"86":0.0584,"87":0.07787,"88":0.0146,"89":0.0584,"90":0.01947,"91":0.06814,"92":0.04867,"93":0.08274,"94":0.13141,"95":0.05354,"96":0.11194,"97":0.11681,"98":0.23362,"99":0.4867,"100":5.08602,"101":18.94723,"102":1.71805,"103":0.00973,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 39 41 42 44 45 46 47 48 50 52 53 54 55 57 58 59 61 64 68 70 72 73 104"},F:{"46":0.00973,"85":0.36989,"86":0.37476,"87":0.0146,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00973},B:{"15":0.00487,"17":0.00973,"18":0.0584,"84":0.00487,"85":0.00973,"91":0.00487,"92":0.0146,"93":0.0146,"95":0.00973,"96":0.0146,"97":0.03894,"98":0.0292,"99":0.14601,"100":0.45263,"101":7.62659,_:"12 13 14 16 79 80 81 83 86 87 88 89 90 94"},E:{"4":0,"12":0.00487,"13":0.05354,"14":0.31636,"15":0.10707,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00973,"10.1":0.00973,"11.1":0.04867,"12.1":0.07787,"13.1":0.34556,"14.1":0.99287,"15.1":0.20928,"15.2-15.3":0.21902,"15.4":3.62105,"15.5":0.33582},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00242,"6.0-6.1":0.00483,"7.0-7.1":0.01208,"8.1-8.4":0.00725,"9.0-9.2":0.00242,"9.3":0.24401,"10.0-10.2":0.00725,"10.3":0.22952,"11.0-11.2":0.02416,"11.3-11.4":0.05315,"12.0-12.1":0.02658,"12.2-12.5":1.06545,"13.0-13.1":0.02174,"13.2":0.00725,"13.3":0.05315,"13.4-13.7":0.17878,"14.0-14.4":0.61608,"14.5-14.8":2.38941,"15.0-15.1":0.59675,"15.2-15.3":1.8144,"15.4":16.78383},P:{"4":0.04321,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.04321,"12.0":0.02161,"13.0":0.06482,"14.0":0.08643,"15.0":0.05402,"16.0":1.19917},I:{"0":0,"3":0,"4":0.01633,"2.1":0,"2.2":0.00136,"2.3":0,"4.1":0.00136,"4.2-4.3":0.00714,"4.4":0,"4.4.3-4.4.4":0.03027},A:{"9":0.0149,"11":0.22845,_:"6 7 8 10 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.34904},Q:{"10.4":0},O:{"0":0.11806},H:{"0":0.21868},L:{"0":22.69567},S:{"2.5":0}}; 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 82faf3d91684c2..c6f721ec43f3d8 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:{"77":0.00887,"81":0.01331,"86":0.0887,"87":0.03992,"91":0.03548,"95":0.00887,"97":0.05766,"98":0.33706,"99":0.98901,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 82 83 84 85 88 89 90 92 93 94 96 100 101 3.5 3.6"},D:{"63":0.00887,"69":0.00887,"75":0.00444,"76":0.05322,"77":0.02661,"79":0.05322,"80":0.03105,"81":0.00887,"83":0.01331,"84":0.05322,"85":0.00887,"86":0.00887,"87":0.03548,"88":0.01331,"89":0.00444,"90":0.00887,"91":0.01774,"92":0.03105,"93":0.05322,"94":0.03105,"95":0.01331,"96":0.08427,"97":0.18184,"98":0.09314,"99":4.85189,"100":21.26583,"101":0.19071,"102":0.00887,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 72 73 74 78 103 104"},F:{"68":0.00887,"69":0.12418,"84":0.11088,"85":0.54551,_:"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 70 71 72 73 74 75 76 77 78 79 80 81 82 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:{"15":0.00887,"18":0.00887,"92":0.03992,"96":0.02218,"97":0.02218,"98":0.02218,"99":1.08658,"100":6.37753,"101":0.09314,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.00887,"14":0.35037,"15":0.09314,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01331,"10.1":0.10201,"11.1":0.00887,"12.1":0.00887,"13.1":0.35037,"14.1":0.41246,"15.1":0.37698,"15.2-15.3":0.19958,"15.4":0.68743},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.00116,"7.0-7.1":0.03698,"8.1-8.4":0.23922,"9.0-9.2":0.01156,"9.3":0.07396,"10.0-10.2":0.00347,"10.3":0.09823,"11.0-11.2":0,"11.3-11.4":0.03005,"12.0-12.1":0.00347,"12.2-12.5":0.56395,"13.0-13.1":0.00347,"13.2":0.00347,"13.3":0.01502,"13.4-13.7":0.12019,"14.0-14.4":0.13983,"14.5-14.8":1.14062,"15.0-15.1":0.82744,"15.2-15.3":3.96385,"15.4":4.27703},P:{"4":0.06364,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.33943,"8.2":0.01034,"9.2":0.06203,"10.1":0.0102,"11.1-11.2":0.06364,"12.0":0.02121,"13.0":0.05304,"14.0":0.11668,"15.0":0.02121,"16.0":2.82152},I:{"0":0,"3":0,"4":0.0005,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0005,"4.4":0,"4.4.3-4.4.4":0.0157},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.02218,"11":0.02661,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":42.4812},S:{"2.5":0},R:{_:"0"},M:{"0":0.23373},Q:{"10.4":0},O:{"0":0.07791},H:{"0":0.19494}}; +module.exports={C:{"60":0.00832,"78":0.00832,"87":0.02495,"91":0.39917,"95":0.00832,"98":0.02079,"99":0.22453,"100":0.88981,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 96 97 101 102 103 3.5 3.6"},D:{"38":0.00832,"49":0.00832,"62":0.00832,"63":0.0499,"73":0.03742,"75":0.00416,"76":0.0499,"77":0.03742,"79":0.02079,"80":0.01247,"81":0.01247,"83":0.00832,"84":0.01247,"85":0.00832,"86":0.01663,"87":0.03742,"88":0.01663,"89":0.00832,"90":0.01663,"91":0.01663,"92":0.01663,"93":0.06237,"94":0.02495,"95":0.02495,"96":0.07069,"97":0.03326,"98":0.08316,"99":0.34511,"100":5.22245,"101":17.49686,"102":1.63409,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 64 65 66 67 68 69 70 71 72 74 78 103 104"},F:{"28":0.01663,"69":0.04158,"84":0.00416,"85":0.22869,"86":0.31601,"87":0.01247,_:"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 70 71 72 73 74 75 76 77 78 79 80 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:{"14":0.00832,"92":0.03326,"94":0.02079,"96":0.00832,"97":0.02079,"98":0.01663,"99":0.05405,"100":0.56965,"101":6.76091,_:"12 13 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 95"},E:{"4":0,"13":0.01247,"14":0.079,"15":0.2079,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00416,"11.1":0.00832,"12.1":0.00416,"13.1":0.2079,"14.1":0.26195,"15.1":0.14969,"15.2-15.3":0.07069,"15.4":1.30145,"15.5":0.11642},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.03978,"8.1-8.4":0,"9.0-9.2":0.00351,"9.3":0.0468,"10.0-10.2":0.00117,"10.3":0.07255,"11.0-11.2":0,"11.3-11.4":0.00351,"12.0-12.1":0.00234,"12.2-12.5":0.47156,"13.0-13.1":0.00351,"13.2":0,"13.3":0.01287,"13.4-13.7":0.03978,"14.0-14.4":0.26211,"14.5-14.8":1.32926,"15.0-15.1":0.20243,"15.2-15.3":0.87174,"15.4":8.33476},P:{"4":0.11539,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.23079,"8.2":0.01032,"9.2":0.05233,"10.1":0.01021,"11.1-11.2":0.06294,"12.0":0.23123,"13.0":0.02098,"14.0":0.06294,"15.0":0.04196,"16.0":1.53158},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00053,"4.2-4.3":0.00187,"4.4":0,"4.4.3-4.4.4":0.0385},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00832,"11":0.02911,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":43.57011},S:{"2.5":0},R:{_:"0"},M:{"0":0.21035},Q:{"10.4":0},O:{"0":0.07012},H:{"0":0.37616}}; 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 b2b0593b435504..1eeb9862c9a38d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js @@ -1 +1 @@ -module.exports={C:{"34":0.00446,"48":0.00891,"50":0.00446,"51":0.14705,"52":0.12477,"53":0.16042,"54":0.0713,"55":0.13368,"56":0.10249,"57":0.09803,"58":0.0401,"59":0.03565,"68":0.00891,"78":0.03565,"81":0.00446,"83":0.00446,"84":0.00891,"87":0.00446,"88":0.00891,"89":0.00446,"91":0.01337,"96":0.00891,"97":0.02228,"98":0.31638,"99":0.89566,"100":0.00891,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 82 85 86 90 92 93 94 95 101 3.5 3.6"},D:{"38":0.00891,"39":0.04456,"40":0.0401,"41":0.04456,"42":0.0401,"43":0.04456,"44":0.04456,"45":0.05347,"46":0.05793,"47":0.08021,"48":0.04456,"49":0.1114,"50":0.03565,"51":0.03565,"52":0.03119,"53":0.04902,"54":0.0401,"55":0.0401,"56":0.05793,"57":0.04456,"58":0.05793,"59":0.06238,"60":0.05347,"61":0.05347,"62":0.05347,"63":0.06684,"64":0.05347,"65":0.05347,"66":0.03119,"68":0.02674,"69":0.00891,"70":0.00891,"71":0.01782,"72":0.00891,"73":0.01782,"74":0.03119,"75":0.00891,"76":0.08021,"78":0.01782,"79":0.20052,"80":0.01782,"81":0.02674,"83":0.08021,"84":0.01782,"85":0.02674,"86":0.06238,"87":0.08466,"88":0.05347,"89":0.04902,"90":0.10694,"91":0.0401,"92":0.06238,"93":0.03565,"94":0.03565,"95":0.04902,"96":0.15596,"97":0.13368,"98":0.3342,"99":4.59414,"100":23.55887,"101":0.36985,"102":0.22726,"103":0.01337,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 67 77 104"},F:{"28":0.04456,"36":0.00891,"40":0.00446,"42":0.00446,"46":0.01337,"48":0.01337,"67":0.00891,"74":0.00891,"77":0.02228,"79":0.00446,"81":0.00891,"82":0.00891,"83":0.00891,"84":0.54363,"85":2.54883,"86":0.04456,"87":0.00446,_:"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 43 44 45 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 73 75 76 78 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00446},B:{"12":0.01337,"13":0.06684,"14":0.17824,"15":0.00891,"16":0.0713,"17":0.02228,"18":0.08912,"84":0.02674,"85":0.00446,"86":0.00446,"87":0.00446,"88":0.00891,"89":0.00891,"90":0.00891,"91":0.00891,"92":0.01337,"93":0.00446,"94":0.00891,"95":0.01337,"96":0.04456,"97":0.03565,"98":0.0401,"99":0.46342,"100":2.58894,"101":0.0401,_:"79 80 81 83"},E:{"4":0,"13":0.0401,"14":0.06684,"15":0.0401,_:"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","12.1":0.01337,"13.1":0.06238,"14.1":0.19606,"15.1":0.06238,"15.2-15.3":0.06684,"15.4":0.3342},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01943,"6.0-6.1":0,"7.0-7.1":0.19425,"8.1-8.4":0.01036,"9.0-9.2":0.03238,"9.3":0.06216,"10.0-10.2":0.06346,"10.3":0.18001,"11.0-11.2":0.07252,"11.3-11.4":0.02331,"12.0-12.1":0.0259,"12.2-12.5":1.01529,"13.0-13.1":0.02331,"13.2":0.01425,"13.3":0.07382,"13.4-13.7":0.259,"14.0-14.4":0.71096,"14.5-14.8":1.77029,"15.0-15.1":0.81845,"15.2-15.3":3.64806,"15.4":3.93038},P:{"4":0.55648,"5.0-5.4":0.04084,"6.2-6.4":0.03063,"7.2-7.4":0.17849,"8.2":0.01021,"9.2":0.03063,"10.1":0.0102,"11.1-11.2":0.0735,"12.0":0.021,"13.0":0.0945,"14.0":0.084,"15.0":0.042,"16.0":1.21795},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00586,"4.2-4.3":0.02735,"4.4":0,"4.4.3-4.4.4":0.13869},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05347,"9":0.06684,"10":0.02228,"11":0.08021,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":40.25496},S:{"2.5":0},R:{_:"0"},M:{"0":0.061},Q:{"10.4":0},O:{"0":0.1109},H:{"0":0.26773}}; +module.exports={C:{"34":0.00839,"48":0.0042,"51":0.04616,"52":0.04616,"53":0.05035,"54":0.02518,"55":0.04616,"56":0.03357,"57":0.03357,"58":0.01259,"59":0.01259,"68":0.01259,"78":0.02937,"88":0.02098,"91":0.01259,"99":0.29372,"100":0.93571,"101":0.00839,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 102 103 3.5 3.6"},D:{"38":0.00839,"39":0.01678,"40":0.01259,"41":0.01678,"42":0.01678,"43":0.01259,"44":0.01678,"45":0.02098,"46":0.02098,"47":0.04616,"48":0.01678,"49":0.08392,"50":0.01678,"51":0.01259,"52":0.01259,"53":0.01678,"54":0.01259,"55":0.01678,"56":0.04196,"57":0.01678,"58":0.02098,"59":0.02098,"60":0.02098,"61":0.01678,"62":0.02098,"63":0.02937,"64":0.02098,"65":0.02518,"66":0.03357,"67":0.0042,"68":0.02098,"69":0.0042,"71":0.01678,"72":0.0042,"73":0.00839,"74":0.04196,"75":0.01678,"76":0.05035,"77":0.0042,"78":0.01259,"79":0.20141,"80":0.01678,"81":0.01678,"83":0.07553,"84":0.03776,"85":0.02518,"86":0.06294,"87":0.07553,"88":0.05035,"89":0.03776,"90":0.07972,"91":0.04616,"92":0.04616,"93":0.03776,"94":0.03776,"95":0.04616,"96":0.1091,"97":0.09651,"98":0.2098,"99":0.20141,"100":5.57648,"101":20.84573,"102":1.74134,"103":0.11329,"104":0.01259,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 70"},F:{"28":0.04616,"36":0.0042,"40":0.00839,"46":0.01259,"48":0.01259,"63":0.0042,"67":0.00839,"73":0.0042,"77":0.02098,"79":0.03357,"83":0.0042,"84":0.02098,"85":1.42664,"86":1.70358,"87":0.07553,_:"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 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 68 69 70 71 72 74 75 76 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00839,"13":0.05874,"14":0.13847,"16":0.05035,"17":0.00839,"18":0.07133,"84":0.01259,"89":0.0042,"92":0.00839,"93":0.0042,"95":0.0042,"96":0.03776,"97":0.02098,"98":0.02098,"99":0.03776,"100":0.14686,"101":2.68544,_:"15 79 80 81 83 85 86 87 88 90 91 94"},E:{"4":0,"13":0.01259,"14":0.06294,"15":0.01678,_:"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","12.1":0.01259,"13.1":0.06294,"14.1":0.19302,"15.1":0.05874,"15.2-15.3":0.05874,"15.4":0.51191,"15.5":0.07553},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01805,"6.0-6.1":0.00139,"7.0-7.1":0.17221,"8.1-8.4":0,"9.0-9.2":0.0125,"9.3":0.07222,"10.0-10.2":0.02639,"10.3":0.14026,"11.0-11.2":0.06805,"11.3-11.4":0.02361,"12.0-12.1":0.025,"12.2-12.5":0.98463,"13.0-13.1":0.02222,"13.2":0.00972,"13.3":0.07638,"13.4-13.7":0.2472,"14.0-14.4":0.70132,"14.5-14.8":1.6429,"15.0-15.1":0.59578,"15.2-15.3":1.31654,"15.4":7.73261},P:{"4":0.49656,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.1138,"8.2":0.01032,"9.2":0.02069,"10.1":0.01021,"11.1-11.2":0.06207,"12.0":0.01035,"13.0":0.08276,"14.0":0.10345,"15.0":0.04138,"16.0":0.60002},I:{"0":0,"3":0,"4":0.00354,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00532,"4.2-4.3":0.0248,"4.4":0,"4.4.3-4.4.4":0.13465},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01678,"9":0.02098,"10":0.00839,"11":0.05455,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":41.91956},S:{"2.5":0},R:{_:"0"},M:{"0":0.06384},Q:{"10.4":0},O:{"0":0.07545},H:{"0":0.28573}}; 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 6a67d3b18659b1..b0dd3ea894cd4e 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:{"35":0.01252,"36":0.00417,"48":0.00417,"52":0.00834,"68":0.00417,"71":0.00834,"78":0.05841,"86":0.00834,"87":0.01669,"88":0.07092,"89":0.00834,"91":0.35045,"93":0.00834,"94":0.0292,"95":0.13768,"96":0.01252,"97":0.07927,"98":1.12644,"99":3.07894,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 90 92 100 101 3.5 3.6"},D:{"26":0.00834,"38":0.01252,"47":0.00417,"49":0.11682,"64":0.02086,"67":0.00834,"76":0.01669,"78":0.00834,"79":0.01252,"81":0.00834,"85":0.00417,"86":0.00834,"87":0.02086,"88":0.00834,"89":0.00834,"90":0.01669,"91":0.01252,"92":0.01669,"93":0.02086,"94":0.04172,"95":0.00417,"96":0.07927,"97":0.02086,"98":0.17522,"99":3.26668,"100":15.86194,"101":0.15019,"102":0.02086,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 68 69 70 71 72 73 74 75 77 80 83 84 103 104"},F:{"36":0.01252,"40":0.00834,"79":0.00417,"84":0.12516,"85":0.30038,"86":0.00417,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 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.1043,"15":0.00417,"16":0.01252,"17":0.00417,"18":0.01669,"84":0.05006,"90":0.01252,"92":0.00417,"94":0.00417,"95":0.03338,"96":0.00834,"97":0.05006,"98":0.05006,"99":1.40179,"100":9.01152,"101":0.13768,_:"13 14 79 80 81 83 85 86 87 88 89 91 93"},E:{"4":0,"12":0.02086,"13":0.37548,"14":0.22946,"15":0.06258,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.09178,"11.1":0.07927,"12.1":0.0292,"13.1":0.28787,"14.1":0.67586,"15.1":0.15436,"15.2-15.3":0.21277,"15.4":0.74262},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.179,"10.0-10.2":0,"10.3":0.23032,"11.0-11.2":0.12142,"11.3-11.4":0.01001,"12.0-12.1":0.00876,"12.2-12.5":0.52197,"13.0-13.1":0.02253,"13.2":0.00501,"13.3":0.02503,"13.4-13.7":0.12768,"14.0-14.4":0.46189,"14.5-14.8":1.76494,"15.0-15.1":0.55201,"15.2-15.3":3.72014,"15.4":4.76784},P:{"4":0.09279,"5.0-5.4":0.02116,"6.2-6.4":0.0102,"7.2-7.4":0.26807,"8.2":0.0204,"9.2":0.01031,"10.1":0.0102,"11.1-11.2":0.299,"12.0":0.04124,"13.0":0.75265,"14.0":0.21651,"15.0":0.11341,"16.0":3.49517},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00138,"4.2-4.3":0.00138,"4.4":0,"4.4.3-4.4.4":0.03803},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0751,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":40.32729},S:{"2.5":0.00583},R:{_:"0"},M:{"0":0.60028},Q:{"10.4":0},O:{"0":0.03497},H:{"0":0.12139}}; +module.exports={C:{"34":0.00377,"52":0.03017,"60":0.00754,"68":0.01508,"76":0.00377,"78":0.03771,"79":0.00377,"83":0.00377,"86":0.01508,"87":0.00754,"88":0.01886,"91":0.23003,"92":0.01508,"94":0.04525,"95":0.06788,"96":0.01131,"97":0.00754,"98":0.04525,"99":0.95406,"100":3.20158,"101":0.00377,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 77 80 81 82 84 85 89 90 93 102 103 3.5 3.6"},D:{"49":0.09428,"63":0.00377,"76":0.00377,"77":0.01886,"79":0.03017,"83":0.00754,"86":0.01131,"87":0.01131,"88":0.00377,"89":0.00754,"90":0.04525,"91":0.01131,"92":0.0264,"93":0.00754,"94":0.0264,"95":0.01131,"96":0.01131,"97":0.04148,"98":0.06788,"99":0.06034,"100":3.50326,"101":13.28146,"102":0.94275,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 78 80 81 84 85 103 104"},F:{"28":0.00377,"36":0.01131,"40":0.10559,"46":0.00377,"80":0.01508,"85":0.26397,"86":0.21872,"87":0.01508,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 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.09428,"16":0.04902,"17":0.00754,"18":0.01886,"84":0.03394,"85":0.00754,"92":0.01508,"94":0.00377,"96":0.00754,"97":0.00754,"98":0.01886,"99":0.03017,"100":0.48646,"101":7.70415,_:"13 14 15 79 80 81 83 86 87 88 89 90 91 93 95"},E:{"4":0,"12":0.00754,"13":0.16215,"14":0.34693,"15":0.12444,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03771,"11.1":0.01886,"12.1":0.03394,"13.1":0.2866,"14.1":0.65993,"15.1":0.08673,"15.2-15.3":0.12067,"15.4":1.41413,"15.5":0.09428},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00127,"6.0-6.1":0,"7.0-7.1":0.00254,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.23409,"10.0-10.2":0,"10.3":0.03308,"11.0-11.2":0.00509,"11.3-11.4":0.00763,"12.0-12.1":0.00891,"12.2-12.5":0.18829,"13.0-13.1":0.03689,"13.2":0.00127,"13.3":0.04707,"13.4-13.7":0.18956,"14.0-14.4":0.37149,"14.5-14.8":1.59918,"15.0-15.1":0.42874,"15.2-15.3":0.8931,"15.4":8.67143},P:{"4":0.10208,"5.0-5.4":0.02148,"6.2-6.4":0.03059,"7.2-7.4":0.64308,"8.2":0.01032,"9.2":0.02042,"10.1":0.01021,"11.1-11.2":0.1327,"12.0":0.04083,"13.0":0.96973,"14.0":0.24498,"15.0":0.12249,"16.0":1.34741},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00791,"4.2-4.3":0.00527,"4.4":0,"4.4.3-4.4.4":0.05534},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15084,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":44.44076},S:{"2.5":0.01246},R:{_:"0"},M:{"0":0.34882},Q:{"10.4":0},O:{"0":0.03115},H:{"0":0.15333}}; 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 1a7bd71e7fe6db..0f0e7080f245ed 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:{"52":0.03465,"77":0.0297,"78":0.0693,"91":0.0297,"96":0.00495,"97":0.0099,"98":0.6237,"99":1.7028,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 100 101 3.5 3.6"},D:{"38":0.00495,"49":0.0099,"65":0.0099,"73":0.0099,"76":0.02475,"77":0.00495,"79":0.0198,"83":0.0099,"84":0.03465,"86":0.0198,"87":0.02475,"89":0.00495,"91":0.0198,"92":0.04455,"93":0.0594,"94":0.01485,"95":0.01485,"96":0.0792,"97":0.1089,"98":0.3663,"99":5.1183,"100":14.05305,"101":0.1287,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 74 75 78 80 81 85 88 90 102 103 104"},F:{"84":0.1089,"85":0.2574,_:"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 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.0297,"18":0.00495,"89":0.0099,"91":0.00495,"92":0.00495,"94":0.0099,"95":0.0099,"96":0.03465,"97":0.29205,"98":0.0495,"99":1.2375,"100":7.25175,"101":0.07425,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 90 93"},E:{"4":0,"13":0.03465,"14":0.65835,"15":0.13365,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02475,"11.1":0.21285,"12.1":0.06435,"13.1":1.2375,"14.1":2.63835,"15.1":0.30195,"15.2-15.3":0.51975,"15.4":4.61835},G:{"8":0.04759,"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.0056,"9.3":0.57947,"10.0-10.2":0,"10.3":0.87061,"11.0-11.2":0.03919,"11.3-11.4":0.0084,"12.0-12.1":0.05879,"12.2-12.5":1.90918,"13.0-13.1":0.014,"13.2":0,"13.3":0.0196,"13.4-13.7":0.4675,"14.0-14.4":1.23733,"14.5-14.8":2.74619,"15.0-15.1":1.41649,"15.2-15.3":9.33033,"15.4":9.22676},P:{"4":0.04505,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.19589,"8.2":0.01034,"9.2":0.02062,"10.1":0.0102,"11.1-11.2":0.05632,"12.0":0.03093,"13.0":0.06758,"14.0":0.0901,"15.0":0.02253,"16.0":5.42881},I:{"0":0,"3":0,"4":0.00071,"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.00434},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.18305,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":16.14915},S:{"2.5":0},R:{_:"0"},M:{"0":0.22725},Q:{"10.4":0},O:{"0":0},H:{"0":0.05259}}; +module.exports={C:{"52":0.03941,"78":0.06896,"91":0.0197,"98":0.00985,"99":0.27586,"100":1.33495,"101":0.00985,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"65":0.0197,"76":0.55171,"77":0.18719,"79":0.00493,"83":0.01478,"84":0.00985,"86":0.05419,"87":0.03448,"90":0.00493,"91":0.01478,"92":0.00985,"93":0.30049,"94":0.01478,"95":0.01478,"96":0.03448,"97":0.18226,"98":0.10345,"99":0.62068,"100":4.82748,"101":16.09817,"102":1.52213,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 78 80 81 85 88 89 103 104"},F:{"85":0.26108,"86":0.15763,"87":0.00493,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 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.01478,"17":0.00493,"91":0.00985,"95":0.00985,"96":0.12808,"97":0.05419,"98":0.05911,"99":0.09359,"100":0.44827,"101":6.2905,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 90 92 93 94"},E:{"4":0,"13":0.11822,"14":0.7192,"15":0.08374,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01478,"11.1":0.12808,"12.1":0.08374,"13.1":0.86205,"14.1":2.00488,"15.1":0.12315,"15.2-15.3":0.3596,"15.4":7.69441,"15.5":0.74383},G:{"8":0.03445,"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.47295,"10.0-10.2":0,"10.3":0.49174,"11.0-11.2":0.05638,"11.3-11.4":0.02192,"12.0-12.1":0.01566,"12.2-12.5":1.2873,"13.0-13.1":0,"13.2":0.00313,"13.3":0.02192,"13.4-13.7":0.36332,"14.0-14.4":1.0931,"14.5-14.8":3.00369,"15.0-15.1":0.77676,"15.2-15.3":1.85421,"15.4":21.81511},P:{"4":0.08215,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.18484,"8.2":0.01032,"9.2":0.02054,"10.1":0.01021,"11.1-11.2":0.03259,"12.0":0.03081,"13.0":0.05432,"14.0":0.06519,"15.0":0.07188,"16.0":1.32551},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:{"11":0.87683,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":14.47306},S:{"2.5":0},R:{_:"0"},M:{"0":0.21818},Q:{"10.4":0},O:{"0":0},H:{"0":0.0048}}; 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 325243fade0da2..924f882fffb387 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:{"41":0.00738,"43":0.00984,"44":0.00246,"47":0.00984,"48":0.00738,"49":0.00738,"52":0.0123,"56":0.00246,"64":0.00246,"66":0.00738,"68":0.00246,"69":0.00492,"72":0.01476,"78":0.02214,"79":0.00492,"80":0.00492,"83":0.00738,"84":0.00738,"85":0.00492,"86":0.00984,"87":0.00738,"88":0.0123,"89":0.01476,"90":0.00246,"91":0.0246,"92":0.00738,"93":0.00246,"94":0.00984,"95":0.01722,"96":0.02214,"97":0.02706,"98":0.47232,"99":1.22016,"100":0.09594,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 45 46 50 51 53 54 55 57 58 59 60 61 62 63 65 67 70 71 73 74 75 76 77 81 82 101 3.5 3.6"},D:{"43":0.00492,"49":0.01968,"50":0.00492,"55":0.00492,"58":0.00246,"60":0.00492,"63":0.00738,"64":0.00246,"65":0.00492,"67":0.00984,"68":0.02214,"69":0.00492,"70":0.00738,"71":0.00492,"72":0.00492,"73":0.00246,"74":0.00984,"75":0.0123,"76":0.02214,"77":0.04674,"78":0.02706,"79":0.02952,"80":0.0246,"81":0.01722,"83":0.02706,"84":0.03444,"85":0.01722,"86":0.02952,"87":0.0615,"88":0.02952,"89":0.02214,"90":0.01476,"91":0.04182,"92":0.05166,"93":0.05166,"94":0.02952,"95":0.03936,"96":0.10578,"97":0.0861,"98":0.14022,"99":2.12544,"100":9.75636,"101":0.15744,"102":0.0123,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 51 52 53 54 56 57 59 61 62 66 103 104"},F:{"42":0.00492,"67":0.00492,"69":0.00738,"73":0.00246,"79":0.01476,"82":0.00738,"83":0.01476,"84":0.19926,"85":0.9102,"86":0.03198,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 70 71 72 74 75 76 77 78 80 81 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.0492,"13":0.00984,"14":0.00984,"15":0.01722,"16":0.0123,"17":0.01476,"18":0.07626,"84":0.02214,"85":0.02214,"86":0.00246,"88":0.00246,"89":0.04674,"90":0.02706,"91":0.00246,"92":0.05166,"93":0.00738,"94":0.00492,"95":0.00738,"96":0.02706,"97":0.02706,"98":0.0615,"99":0.56826,"100":2.26566,"101":0.02706,_:"79 80 81 83 87"},E:{"4":0,"12":0.00492,"13":0.01968,"14":0.04428,"15":0.02952,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00492,"10.1":0.02214,"11.1":0.01722,"12.1":0.01476,"13.1":0.06888,"14.1":0.10578,"15.1":0.04674,"15.2-15.3":0.03936,"15.4":0.17958},G:{"8":0.00425,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00142,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0156,"8.1-8.4":0,"9.0-9.2":0.00142,"9.3":0.03262,"10.0-10.2":0.00284,"10.3":0.12764,"11.0-11.2":0.29499,"11.3-11.4":0.02695,"12.0-12.1":0.05673,"12.2-12.5":1.27924,"13.0-13.1":0.04964,"13.2":0.03546,"13.3":0.15601,"13.4-13.7":0.32761,"14.0-14.4":1.80399,"14.5-14.8":2.29753,"15.0-15.1":1.99828,"15.2-15.3":3.10734,"15.4":2.56132},P:{"4":0.12405,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.13439,"8.2":0.01034,"9.2":0.06203,"10.1":0.0102,"11.1-11.2":0.09304,"12.0":0.01034,"13.0":0.07237,"14.0":0.16541,"15.0":0.11372,"16.0":0.93041},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00122,"4.2-4.3":0.00441,"4.4":0,"4.4.3-4.4.4":0.03207},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00246,"11":0.04182,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.02262},N:{"10":0.06186,_:"11"},L:{"0":45.6466},S:{"2.5":0},R:{_:"0"},M:{"0":0.40711},Q:{"10.4":0.01508},O:{"0":1.98276},H:{"0":13.98224}}; +module.exports={C:{"30":0.00244,"41":0.00244,"42":0.00244,"43":0.00489,"47":0.00977,"48":0.00733,"52":0.00977,"56":0.00244,"66":0.02687,"72":0.00977,"74":0.00244,"77":0.00489,"78":0.01466,"81":0.01954,"82":0.00489,"83":0.00489,"84":0.00977,"86":0.00489,"87":0.00489,"88":0.0171,"89":0.00977,"91":0.0171,"92":0.00244,"93":0.00244,"94":0.00733,"95":0.01466,"96":0.00489,"97":0.01222,"98":0.02199,"99":0.36645,"100":1.39251,"101":0.09528,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 44 45 46 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 75 76 79 80 85 90 102 103 3.5 3.6"},D:{"37":0.00244,"38":0.00244,"47":0.00244,"49":0.01466,"50":0.00489,"55":0.00977,"56":0.00244,"57":0.00244,"58":0.00244,"60":0.00489,"63":0.00489,"64":0.00489,"65":0.00733,"66":0.00244,"67":0.00733,"68":0.0171,"69":0.00733,"70":0.00489,"71":0.00244,"72":0.00733,"73":0.00733,"74":0.0171,"75":0.01222,"76":0.0171,"77":0.04642,"78":0.0171,"79":0.03176,"80":0.02199,"81":0.01466,"83":0.02199,"84":0.0171,"85":0.02443,"86":0.03909,"87":0.04642,"88":0.02199,"89":0.02932,"90":0.01466,"91":0.0342,"92":0.03176,"93":0.03665,"94":0.02443,"95":0.0342,"96":0.08551,"97":0.05375,"98":0.10749,"99":0.18567,"100":2.33062,"101":8.5505,"102":0.77443,"103":0.02932,"104":0.00244,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 44 45 46 48 51 52 53 54 59 61 62"},F:{"12":0.00244,"42":0.00489,"48":0.00244,"69":0.00489,"73":0.00244,"79":0.01222,"80":0.00244,"81":0.00489,"82":0.01222,"83":0.00977,"84":0.01222,"85":0.4031,"86":0.57411,"87":0.05863,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 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.02932,"13":0.01222,"14":0.00733,"15":0.01222,"16":0.0171,"17":0.01466,"18":0.07573,"84":0.02443,"85":0.02199,"86":0.00244,"89":0.04886,"90":0.02199,"91":0.00244,"92":0.04642,"94":0.00244,"95":0.00489,"96":0.01954,"97":0.01466,"98":0.02687,"99":0.04397,"100":0.2101,"101":2.03991,_:"79 80 81 83 87 88 93"},E:{"4":0,"11":0.00244,"12":0.00244,"13":0.01954,"14":0.0513,"15":0.02199,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":0.00244,"9.1":0.00489,"10.1":0.01466,"11.1":0.0171,"12.1":0.00733,"13.1":0.06596,"14.1":0.10016,"15.1":0.03665,"15.2-15.3":0.03176,"15.4":0.27117,"15.5":0.05375},G:{"8":0.00298,"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.01339,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02678,"10.0-10.2":0,"10.3":0.09819,"11.0-11.2":0.15324,"11.3-11.4":0.02827,"12.0-12.1":0.05951,"12.2-12.5":1.30031,"13.0-13.1":0.061,"13.2":0.03719,"13.3":0.13836,"13.4-13.7":0.30202,"14.0-14.4":1.82846,"14.5-14.8":2.21528,"15.0-15.1":1.88053,"15.2-15.3":2.16767,"15.4":4.55702},P:{"4":0.12559,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.12559,"8.2":0.01032,"9.2":0.05233,"10.1":0.01021,"11.1-11.2":0.08373,"12.0":0.01047,"13.0":0.05233,"14.0":0.11512,"15.0":0.09419,"16.0":0.55469},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00098,"4.2-4.3":0.00314,"4.4":0,"4.4.3-4.4.4":0.0261},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00489,"9":0.00244,"10":0.00489,"11":0.04397,_:"6 7 5.5"},J:{"7":0,"10":0.02267},N:{"10":0.01411,_:"11"},L:{"0":46.78719},S:{"2.5":0},R:{_:"0"},M:{"0":0.51381},Q:{"10.4":0.00756},O:{"0":2.0779},H:{"0":13.12673}}; 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 48590d1fa1518b..7d239330b9c963 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:{"52":0.00972,"78":0.01943,"80":0.00972,"88":0.05344,"91":0.01457,"96":0.00486,"97":0.00972,"98":0.46151,"99":0.60239,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 92 93 94 95 100 101 3.5 3.6"},D:{"49":0.02915,"65":0.00972,"73":0.03401,"75":0.00972,"76":0.00972,"78":0.00972,"79":0.17003,"80":0.02429,"81":0.12631,"83":0.07287,"84":0.02429,"86":0.01457,"87":0.18946,"88":0.00486,"89":0.00972,"90":0.01943,"91":0.00972,"92":0.00486,"94":0.03886,"96":0.07773,"97":0.17489,"98":0.47123,"99":6.57773,"100":22.50226,"101":0.17489,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 74 77 85 93 95 102 103 104"},F:{"84":0.03886,"85":0.22347,_:"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 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.01457,"92":0.01457,"97":0.02429,"98":0.01943,"99":0.64126,"100":4.96488,"101":0.03886,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"11":0.00972,"12":0.00486,"13":0.08259,"14":0.36435,"15":0.1846,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00486,"12.1":0.0583,"13.1":0.31577,"14.1":0.821,"15.1":0.65583,"15.2-15.3":0.66555,"15.4":1.82661},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.16658,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05126,"10.0-10.2":0,"10.3":0.15377,"11.0-11.2":0.00427,"11.3-11.4":0.01709,"12.0-12.1":0.10038,"12.2-12.5":0.425,"13.0-13.1":0.01709,"13.2":0.00427,"13.3":0.03204,"13.4-13.7":0.25201,"14.0-14.4":0.75176,"14.5-14.8":3.35089,"15.0-15.1":0.8436,"15.2-15.3":7.67352,"15.4":7.51121},P:{"4":0.26385,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.13439,"8.2":0.01034,"9.2":0.06203,"10.1":0.0102,"11.1-11.2":0.01055,"12.0":0.01034,"13.0":0.04222,"14.0":0.44327,"15.0":0.03166,"16.0":4.03164},I:{"0":0,"3":0,"4":0.0022,"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.01322},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13602,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":24.73954},S:{"2.5":0},R:{_:"0"},M:{"0":1.25979},Q:{"10.4":0},O:{"0":0.04628},H:{"0":1.18782}}; +module.exports={C:{"52":0.01039,"78":0.02599,"83":0.0052,"88":0.01039,"91":0.01559,"98":0.01039,"99":0.07276,"100":1.2161,"101":0.0052,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"38":0.0052,"60":0.04677,"63":0.0052,"76":0.01039,"79":0.0052,"80":0.09874,"81":0.10914,"83":0.02599,"84":0.93546,"86":0.0052,"87":0.76916,"89":0.03118,"90":0.06756,"91":0.02079,"92":0.01559,"94":0.0052,"96":0.03638,"97":0.06756,"98":0.08835,"99":0.66522,"100":5.3789,"101":19.54072,"102":2.09959,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 64 65 66 67 68 69 70 71 72 73 74 75 77 78 85 88 93 95 103 104"},F:{"36":0.01559,"85":0.15591,"86":0.13512,"87":0.02599,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01039,"18":0.0052,"92":0.01039,"97":0.0052,"99":0.08315,"100":0.24946,"101":7.76952,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98"},E:{"4":0,"11":0.05717,"12":0.0052,"13":0.07276,"14":0.30143,"15":0.06756,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01039,"11.1":0.01559,"12.1":0.03638,"13.1":0.53009,"14.1":0.71719,"15.1":0.25465,"15.2-15.3":0.48852,"15.4":7.17706,"15.5":0.23906},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.04788,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00456,"9.3":0.02508,"10.0-10.2":0,"10.3":0.1368,"11.0-11.2":0.00456,"11.3-11.4":0.01824,"12.0-12.1":0.07752,"12.2-12.5":0.62698,"13.0-13.1":0.00684,"13.2":0,"13.3":0.03192,"13.4-13.7":0.36251,"14.0-14.4":0.41039,"14.5-14.8":2.52161,"15.0-15.1":0.61786,"15.2-15.3":1.77835,"15.4":16.11914},P:{"4":0.14732,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.12559,"8.2":0.01032,"9.2":0.05233,"10.1":0.01021,"11.1-11.2":0.04209,"12.0":0.03157,"13.0":0.05233,"14.0":0.37884,"15.0":0.01052,"16.0":1.6311},I:{"0":0,"3":0,"4":0.00126,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00076,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00278},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13512,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":19.99677},S:{"2.5":0},R:{_:"0"},M:{"0":0.26417},Q:{"10.4":0},O:{"0":0.05764},H:{"0":0.69117}}; 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 14a8ff7895a7ba..8b9ea41ede3d72 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:{"34":0.0047,"52":0.00941,"69":0.00941,"78":0.04233,"81":0.1599,"88":0.11758,"91":0.04703,"95":0.00941,"96":0.00941,"98":0.89357,"99":1.78244,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 89 90 92 93 94 97 100 101 3.5 3.6"},D:{"49":0.03292,"65":0.19753,"70":0.01411,"73":0.00941,"79":0.00941,"80":0.0047,"81":0.09876,"85":0.01411,"86":0.02352,"87":0.01411,"88":0.02822,"89":0.02822,"90":0.03762,"91":0.00941,"92":0.05173,"93":0.02352,"94":0.04233,"96":0.06114,"97":0.14579,"98":3.32972,"99":2.38442,"100":13.06023,"101":0.49852,"102":0.0047,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 74 75 76 77 78 83 84 95 103 104"},F:{"46":0.0047,"83":0.0047,"84":0.14109,"85":0.40446,_:"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 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.04233,"84":0.01881,"85":0.00941,"91":0.00941,"92":0.02352,"96":0.00941,"97":0.00941,"98":0.03292,"99":1.34506,"100":6.13271,"101":0.05173,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 93 94 95"},E:{"4":0,"13":0.41857,"14":0.20693,"15":0.07055,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04233,"11.1":0.00941,"12.1":0.04233,"13.1":0.3151,"14.1":1.66957,"15.1":1.71189,"15.2-15.3":0.83713,"15.4":2.45967},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.03245,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.4867,"13.0-13.1":0,"13.2":0.0295,"13.3":0.00885,"13.4-13.7":0.03245,"14.0-14.4":0.25367,"14.5-14.8":1.0029,"15.0-15.1":1.01175,"15.2-15.3":17.36487,"15.4":9.21191},P:{"4":0.22758,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.13439,"8.2":0.01034,"9.2":0.06203,"10.1":0.0102,"11.1-11.2":0.02069,"12.0":0.01077,"13.0":0.02069,"14.0":0.51722,"15.0":0.11379,"16.0":3.08263},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00072,"4.4":0,"4.4.3-4.4.4":0.00457},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.4656,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":18.5581},S:{"2.5":0},R:{_:"0"},M:{"0":0.20654},Q:{"10.4":0},O:{"0":0.06355},H:{"0":1.37883}}; +module.exports={C:{"71":0.02705,"78":0.03607,"81":0.03156,"86":0.00451,"88":0.00902,"91":0.05411,"94":0.00451,"98":0.03156,"99":0.3517,"100":2.08316,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 79 80 82 83 84 85 87 89 90 92 93 95 96 97 101 102 103 3.5 3.6"},D:{"62":0.00902,"65":0.05411,"73":0.00902,"79":0.00902,"80":0.01804,"81":0.00451,"83":0.09469,"87":0.08116,"88":0.03156,"89":0.00451,"90":0.00902,"92":0.00451,"93":0.0496,"94":0.05411,"97":0.02705,"98":0.42385,"99":0.96493,"100":2.29508,"101":14.05455,"102":1.28056,"103":0.00902,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 63 64 66 67 68 69 70 71 72 74 75 76 77 78 84 85 86 91 95 96 104"},F:{"80":0.00902,"85":1.02805,"86":1.01903,"87":0.0496,_:"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 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:{"18":0.04509,"84":0.03156,"85":0.01353,"90":0.00451,"95":0.00902,"96":0.04509,"97":0.00902,"99":0.07214,"100":0.47795,"101":6.55158,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 91 92 93 94 98"},E:{"4":0,"8":0.00902,"12":0.00451,"13":0.16683,"14":0.39679,"15":0.05862,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01804,"11.1":0.00451,"12.1":0.00902,"13.1":0.31112,"14.1":3.21943,"15.1":0.82515,"15.2-15.3":0.22545,"15.4":5.44236,"15.5":0.48246},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.06164,"8.1-8.4":0.02712,"9.0-9.2":0.03452,"9.3":0.02712,"10.0-10.2":0,"10.3":0.03452,"11.0-11.2":0,"11.3-11.4":0.00986,"12.0-12.1":0,"12.2-12.5":0.32302,"13.0-13.1":0.00493,"13.2":0.01233,"13.3":0.01479,"13.4-13.7":0.01233,"14.0-14.4":0.36247,"14.5-14.8":1.23043,"15.0-15.1":0.64604,"15.2-15.3":2.61128,"15.4":19.23567},P:{"4":0.05255,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.02102,"8.2":0.01032,"9.2":0.05233,"10.1":0.01021,"11.1-11.2":0.03287,"12.0":0.23123,"13.0":0.03153,"14.0":0.47296,"15.0":0.01051,"16.0":1.08256},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.01648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00451,"11":0.41032,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":24.00314},S:{"2.5":0},R:{_:"0"},M:{"0":0.52723},Q:{"10.4":0},O:{"0":0.06041},H:{"0":2.06939}}; 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 ce104e0cb4bdde..f42d07f5cba3f4 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:{"33":0.00171,"43":0.00853,"50":0.00853,"51":0.00682,"52":0.01365,"53":0.00682,"54":0.00341,"55":0.00853,"56":0.00853,"57":0.01194,"58":0.00341,"66":0.00171,"72":0.03924,"78":0.00682,"84":0.00512,"88":0.00341,"91":0.00341,"95":0.02388,"96":0.00682,"97":0.01877,"98":0.25931,"99":0.69605,"100":0.14672,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 94 101 3.5 3.6"},D:{"18":0.00341,"25":0.00512,"29":0.02388,"34":0.00341,"39":0.00853,"40":0.01706,"41":0.00341,"42":0.00341,"43":0.00682,"44":0.00341,"46":0.00512,"47":0.00341,"48":0.00171,"49":0.01194,"51":0.00512,"52":0.00171,"53":0.00512,"54":0.00341,"55":0.00341,"56":0.00341,"57":0.00512,"58":0.04947,"59":0.00853,"60":0.01194,"61":0.00341,"62":0.00171,"63":0.00853,"64":0.01024,"65":0.00682,"66":0.00341,"67":0.00512,"69":0.00853,"70":0.00171,"71":0.00512,"74":0.00341,"75":0.00853,"76":0.00171,"77":0.00171,"79":0.03071,"81":0.01365,"84":0.00341,"85":0.01877,"86":0.00341,"87":0.01194,"88":0.00341,"89":0.00512,"90":0.01194,"91":0.01024,"92":0.00853,"93":0.25249,"94":0.01194,"95":0.01194,"96":0.01706,"97":0.03071,"98":0.04265,"99":0.77623,"100":3.50924,"101":0.08018,"102":0.02559,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 26 27 28 30 31 32 33 35 36 37 38 45 50 68 72 73 78 80 83 103 104"},F:{"31":0.00512,"40":0.00341,"79":0.05289,"84":0.04094,"85":0.25419,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 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.02388,"15":0.00682,"16":0.01706,"17":0.00171,"18":3.6679,"84":0.00341,"87":0.00512,"89":0.00512,"90":0.00512,"91":0.00341,"92":0.01706,"94":0.03412,"96":0.01194,"97":0.01024,"98":0.01365,"99":0.18937,"100":1.02531,"101":0.00341,_:"13 14 79 80 81 83 85 86 88 93 95"},E:{"4":0,"8":0.00171,"11":0.00171,"14":0.02559,"15":0.00682,_:"0 5 6 7 9 10 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01535,"12.1":0.00512,"13.1":0.03241,"14.1":0.08018,"15.1":0.06995,"15.2-15.3":0.00853,"15.4":0.09895},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04533,"6.0-6.1":0,"7.0-7.1":0.03526,"8.1-8.4":0,"9.0-9.2":0.00336,"9.3":0.16621,"10.0-10.2":0.00504,"10.3":0.36095,"11.0-11.2":0.02518,"11.3-11.4":0.09401,"12.0-12.1":0.18299,"12.2-12.5":4.28943,"13.0-13.1":0.06715,"13.2":0.01847,"13.3":0.37438,"13.4-13.7":0.2619,"14.0-14.4":2.85906,"14.5-14.8":2.3722,"15.0-15.1":1.33636,"15.2-15.3":2.54008,"15.4":1.74767},P:{"4":0.87799,"5.0-5.4":0.04084,"6.2-6.4":0.03063,"7.2-7.4":0.37774,"8.2":0.01021,"9.2":0.03063,"10.1":0.0102,"11.1-11.2":0.07146,"12.0":0.03055,"13.0":0.14293,"14.0":0.18377,"15.0":0.10209,"16.0":0.82694},I:{"0":0,"3":0,"4":0.00023,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00023,"4.2-4.3":0.009,"4.4":0,"4.4.3-4.4.4":0.04029},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00341,"9":0.00341,"10":0.00341,"11":0.01535,_:"6 7 5.5"},J:{"7":0,"10":0.14098},N:{"10":0.06186,_:"11"},L:{"0":63.9092},S:{"2.5":0},R:{_:"0"},M:{"0":0.03317},Q:{"10.4":0},O:{"0":0.63027},H:{"0":2.70084}}; +module.exports={C:{"34":0.00817,"40":0.00204,"43":0.00613,"44":0.00409,"47":0.00409,"50":0.00409,"51":0.00409,"52":0.00817,"53":0.00409,"54":0.00613,"55":0.00613,"56":0.00817,"57":0.00409,"58":0.00613,"59":0.00204,"62":0.00409,"65":0.00409,"68":0.00409,"72":0.00409,"75":0.00204,"78":0.00409,"83":0.00204,"88":0.00817,"89":0.00204,"90":0.01022,"91":0.00817,"97":0.00409,"98":0.00409,"99":0.24107,"100":0.87645,"101":0.10011,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 45 46 48 49 60 61 63 64 66 67 69 70 71 73 74 76 77 79 80 81 82 84 85 86 87 92 93 94 95 96 102 103 3.5 3.6"},D:{"11":0.00613,"18":0.00204,"26":0.00204,"39":0.00204,"41":0.00204,"42":0.00613,"43":0.00409,"44":0.00204,"45":0.01022,"46":0.02043,"47":0.00409,"48":0.00204,"51":0.00409,"52":0.00409,"53":0.00817,"54":0.00204,"56":0.0286,"57":0.00204,"58":0.04495,"60":0.00409,"61":0.00204,"62":0.00204,"63":0.00204,"64":0.00409,"65":0.02452,"66":0.00817,"67":0.00817,"69":0.00409,"71":0.02043,"72":0.00204,"74":0.00204,"75":0.00613,"76":0.00817,"77":0.00204,"79":0.01226,"80":0.0143,"81":0.01226,"83":0.00204,"84":0.00613,"85":0.0429,"86":0.00204,"87":0.10011,"88":0.0143,"89":0.01634,"90":0.00613,"91":0.01226,"92":0.01634,"93":0.01226,"94":0.01022,"95":0.00409,"96":0.02043,"97":0.02043,"98":0.01839,"99":0.06742,"100":0.89688,"101":4.77858,"102":0.38613,"103":0.01226,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 40 49 50 55 59 68 70 73 78 104"},F:{"42":0.00204,"79":0.00817,"83":0.00204,"85":0.14097,"86":0.2329,"87":0.00409,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 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.01226,"13":0.00613,"15":0.00409,"16":0.00817,"17":0.0143,"18":5.55287,"80":0.00409,"83":0.00613,"84":0.00409,"90":0.00817,"91":0.00204,"92":0.01839,"94":0.00204,"96":0.00613,"98":0.00409,"99":0.02452,"100":0.13075,"101":1.33204,_:"14 79 81 85 86 87 88 89 93 95 97"},E:{"4":0,"11":0.00204,"13":0.00409,"14":0.03473,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1","9.1":0.00613,"10.1":0.00817,"11.1":0.00204,"12.1":0.00817,"13.1":0.01839,"14.1":0.08172,"15.1":0.03473,"15.2-15.3":0.00817,"15.4":0.34118,"15.5":0.07559},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00317,"5.0-5.1":0.04274,"6.0-6.1":0,"7.0-7.1":0.16938,"8.1-8.4":0.00158,"9.0-9.2":0,"9.3":0.07757,"10.0-10.2":0.00475,"10.3":0.65693,"11.0-11.2":0.02216,"11.3-11.4":0.06332,"12.0-12.1":0.13297,"12.2-12.5":2.65621,"13.0-13.1":0.05699,"13.2":0.03483,"13.3":0.94661,"13.4-13.7":0.39099,"14.0-14.4":2.20823,"14.5-14.8":2.00244,"15.0-15.1":1.82515,"15.2-15.3":1.22679,"15.4":3.29572},P:{"4":0.68396,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.34709,"8.2":0.01032,"9.2":0.03063,"10.1":0.01021,"11.1-11.2":0.05104,"12.0":0.01021,"13.0":0.08167,"14.0":0.25521,"15.0":0.04083,"16.0":0.62271},I:{"0":0,"3":0,"4":0.00006,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00019,"4.2-4.3":0.00894,"4.4":0,"4.4.3-4.4.4":0.03058},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00409,"11":0.01634,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.07957},N:{"10":0.01411,_:"11"},L:{"0":60.42414},S:{"2.5":0},R:{_:"0"},M:{"0":0.03183},Q:{"10.4":0},O:{"0":0.67635},H:{"0":2.15449}}; 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 966d9448690708..c892c265e0323f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js @@ -1 +1 @@ -module.exports={C:{"34":0.00153,"37":0.00229,"45":0.00076,"46":0.00153,"47":0.00229,"53":0.00076,"56":0.00076,"60":0.00229,"72":0.00305,"77":0.00076,"78":0.00153,"79":0.00153,"88":0.00076,"91":0.00382,"95":0.01297,"96":0.00153,"97":0.00458,"98":0.09461,"99":0.29528,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 44 48 49 50 51 52 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 80 81 82 83 84 85 86 87 89 90 92 93 94 100 101 3.5 3.6"},D:{"28":0.00076,"33":0.00534,"34":0.00076,"37":0.00153,"38":0.00076,"39":0.00076,"40":0.00305,"42":0.00153,"43":0.00229,"46":0.00076,"49":0.00153,"50":0.00382,"54":0.00076,"55":0.00076,"56":0.01908,"57":0.00076,"58":0.00076,"60":0.00153,"63":0.00229,"64":0.00229,"65":0.00153,"67":0.00153,"69":0.00229,"70":0.01068,"72":0.00305,"74":0.00153,"76":0.02213,"78":0.00153,"79":0.00229,"80":0.00229,"81":0.00229,"83":0.00229,"84":0.00839,"85":0.00153,"86":0.0145,"87":0.00534,"88":0.00229,"89":0.00458,"91":0.00305,"92":0.00534,"93":0.03968,"94":0.00305,"95":0.00229,"96":0.02289,"97":0.01908,"98":0.01755,"99":0.28689,"100":1.34746,"101":0.01831,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 35 36 41 44 45 47 48 51 52 53 59 61 62 66 68 71 73 75 77 90 102 103 104"},F:{"79":0.00305,"84":0.01145,"85":0.0496,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 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.01373,"13":0.00382,"15":0.00076,"17":0.00229,"18":0.02671,"84":0.0061,"85":0.00229,"87":0.00153,"89":0.00763,"90":0.00229,"91":0.00305,"92":0.02899,"93":0.00153,"94":0.00076,"96":0.00763,"97":0.00229,"98":0.01297,"99":0.0557,"100":0.2991,_:"14 16 79 80 81 83 86 88 95 101"},E:{"4":0,"12":0.00076,"13":0.00076,"14":0.01297,"15":0.00153,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00076,"10.1":0.01221,"11.1":0.00153,"12.1":0.00458,"13.1":0.0061,"14.1":0.01068,"15.1":0.00992,"15.2-15.3":0.00229,"15.4":0.02518},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.07644,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03276,"10.0-10.2":0.02866,"10.3":0.273,"11.0-11.2":0.18018,"11.3-11.4":0.2416,"12.0-12.1":0.54326,"12.2-12.5":5.17057,"13.0-13.1":0.42997,"13.2":0.06825,"13.3":0.20884,"13.4-13.7":0.45318,"14.0-14.4":1.54244,"14.5-14.8":1.24214,"15.0-15.1":1.00873,"15.2-15.3":1.46054,"15.4":0.68249},P:{"4":0.63997,"5.0-5.4":0.1219,"6.2-6.4":0.2438,"7.2-7.4":0.35554,"8.2":0.01034,"9.2":0.18285,"10.1":0.04063,"11.1-11.2":0.21332,"12.0":0.04063,"13.0":0.15237,"14.0":0.48759,"15.0":0.28443,"16.0":1.00566},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00045,"4.2-4.3":0.00152,"4.4":0,"4.4.3-4.4.4":0.01651},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01221,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":64.52618},S:{"2.5":0.08313},R:{_:"0"},M:{"0":0.01847},Q:{"10.4":0.02771},O:{"0":0.13856},H:{"0":13.7996}}; +module.exports={C:{"27":0.00084,"37":0.00253,"47":0.00253,"49":0.00253,"54":0.00169,"56":0.00169,"67":0.00169,"69":0.0118,"79":0.00169,"91":0.00422,"92":0.02445,"93":0.00169,"95":0.03119,"96":0.00169,"97":0.00337,"98":0.00759,"99":0.05058,"100":0.24278,"101":0.00337,_:"2 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 38 39 40 41 42 43 44 45 46 48 50 51 52 53 55 57 58 59 60 61 62 63 64 65 66 68 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 94 102 103 3.5 3.6"},D:{"19":0.00253,"28":0.00253,"29":0.00253,"33":0.00253,"36":0.00169,"38":0.00253,"42":0.00169,"43":0.00169,"49":0.00084,"54":0.00253,"55":0.00759,"57":0.00169,"58":0.00084,"60":0.00253,"63":0.00169,"64":0.00422,"67":0.00084,"68":0.00337,"69":0.00337,"70":0.00337,"72":0.00422,"73":0.00169,"74":0.00169,"75":0.01602,"76":0.00506,"77":0.00084,"78":0.00169,"79":0.0059,"80":0.00169,"81":0.00337,"83":0.00253,"84":0.00169,"86":0.01602,"87":0.00759,"88":0.00253,"89":0.00506,"90":0.00253,"91":0.00337,"92":0.00337,"93":0.05227,"94":0.0059,"95":0.00253,"96":0.02276,"97":0.01349,"98":0.01349,"99":0.04805,"100":0.42487,"101":1.82762,"102":0.14331,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 30 31 32 34 35 37 39 40 41 44 45 46 47 48 50 51 52 53 56 59 61 62 65 66 71 85 103 104"},F:{"22":0.00169,"48":0.00084,"73":0.00337,"77":0.00169,"79":0.00084,"84":0.00169,"85":0.02276,"86":0.05395,"87":0.00169,_:"9 11 12 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 78 80 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.03372,"13":0.00169,"15":0.00084,"16":0.00084,"17":0.00422,"18":0.01939,"84":0.00422,"85":0.00674,"87":0.00253,"89":0.00759,"90":0.00422,"91":0.00084,"92":0.01939,"93":0.00169,"94":0.00169,"95":0.00253,"96":0.00337,"97":0.01012,"98":0.00337,"99":0.01012,"100":0.02698,"101":0.42824,_:"14 79 80 81 83 86 88"},E:{"4":0,"12":0.00169,"13":0.00506,"14":0.03035,"15":0.00674,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 12.1","10.1":0.02698,"11.1":0.00169,"13.1":0.00422,"14.1":0.02108,"15.1":0.00843,"15.2-15.3":0.00253,"15.4":0.03878,"15.5":0.00674},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00271,"6.0-6.1":0.00271,"7.0-7.1":0.09636,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.23072,"10.0-10.2":0.019,"10.3":0.37323,"11.0-11.2":0.14386,"11.3-11.4":0.23615,"12.0-12.1":0.67724,"12.2-12.5":4.29826,"13.0-13.1":0.36509,"13.2":0.06515,"13.3":0.22937,"13.4-13.7":0.3963,"14.0-14.4":1.50785,"14.5-14.8":1.10612,"15.0-15.1":1.01383,"15.2-15.3":1.32734,"15.4":1.47935},P:{"4":0.74104,"5.0-5.4":0.13197,"6.2-6.4":0.06091,"7.2-7.4":0.34514,"8.2":0.01032,"9.2":0.16242,"10.1":0.01021,"11.1-11.2":0.15227,"12.0":0.05076,"13.0":0.09136,"14.0":0.36544,"15.0":0.11166,"16.0":1.10648},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00023,"4.2-4.3":0.00046,"4.4":0,"4.4.3-4.4.4":0.02678},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01939,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":68.1849},S:{"2.5":0.0641},R:{_:"0"},M:{"0":0.02747},Q:{"10.4":0.03663},O:{"0":0.23808},H:{"0":9.62287}}; 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 13ef9ddbca069a..c82347ed288c14 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js @@ -1 +1 @@ -module.exports={C:{"52":0.01433,"78":0.01433,"91":0.02866,"95":0.00716,"96":0.00716,"97":0.02149,"98":0.54446,"99":1.31818,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 100 101 3.5 3.6"},D:{"49":0.02866,"52":0.00716,"63":0.01433,"79":0.02149,"83":0.04298,"84":0.05731,"86":0.00716,"87":0.00716,"88":0.01433,"92":0.01433,"95":0.00716,"96":0.1003,"97":0.05015,"98":0.21492,"99":1.88413,"100":8.5968,"101":0.29372,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 85 89 90 91 93 94 102 103 104"},F:{"11":4.16228,"28":0.02866,"84":0.06448,"85":0.37253,"86":0.00716,_:"9 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 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.00716,"96":0.01433,"97":0.07164,"98":0.01433,"99":0.58028,"100":2.34979,"101":0.04298,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95"},E:{"4":0,"5":0.17194,"13":0.02866,"14":0.17194,"15":0.05015,_:"0 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01433,"12.1":0.06448,"13.1":0.26507,"14.1":0.41551,"15.1":0.20776,"15.2-15.3":0.11462,"15.4":0.69491},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.00497,"9.0-9.2":0,"9.3":0.03905,"10.0-10.2":0.00142,"10.3":0.03053,"11.0-11.2":0.00923,"11.3-11.4":0.00071,"12.0-12.1":0.00852,"12.2-12.5":0.26906,"13.0-13.1":0.01562,"13.2":0.01988,"13.3":0.0213,"13.4-13.7":0.06531,"14.0-14.4":0.27829,"14.5-14.8":0.81641,"15.0-15.1":0.44725,"15.2-15.3":2.46272,"15.4":2.60541},P:{"4":0.01067,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.1067,"8.2":0.01034,"9.2":0.01067,"10.1":0.0102,"11.1-11.2":0.06402,"12.0":0.03201,"13.0":0.06402,"14.0":0.17072,"15.0":0.04268,"16.0":1.87792},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00129,"4.2-4.3":0.00129,"4.4":0,"4.4.3-4.4.4":0.02578},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":46.44421,"11":0.07164,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":19.14891},S:{"2.5":0},R:{_:"0"},M:{"0":0.20136},Q:{"10.4":0},O:{"0":0.00567},H:{"0":0.06175}}; +module.exports={C:{"38":0.00896,"50":0.00448,"52":0.01792,"60":0.01344,"78":0.05823,"80":0.01344,"84":0.00896,"89":0.00448,"91":0.0851,"92":0.00896,"95":0.00448,"97":0.00896,"98":0.04479,"99":0.71216,"100":2.92927,"101":0.01344,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 85 86 87 88 90 93 94 96 102 103 3.5 3.6"},D:{"29":0.00448,"49":0.19708,"51":0.01792,"58":0.00896,"63":0.00896,"67":0.00448,"71":0.00448,"75":0.01344,"78":0.00448,"79":0.05375,"81":0.00896,"83":0.01344,"84":0.12541,"87":0.02687,"88":0.03583,"89":0.01792,"90":0.00896,"91":0.01792,"92":0.01344,"93":0.00896,"94":0.00896,"95":0.01344,"96":0.14781,"97":0.04031,"98":0.04479,"99":0.22395,"100":4.33567,"101":15.05392,"102":1.35714,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 59 60 61 62 64 65 66 68 69 70 72 73 74 76 77 80 85 86 103 104"},F:{"28":0.04031,"85":0.47925,"86":0.28218,"87":0.04479,_:"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:{"16":0.00896,"17":0.00448,"18":0.00896,"86":0.00896,"89":0.00448,"95":0.00448,"96":0.0224,"97":0.06719,"98":0.01792,"99":0.06271,"100":0.19708,"101":4.54171,_:"12 13 14 15 79 80 81 83 84 85 87 88 90 91 92 93 94"},E:{"4":0,"11":0.01344,"12":0.00448,"13":0.03583,"14":0.24187,"15":0.09406,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00896,"11.1":0.04031,"12.1":0.06719,"13.1":0.46134,"14.1":0.48373,"15.1":0.22843,"15.2-15.3":0.15677,"15.4":1.27652,"15.5":0.17468},G:{"8":0.01111,"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.01587,"9.0-9.2":0,"9.3":0.08571,"10.0-10.2":0,"10.3":0.06666,"11.0-11.2":0.00317,"11.3-11.4":0.00635,"12.0-12.1":0.69043,"12.2-12.5":0.49521,"13.0-13.1":0.01587,"13.2":0.02857,"13.3":0.03968,"13.4-13.7":0.09523,"14.0-14.4":0.49521,"14.5-14.8":1.3396,"15.0-15.1":0.6206,"15.2-15.3":1.31897,"15.4":10.55015},P:{"4":0.08244,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.24732,"8.2":0.01032,"9.2":0.05233,"10.1":0.01021,"11.1-11.2":0.12366,"12.0":0.07214,"13.0":0.09275,"14.0":0.21641,"15.0":0.06183,"16.0":1.37057},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.03313},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":7.82481,"11":0.1075,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":35.32214},S:{"2.5":0},R:{_:"0"},M:{"0":0.3147},Q:{"10.4":0},O:{"0":0},H:{"0":0.07318}}; 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 67577d238c5712..eec439a6290540 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:{"52":0.07128,"57":0.00792,"61":0.00792,"62":0.01584,"63":0.01584,"64":0.00792,"71":0.01584,"72":0.02376,"85":0.03168,"97":0.07128,"98":0.41976,"99":1.96416,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 65 66 67 68 69 70 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 100 101 3.5 3.6"},D:{"18":0.00792,"38":0.01584,"54":0.03168,"63":0.14256,"64":0.1584,"67":0.00792,"70":0.01584,"79":0.0792,"85":0.20592,"86":0.00792,"87":0.01584,"89":0.01584,"92":0.0792,"95":0.01584,"96":0.19008,"97":0.03168,"98":0.49104,"99":1.63944,"100":9.63864,"101":0.18216,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 59 60 61 62 65 66 68 69 71 72 73 74 75 76 77 78 80 81 83 84 88 90 91 93 94 102 103 104"},F:{"64":0.07128,"83":0.01584,"84":0.03168,"85":0.06336,_:"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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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.05544,"16":0.01584,"18":0.0396,"86":0.02376,"89":0.03168,"91":0.00792,"92":2.178,"95":0.03168,"96":0.15048,"98":0.02376,"99":9.53568,"100":48.45456,"101":0.60192,_:"13 14 15 17 79 80 81 83 84 85 87 88 90 93 94 97"},E:{"4":0,"14":0.0792,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 7.1 9.1 10.1 12.1","6.1":0.49896,"11.1":0.01584,"13.1":0.01584,"14.1":0.03168,"15.1":0.0396,"15.2-15.3":0.05544,"15.4":0.04752},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.00295,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00295,"10.0-10.2":0,"10.3":0.03051,"11.0-11.2":0.61666,"11.3-11.4":0.00443,"12.0-12.1":0.00787,"12.2-12.5":0.83862,"13.0-13.1":0.00394,"13.2":0.00591,"13.3":0.00295,"13.4-13.7":0.02756,"14.0-14.4":0.71509,"14.5-14.8":0.3135,"15.0-15.1":0.76676,"15.2-15.3":1.12898,"15.4":0.45081},P:{"4":0.59083,"5.0-5.4":0.01029,"6.2-6.4":0.07073,"7.2-7.4":0.17485,"8.2":0.02057,"9.2":0.02057,"10.1":0.04099,"11.1-11.2":0.14399,"12.0":0.03086,"13.0":0.03282,"14.0":0.14399,"15.0":0.12342,"16.0":0.43765},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01815,"4.2-4.3":0.27616,"4.4":0,"4.4.3-4.4.4":0.21345},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07128,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":14.62152},S:{"2.5":0},R:{_:"0"},M:{"0":0.04578},Q:{"10.4":0.00208},O:{"0":0.13318},H:{"0":0.10048}}; +module.exports={C:{"52":0.04994,"60":0.00832,"70":0.03329,"71":0.04994,"72":0.00832,"85":0.01665,"88":0.00832,"91":0.00832,"99":0.22472,"100":0.99876,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 73 74 75 76 77 78 79 80 81 82 83 84 86 87 89 90 92 93 94 95 96 97 98 101 102 103 3.5 3.6"},D:{"49":0.00832,"54":0.01665,"55":0.00832,"64":0.09988,"67":0.00832,"72":0.00832,"75":0.01665,"79":0.11652,"86":0.04994,"87":0.1082,"88":0.02497,"92":0.04162,"93":0.00832,"94":0.20808,"95":0.01665,"96":0.03329,"97":0.08323,"98":0.30795,"99":0.04994,"100":1.92261,"101":9.13865,"102":0.65752,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 56 57 58 59 60 61 62 63 65 66 68 69 70 71 73 74 76 77 78 80 81 83 84 85 89 90 91 103 104"},F:{"83":0.02497,"85":0.1082,"86":0.04162,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 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.02497,"13":0.01665,"18":0.04994,"84":0.01665,"89":0.00832,"92":1.84771,"95":0.01665,"96":0.01665,"98":0.01665,"99":4.21976,"100":0.81565,"101":59.76746,_:"14 15 16 17 79 80 81 83 85 86 87 88 90 91 93 94 97"},E:{"4":0,"14":0.01665,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 7.1 9.1 10.1 12.1 15.5","6.1":0.07491,"11.1":0.09155,"13.1":0.02497,"14.1":0.02497,"15.1":0.00832,"15.2-15.3":0.14981,"15.4":0.27466},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,"7.0-7.1":0.06674,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02988,"10.0-10.2":0.00078,"10.3":0.04501,"11.0-11.2":0.55137,"11.3-11.4":0.00233,"12.0-12.1":0.0388,"12.2-12.5":0.78574,"13.0-13.1":0.00388,"13.2":0.00504,"13.3":0.0066,"13.4-13.7":0.04035,"14.0-14.4":0.35969,"14.5-14.8":0.1847,"15.0-15.1":0.30188,"15.2-15.3":0.50986,"15.4":0.94638},P:{"4":0.43796,"5.0-5.4":0.0107,"6.2-6.4":0.03051,"7.2-7.4":0.01095,"8.2":0.01032,"9.2":0.02064,"10.1":0.04105,"11.1-11.2":0.0219,"12.0":0.02064,"13.0":0.03285,"14.0":0.01095,"15.0":0.01095,"16.0":0.18613},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00164,"4.2-4.3":0.07565,"4.4":0,"4.4.3-4.4.4":0.14575},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15814,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":11.66162},S:{"2.5":0.01174},R:{_:"0"},M:{"0":0.06205},Q:{"10.4":0.00335},O:{"0":0.11907},H:{"0":0.13336}}; 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 48c9de7951c872..a2f6561554a105 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:{"52":0.75238,"56":0.00588,"60":0.01176,"66":0.00588,"68":0.15871,"78":0.03527,"81":0.01763,"82":0.00588,"83":0.01176,"84":0.01176,"87":0.01763,"88":0.0529,"89":0.01176,"91":0.08817,"92":0.01176,"93":0.00588,"94":0.14695,"95":0.01176,"96":0.01763,"97":0.0529,"98":1.83394,"99":5.26081,"100":0.01176,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 85 86 90 101 3.5 3.6"},D:{"22":0.42322,"34":0.11168,"38":0.241,"39":0.08817,"47":0.15283,"49":0.39383,"53":0.01176,"56":0.01176,"58":0.03527,"60":0.00588,"61":0.12344,"62":0.58192,"65":0.01176,"67":0.01176,"69":0.26451,"71":0.01763,"72":0.02939,"74":0.00588,"75":0.00588,"76":0.00588,"77":0.09405,"78":0.01763,"79":0.20573,"80":0.02939,"81":0.01763,"83":0.02351,"84":0.02351,"85":0.01763,"86":0.02939,"87":0.08229,"88":0.16458,"89":0.07054,"90":0.02351,"91":0.23512,"92":0.02351,"93":0.01763,"94":0.01763,"95":0.04702,"96":0.06466,"97":0.05878,"98":0.19397,"99":6.47756,"100":27.6795,"101":0.52314,_:"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 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 63 64 66 68 70 73 102 103 104"},F:{"12":0.09993,"25":0.07054,"28":0.00588,"31":0.8288,"40":0.5878,"84":0.20573,"85":0.83468,"86":0.01763,_:"9 11 15 16 17 18 19 20 21 22 23 24 26 27 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 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 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.14107,"92":0.0529,"95":0.00588,"96":0.01176,"97":0.1058,"98":0.02939,"99":0.42909,"100":2.52166,"101":0.03527,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94"},E:{"4":0,"13":0.02351,"14":0.05878,"15":0.02351,_:"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.01763,"12.1":0.03527,"13.1":0.09405,"14.1":0.21749,"15.1":0.0529,"15.2-15.3":0.0529,"15.4":0.39383},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0025,"6.0-6.1":0.00062,"7.0-7.1":0.26796,"8.1-8.4":0.00187,"9.0-9.2":0,"9.3":0.04997,"10.0-10.2":0.00187,"10.3":0.05746,"11.0-11.2":0.00874,"11.3-11.4":0.01624,"12.0-12.1":0.00812,"12.2-12.5":0.31605,"13.0-13.1":0.00562,"13.2":0.02436,"13.3":0.01811,"13.4-13.7":0.09057,"14.0-14.4":0.18613,"14.5-14.8":0.61087,"15.0-15.1":0.23173,"15.2-15.3":2.23297,"15.4":2.11305},P:{"4":0.46313,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.13439,"8.2":0.01034,"9.2":0.06203,"10.1":0.0102,"11.1-11.2":0.05385,"12.0":0.01077,"13.0":0.09693,"14.0":0.05385,"15.0":0.05385,"16.0":1.60479},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00777,"4.2-4.3":0.20013,"4.4":0,"4.4.3-4.4.4":0.23316},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00588,"11":0.52902,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":32.33012},S:{"2.5":0},R:{_:"0"},M:{"0":0.23495},Q:{"10.4":0},O:{"0":0.09893},H:{"0":0.30049}}; +module.exports={C:{"52":0.55145,"60":0.01199,"68":0.12587,"77":0.01199,"78":0.02997,"81":0.04795,"84":0.01199,"87":0.00599,"88":0.04795,"89":0.01798,"90":0.03596,"91":0.07792,"94":0.12587,"95":0.01199,"96":0.01199,"97":0.01199,"98":0.05395,"99":1.3007,"100":5.72427,"101":0.01199,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 82 83 85 86 92 93 102 103 3.5 3.6"},D:{"22":0.4016,"34":0.14985,"38":0.25175,"39":0.0959,"47":0.38362,"49":0.38362,"53":0.00599,"56":0.00599,"58":0.03596,"60":0.00599,"61":0.05395,"62":0.38961,"65":0.00599,"67":0.01199,"68":0.00599,"69":0.2038,"71":0.01798,"72":0.02398,"74":0.00599,"77":0.08392,"78":0.00599,"79":0.08392,"80":0.01798,"81":0.01798,"83":0.02398,"84":0.02997,"85":0.02997,"86":0.03596,"87":0.08991,"88":0.02398,"89":0.07193,"90":0.01199,"91":0.32967,"92":0.02398,"93":0.01798,"94":0.01798,"95":0.02398,"96":0.05395,"97":0.03596,"98":0.05994,"99":0.36563,"100":6.28171,"101":26.51146,"102":2.2957,_:"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 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 63 64 66 70 73 75 76 103 104"},F:{"12":0.10789,"25":0.00599,"31":0.81518,"40":0.61139,"46":0.07193,"77":0.00599,"85":0.52148,"86":0.64136,"87":0.02997,_:"9 11 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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.15584,"18":0.00599,"92":0.04196,"96":0.01199,"97":0.08991,"98":0.00599,"99":0.01798,"100":0.14985,"101":2.82317,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.02398,"14":0.07193,"15":0.02398,_:"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.01798,"12.1":0.03596,"13.1":0.1019,"14.1":0.17982,"15.1":0.04196,"15.2-15.3":0.04795,"15.4":0.64136,"15.5":0.07792},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00194,"6.0-6.1":0.00065,"7.0-7.1":0.28919,"8.1-8.4":0.00065,"9.0-9.2":0,"9.3":0.05305,"10.0-10.2":0.00194,"10.3":0.05758,"11.0-11.2":0.00518,"11.3-11.4":0.01488,"12.0-12.1":0.00647,"12.2-12.5":0.29889,"13.0-13.1":0.00518,"13.2":0.01553,"13.3":0.01747,"13.4-13.7":0.09187,"14.0-14.4":0.16691,"14.5-14.8":0.5208,"15.0-15.1":0.18244,"15.2-15.3":0.46904,"15.4":4.26603},P:{"4":0.16433,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.12559,"8.2":0.01032,"9.2":0.05233,"10.1":0.01021,"11.1-11.2":0.03287,"12.0":0.03157,"13.0":0.08765,"14.0":0.05478,"15.0":0.02191,"16.0":0.5916},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00815,"4.2-4.3":0.21608,"4.4":0,"4.4.3-4.4.4":0.23646},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00599,"11":0.61738,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":31.31862},S:{"2.5":0},R:{_:"0"},M:{"0":0.24036},Q:{"10.4":0},O:{"0":0.07611},H:{"0":0.28065}}; 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 33f237d7b30c0d..6d2ec59aca3691 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:{"52":0.01873,"72":0.00749,"73":0.17227,"78":0.01498,"88":0.00375,"90":0.01498,"91":0.02622,"92":0.00375,"95":0.00375,"96":0.00749,"97":0.01124,"98":0.38199,"99":1.22462,"100":0.01124,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 87 89 93 94 101 3.5 3.6"},D:{"38":0.00749,"49":0.02622,"50":0.01124,"53":0.00375,"65":0.01873,"69":0.01498,"70":0.00749,"71":0.00375,"72":0.00375,"73":0.00749,"74":0.00375,"75":0.02622,"76":0.04869,"78":0.01498,"79":0.08239,"80":0.01124,"81":0.02247,"83":0.01873,"84":0.00749,"86":0.06741,"87":0.03745,"88":0.01498,"89":0.01873,"90":0.01873,"91":0.07116,"92":0.04494,"93":0.04494,"94":0.02247,"95":0.0412,"96":0.06367,"97":0.09363,"98":0.15729,"99":3.80867,"100":20.79224,"101":0.34829,"102":0.01124,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 54 55 56 57 58 59 60 61 62 63 64 66 67 68 77 85 103 104"},F:{"84":0.45689,"85":1.33322,"86":0.02247,_:"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 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.01498,"84":0.00375,"85":0.01498,"89":0.00749,"90":0.00749,"92":0.00749,"96":0.01124,"97":0.01498,"98":0.01873,"99":0.31458,"100":2.37059,"101":0.04494,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 91 93 94 95"},E:{"4":0,"11":0.00375,"13":0.02247,"14":0.06367,"15":0.04494,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00749,"11.1":0.00749,"12.1":0.01498,"13.1":0.13857,"14.1":0.2247,"15.1":0.07865,"15.2-15.3":0.09737,"15.4":0.57299},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00082,"6.0-6.1":0.00981,"7.0-7.1":0.01144,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01471,"10.0-10.2":0.00082,"10.3":0.0188,"11.0-11.2":0.0049,"11.3-11.4":0.00736,"12.0-12.1":0.00572,"12.2-12.5":0.22882,"13.0-13.1":0.00654,"13.2":0.0049,"13.3":0.02697,"13.4-13.7":0.05884,"14.0-14.4":0.25007,"14.5-14.8":0.71916,"15.0-15.1":0.35304,"15.2-15.3":2.54485,"15.4":3.90146},P:{"4":0.12372,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.19589,"8.2":0.01034,"9.2":0.02062,"10.1":0.0102,"11.1-11.2":0.15465,"12.0":0.03093,"13.0":0.15465,"14.0":0.12372,"15.0":0.12372,"16.0":2.44352},I:{"0":0,"3":0,"4":0.00172,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01032,"4.4":0,"4.4.3-4.4.4":0.05676},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04494,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":52.23696},S:{"2.5":0},R:{_:"0"},M:{"0":0.26897},Q:{"10.4":0},O:{"0":0.06255},H:{"0":0.30201}}; +module.exports={C:{"52":0.01575,"72":0.00394,"73":0.11814,"78":0.02363,"89":0.00394,"90":0.02757,"91":0.0315,"95":0.00394,"96":0.00394,"97":0.00394,"98":0.01181,"99":0.25597,"100":1.35467,"101":0.01575,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 87 88 92 93 94 102 103 3.5 3.6"},D:{"38":0.00788,"49":0.02363,"50":0.00788,"65":0.01181,"67":0.00394,"69":0.01181,"70":0.00788,"75":0.00788,"76":0.04726,"78":0.01181,"79":0.0827,"80":0.01181,"81":0.01575,"83":0.01181,"84":0.00788,"86":0.07088,"87":0.04726,"88":0.01969,"89":0.01575,"90":0.01181,"91":0.05907,"92":0.0315,"93":0.05513,"94":0.0315,"95":0.01969,"96":0.06695,"97":0.07876,"98":0.06695,"99":0.16933,"100":4.59565,"101":19.87902,"102":2.1344,"103":0.00788,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 71 72 73 74 77 85 104"},F:{"84":0.00394,"85":1.07114,"86":0.88999,"87":0.04332,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01181,"85":0.01969,"92":0.00788,"96":0.00788,"97":0.01575,"98":0.01181,"99":0.02757,"100":0.12208,"101":2.76841,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01575,"14":0.07482,"15":0.04332,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1 9.1","6.1":0.01181,"10.1":0.00394,"11.1":0.00394,"12.1":0.01575,"13.1":0.12995,"14.1":0.20084,"15.1":0.07482,"15.2-15.3":0.06301,"15.4":0.86242,"15.5":0.15752},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00248,"6.0-6.1":0.00993,"7.0-7.1":0.00745,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01406,"10.0-10.2":0,"10.3":0.01985,"11.0-11.2":0.00331,"11.3-11.4":0.00579,"12.0-12.1":0.00414,"12.2-12.5":0.22088,"13.0-13.1":0.00827,"13.2":0.00414,"13.3":0.02068,"13.4-13.7":0.04633,"14.0-14.4":0.21923,"14.5-14.8":0.546,"15.0-15.1":0.2275,"15.2-15.3":0.52118,"15.4":6.38736},P:{"4":0.08215,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.18484,"8.2":0.01032,"9.2":0.02054,"10.1":0.01021,"11.1-11.2":0.16431,"12.0":0.03081,"13.0":0.12323,"14.0":0.14377,"15.0":0.07188,"16.0":1.03718},I:{"0":0,"3":0,"4":0.00136,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00682,"4.4":0,"4.4.3-4.4.4":0.04637},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04726,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":50.93286},S:{"2.5":0},R:{_:"0"},M:{"0":0.21217},Q:{"10.4":0},O:{"0":0.06668},H:{"0":0.29843}}; 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 53a4f4d51d32f6..a80b0fe95f85d6 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:{"78":0.00844,"84":0.05063,"91":0.05063,"96":0.03797,"97":0.01266,"98":0.50628,"99":1.92386,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 94 95 100 101 3.5 3.6"},D:{"49":0.01688,"63":0.00422,"65":0.00844,"75":0.01266,"76":0.06329,"77":0.01266,"79":0.19407,"83":0.04219,"84":0.00844,"87":0.04219,"88":0.00844,"90":0.01688,"91":0.05485,"92":0.01266,"93":0.10969,"94":0.02531,"95":0.00422,"96":0.16454,"97":0.17298,"98":0.54847,"99":4.39198,"100":18.76189,"101":0.16876,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 69 70 71 72 73 74 78 80 81 85 86 89 102 103 104"},F:{"84":0.19829,"85":0.46831,_:"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 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.00422,"17":0.00844,"18":0.02953,"96":0.02531,"97":0.04219,"98":0.01688,"99":0.88599,"100":3.82663,"101":0.02531,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95"},E:{"4":0,"10":0.01688,"13":0.06329,"14":0.32908,"15":0.13501,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.03375,"10.1":0.00844,"11.1":0.00844,"12.1":0.16454,"13.1":0.27845,"14.1":1.34164,"15.1":0.28689,"15.2-15.3":0.40081,"15.4":1.91965},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.03887,"9.0-9.2":0,"9.3":0.31096,"10.0-10.2":0.01196,"10.3":0.02392,"11.0-11.2":0.01794,"11.3-11.4":0.01794,"12.0-12.1":0.06279,"12.2-12.5":0.72357,"13.0-13.1":0.00897,"13.2":0.00897,"13.3":0.06279,"13.4-13.7":0.29302,"14.0-14.4":1.16908,"14.5-14.8":3.20824,"15.0-15.1":1.57871,"15.2-15.3":11.22436,"15.4":11.12569},P:{"4":0.26979,"5.0-5.4":0.01034,"6.2-6.4":0.03063,"7.2-7.4":0.1067,"8.2":0.01034,"9.2":0.01067,"10.1":0.0102,"11.1-11.2":0.09339,"12.0":0.03201,"13.0":0.08301,"14.0":0.07264,"15.0":0.04151,"16.0":4.34774},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00248,"4.4":0,"4.4.3-4.4.4":0.0033},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0886,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":23.08018},S:{"2.5":0},R:{_:"0"},M:{"0":0.28905},Q:{"10.4":0},O:{"0":0.06359},H:{"0":0.18061}}; +module.exports={C:{"52":0.00391,"78":0.01172,"84":0.03906,"91":0.01172,"95":0.05859,"96":0.05859,"98":0.00781,"99":0.51169,"100":1.3671,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 94 97 101 102 103 3.5 3.6"},D:{"49":0.03125,"65":0.01172,"66":0.00391,"67":0.00781,"68":0.00781,"69":0.00391,"70":0.01172,"75":0.01172,"76":0.03906,"77":0.02344,"79":0.23827,"83":0.03906,"84":0.01172,"85":0.01562,"86":0.00781,"87":0.03515,"88":0.00781,"90":0.00781,"91":0.04297,"92":0.02734,"93":0.01953,"94":0.00781,"95":0.00781,"96":0.09374,"97":0.10546,"98":0.39451,"99":0.52731,"100":4.94109,"101":14.70609,"102":1.53896,"103":0.07812,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 71 72 73 74 78 80 81 89 104"},F:{"85":0.34373,"86":0.2578,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00391,"15":0.00781,"18":0.01172,"96":0.01172,"97":0.00781,"98":0.01172,"99":0.08984,"100":0.2617,"101":3.5818,_:"12 13 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95"},E:{"4":0,"13":0.11718,"14":0.42185,"15":0.05468,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00781,"10.1":0.01172,"11.1":0.01562,"12.1":0.10156,"13.1":0.3242,"14.1":1.34757,"15.1":0.21483,"15.2-15.3":0.25389,"15.4":4.12474,"15.5":0.23827},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.01005,"9.0-9.2":0,"9.3":0.1809,"10.0-10.2":0.0134,"10.3":0.02345,"11.0-11.2":0.0134,"11.3-11.4":0.0335,"12.0-12.1":0.03015,"12.2-12.5":0.62644,"13.0-13.1":0.0067,"13.2":0.0067,"13.3":0.0804,"13.4-13.7":0.34169,"14.0-14.4":0.73029,"14.5-14.8":2.5024,"15.0-15.1":2.02671,"15.2-15.3":3.16234,"15.4":23.69743},P:{"4":0.20524,"5.0-5.4":0.05104,"6.2-6.4":0.03071,"7.2-7.4":0.24732,"8.2":0.01032,"9.2":0.02052,"10.1":0.01021,"11.1-11.2":0.06157,"12.0":0.07214,"13.0":0.03079,"14.0":0.07183,"15.0":0.06157,"16.0":2.07292},I:{"0":0,"3":0,"4":0.00163,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00244,"4.4":0,"4.4.3-4.4.4":0.00813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11718,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":22.60645},S:{"2.5":0},R:{_:"0"},M:{"0":0.26818},Q:{"10.4":0},O:{"0":0.04876},H:{"0":0.1558}}; 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 def793670936ce..128e6993d878dd 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:{"27":0.00566,"56":0.00283,"91":0.1556,"98":0.04809,"99":0.12165,_:"2 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 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 100 101 3.5 3.6"},D:{"26":0.00566,"43":0.01132,"50":0.07355,"52":0.00283,"55":0.00849,"59":0.00566,"67":0.02546,"70":0.01132,"79":0.04526,"80":0.00283,"86":3.17697,"87":0.02263,"88":0.01415,"89":0.00849,"92":0.00849,"95":0.00283,"96":0.03961,"97":0.37343,"98":0.03678,"99":2.49518,"100":14.52974,"101":0.14428,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 53 54 56 57 58 60 61 62 63 64 65 66 68 69 71 72 73 74 75 76 77 78 81 83 84 85 90 91 93 94 102 103 104"},F:{"76":0.02546,"84":0.00849,"85":0.15277,_:"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 77 78 79 80 81 82 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:{"12":0.01415,"14":0.01415,"18":0.0198,"89":0.00283,"95":0.00566,"97":0.0198,"99":0.25178,"100":1.18252,"101":0.00849,_:"13 15 16 17 79 80 81 83 84 85 86 87 88 90 91 92 93 94 96 98"},E:{"4":0,"14":0.00849,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 14.1 15.1","12.1":0.00283,"13.1":0.00566,"15.2-15.3":0.00566,"15.4":0.00849},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.0041,"7.0-7.1":0.16092,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02255,"10.0-10.2":0.21626,"10.3":0,"11.0-11.2":1.48411,"11.3-11.4":0.02357,"12.0-12.1":0.14452,"12.2-12.5":0.71541,"13.0-13.1":0.0205,"13.2":0.00205,"13.3":0,"13.4-13.7":4.26683,"14.0-14.4":0.63649,"14.5-14.8":0.17526,"15.0-15.1":0.18346,"15.2-15.3":0.88145,"15.4":1.30987},P:{"4":0.59024,"5.0-5.4":0.1219,"6.2-6.4":0.02035,"7.2-7.4":1.60789,"8.2":0.01034,"9.2":0.01018,"10.1":0.04063,"11.1-11.2":0.08141,"12.0":0.04063,"13.0":0.05088,"14.0":0.02035,"15.0":0.11194,"16.0":0.27477},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00034,"4.4":0,"4.4.3-4.4.4":0.014},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01697,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":60.77488},S:{"2.5":0.20079},R:{_:"0"},M:{"0":0.02151},Q:{"10.4":0},O:{"0":0.02868},H:{"0":2.43727}}; +module.exports={C:{"54":0.01343,"56":1.2309,"91":0.02686,"98":0.00895,"99":0.00895,"100":0.3178,"101":0.10295,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"43":0.00895,"49":0.00895,"50":0.02686,"67":0.0179,"79":0.00895,"86":2.47075,"87":0.00895,"92":0.0179,"95":0.00448,"96":0.00895,"97":0.27751,"98":0.0179,"99":0.04028,"100":3.25405,"101":27.38864,"102":2.0142,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 88 89 90 91 93 94 103 104"},F:{"76":0.00895,"85":0.10295,"86":0.34913,"87":0.00895,_:"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 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:{"12":0.00448,"18":0.06266,"92":0.00895,"97":0.07162,"100":0.02238,"101":1.83068,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99"},E:{"4":0,"14":0.03581,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5","13.1":0.02686,"14.1":0.00895,"15.4":0.03581},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.00094,"7.0-7.1":0.00094,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00234,"10.0-10.2":0.0431,"10.3":0.0075,"11.0-11.2":0.20894,"11.3-11.4":0.00234,"12.0-12.1":0.03326,"12.2-12.5":0.68773,"13.0-13.1":0.00656,"13.2":0.00328,"13.3":0.0089,"13.4-13.7":1.88517,"14.0-14.4":0.17615,"14.5-14.8":0.52095,"15.0-15.1":0.11009,"15.2-15.3":0.25439,"15.4":0.73177},P:{"4":0.65236,"5.0-5.4":0.13197,"6.2-6.4":0.06091,"7.2-7.4":1.25453,"8.2":0.01032,"9.2":0.16242,"10.1":0.01021,"11.1-11.2":0.07025,"12.0":0.03011,"13.0":0.19069,"14.0":0.03011,"15.0":0.02007,"16.0":0.28102},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0006,"4.4":0,"4.4.3-4.4.4":0.04359},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03133,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":50.51461},S:{"2.5":0.38116},R:{_:"0"},M:{"0":0.01657},Q:{"10.4":0},O:{"0":0.02762},H:{"0":1.48002}}; 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 e9ee4d171f4b13..0755a6121250cb 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:{"48":0.00364,"52":0.00364,"65":0.01091,"78":0.02182,"91":0.00727,"92":0.00727,"94":0.00364,"95":0.00364,"96":0.00364,"97":0.00364,"98":0.26906,"99":0.78174,"100":0.01818,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 93 101 3.5 3.6"},D:{"11":0.01091,"50":0.00727,"55":0.01091,"62":0.03272,"65":0.00727,"69":0.00364,"70":0.00364,"72":0.00727,"73":0.00364,"74":0.00727,"75":0.02909,"76":0.1309,"77":0.1309,"79":0.17816,"80":0.00727,"81":0.02182,"83":0.03272,"84":0.11635,"85":0.00727,"86":0.01818,"87":0.06908,"88":0.01454,"89":0.02182,"90":0.02182,"91":0.06908,"92":0.02182,"93":0.14544,"94":0.01818,"95":0.01454,"96":0.07272,"97":0.1818,"98":0.22907,"99":3.92324,"100":17.24918,"101":0.33088,"102":0.01818,_:"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 51 52 53 54 56 57 58 59 60 61 63 64 66 67 68 71 78 103 104"},F:{"68":0.00727,"77":0.00364,"84":0.16362,"85":0.50904,_:"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 70 71 72 73 74 75 76 78 79 80 81 82 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:{"12":0.00727,"13":0.00364,"15":0.00727,"16":0.01091,"17":0.00727,"18":0.03272,"84":0.01454,"89":0.00364,"92":0.00727,"96":0.0509,"97":0.0909,"98":0.03272,"99":0.88718,"100":4.34502,"101":0.04363,_:"14 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"14":0.10908,"15":0.0509,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00727,"13.1":0.03636,"14.1":0.17089,"15.1":0.12362,"15.2-15.3":0.09454,"15.4":0.38905},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01161,"6.0-6.1":0,"7.0-7.1":0.04064,"8.1-8.4":0.00484,"9.0-9.2":0,"9.3":0.07644,"10.0-10.2":0,"10.3":0.06579,"11.0-11.2":0.01838,"11.3-11.4":0.0358,"12.0-12.1":0.00774,"12.2-12.5":0.56312,"13.0-13.1":0.01161,"13.2":0.0029,"13.3":0.01838,"13.4-13.7":0.21383,"14.0-14.4":0.38412,"14.5-14.8":1.05755,"15.0-15.1":0.37058,"15.2-15.3":3.2036,"15.4":3.58482},P:{"4":0.29368,"5.0-5.4":0.1219,"6.2-6.4":0.02035,"7.2-7.4":0.27271,"8.2":0.01034,"9.2":0.02098,"10.1":0.08391,"11.1-11.2":0.35662,"12.0":0.01049,"13.0":0.0944,"14.0":0.17831,"15.0":0.11538,"16.0":4.12207},I:{"0":0,"3":0,"4":0.0151,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00629,"4.4":0,"4.4.3-4.4.4":0.09314},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04727,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":50.51858},S:{"2.5":0},R:{_:"0"},M:{"0":0.12726},Q:{"10.4":0},O:{"0":0.64266},H:{"0":0.24096}}; +module.exports={C:{"52":0.01754,"64":0.00351,"78":0.00701,"92":0.00351,"95":0.00351,"97":0.04559,"98":0.01052,"99":0.24198,"100":0.94689,"101":0.01754,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 102 103 3.5 3.6"},D:{"11":0.03507,"49":0.00701,"50":0.00351,"55":0.00701,"56":0.01052,"62":0.02455,"63":0.00701,"65":0.02455,"68":0.00351,"69":0.01403,"70":0.00701,"72":0.00351,"73":0.00701,"74":0.00701,"75":0.01754,"76":0.11924,"77":0.12976,"78":0.00351,"79":0.1508,"80":0.01052,"81":0.02455,"83":0.01754,"84":0.00701,"85":0.01754,"86":0.02455,"87":0.03858,"88":0.01754,"89":0.02104,"90":0.01052,"91":0.02104,"92":0.01403,"93":0.10872,"94":0.00701,"95":0.02806,"96":0.03507,"97":0.08768,"98":0.14379,"99":0.15782,"100":4.45389,"101":14.78902,"102":1.38527,"103":0.05962,_:"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 51 52 53 54 57 58 59 60 61 64 66 67 71 104"},F:{"28":0.00351,"68":0.02806,"69":0.00351,"85":0.36122,"86":0.31914,"87":0.01403,_:"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 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:{"12":0.00701,"13":0.00351,"15":0.00351,"16":0.00701,"17":0.00701,"18":0.01754,"80":0.00351,"89":0.00701,"92":0.01403,"95":0.04208,"96":0.01754,"97":0.02104,"98":0.01052,"99":0.07014,"100":0.25601,"101":4.58716,_:"14 79 81 83 84 85 86 87 88 90 91 93 94"},E:{"4":0,"14":0.09469,"15":0.01754,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00701,"13.1":0.02806,"14.1":0.13677,"15.1":0.08768,"15.2-15.3":0.04208,"15.4":0.67685,"15.5":0.07014},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00606,"6.0-6.1":0,"7.0-7.1":0.03333,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.16566,"10.0-10.2":0,"10.3":0.04748,"11.0-11.2":0.01414,"11.3-11.4":0.0101,"12.0-12.1":0.0101,"12.2-12.5":0.38587,"13.0-13.1":0.04141,"13.2":0.00404,"13.3":0.0202,"13.4-13.7":0.18889,"14.0-14.4":0.29496,"14.5-14.8":0.84446,"15.0-15.1":0.26162,"15.2-15.3":0.89901,"15.4":6.87084},P:{"4":0.44781,"5.0-5.4":0.13197,"6.2-6.4":0.06091,"7.2-7.4":0.31243,"8.2":0.01032,"9.2":0.03124,"10.1":0.1458,"11.1-11.2":0.49989,"12.0":0.02083,"13.0":0.0729,"14.0":0.19787,"15.0":0.13539,"16.0":1.65587},I:{"0":0,"3":0,"4":0.01525,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00678,"4.4":0,"4.4.3-4.4.4":0.09487},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01052,"11":0.03156,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":50.734},S:{"2.5":0},R:{_:"0"},M:{"0":0.09741},Q:{"10.4":0},O:{"0":0.39613},H:{"0":0.47955}}; 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 c4150f04090390..47e5bf6c422fe2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js @@ -1 +1 @@ -module.exports={C:{"34":0.03128,"51":0.00894,"52":0.02681,"53":0.00894,"54":0.00447,"55":0.00894,"56":0.00894,"57":0.00894,"72":0.00447,"78":0.03128,"84":0.00447,"88":0.00447,"89":0.01341,"90":0.02235,"91":0.04022,"94":0.01341,"95":0.00894,"96":0.01341,"97":0.02235,"98":0.34411,"99":0.97871,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 92 93 100 101 3.5 3.6"},D:{"19":0.00894,"22":0.02235,"26":0.00894,"30":0.00894,"34":0.07597,"38":0.18323,"42":0.00447,"45":0.00894,"46":0.00447,"47":0.00447,"48":0.00894,"49":0.08491,"51":0.00447,"53":0.0581,"54":0.00447,"55":0.02681,"56":0.00894,"57":0.00894,"58":0.00894,"59":0.00447,"60":0.00447,"61":0.04469,"62":0.01341,"63":0.01788,"64":0.00894,"65":0.01788,"66":0.00447,"67":0.02681,"68":0.02235,"69":0.02681,"70":0.01341,"71":0.01341,"72":0.02681,"73":0.01341,"74":0.02681,"75":0.04022,"76":0.01788,"77":0.00894,"78":0.04916,"79":0.7642,"80":0.03575,"81":0.03575,"83":0.06704,"84":0.04469,"85":0.03128,"86":0.08044,"87":0.1296,"88":0.02235,"89":0.0715,"90":0.03575,"91":0.06257,"92":0.2592,"93":0.02681,"94":0.15195,"95":0.04916,"96":0.22345,"97":0.40221,"98":0.52287,"99":4.36174,"100":18.51954,"101":0.2592,"102":0.01788,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 43 44 50 52 103 104"},F:{"28":0.02681,"36":0.04916,"40":0.01341,"46":0.08938,"84":0.03575,"85":0.13407,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.01341,"17":0.00447,"18":0.02235,"84":0.00447,"92":0.00894,"95":0.00447,"96":0.00894,"97":0.02235,"98":0.01788,"99":0.49159,"100":3.07914,"101":0.04916,_:"13 14 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94"},E:{"4":0,"8":0.01341,"11":0.00894,"12":0.01341,"13":0.13854,"14":0.56756,"15":0.17876,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00447,"10.1":0.02235,"11.1":0.04469,"12.1":0.07597,"13.1":0.40221,"14.1":1.56862,"15.1":0.30836,"15.2-15.3":0.36646,"15.4":2.35069},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00225,"5.0-5.1":0.01802,"6.0-6.1":0.01576,"7.0-7.1":0.02252,"8.1-8.4":0.03603,"9.0-9.2":0.02027,"9.3":0.2725,"10.0-10.2":0.02027,"10.3":0.15765,"11.0-11.2":0.04279,"11.3-11.4":0.0518,"12.0-12.1":0.0563,"12.2-12.5":0.87606,"13.0-13.1":0.05405,"13.2":0.02027,"13.3":0.11486,"13.4-13.7":0.30178,"14.0-14.4":0.97065,"14.5-14.8":2.58313,"15.0-15.1":1.04947,"15.2-15.3":7.21791,"15.4":8.61645},P:{"4":1.08906,"5.0-5.4":0.08176,"6.2-6.4":0.06132,"7.2-7.4":0.18592,"8.2":0.06132,"9.2":0.03267,"10.1":0.02178,"11.1-11.2":0.05445,"12.0":0.03267,"13.0":0.15247,"14.0":0.10891,"15.0":0.13069,"16.0":5.3255},I:{"0":0,"3":0,"4":0.00125,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0025,"4.2-4.3":0.00625,"4.4":0,"4.4.3-4.4.4":0.02873},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00665,"9":0.01331,"11":1.17773,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":25.96424},S:{"2.5":0},R:{_:"0"},M:{"0":0.21575},Q:{"10.4":0.11064},O:{"0":0.43703},H:{"0":0.0838}}; +module.exports={C:{"34":0.03646,"51":0.00456,"52":0.02735,"53":0.00456,"55":0.00456,"56":0.00456,"57":0.00456,"72":0.00912,"78":0.02735,"81":0.00912,"83":0.00456,"88":0.00912,"89":0.00912,"90":0.01823,"91":0.05014,"92":0.00456,"94":0.00456,"95":0.00912,"96":0.00912,"97":0.01367,"98":0.04102,"99":0.2826,"100":1.06201,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 54 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 82 84 85 86 87 93 101 102 103 3.5 3.6"},D:{"19":0.01367,"22":0.02279,"26":0.01367,"30":0.00912,"34":0.07749,"38":0.19144,"45":0.00456,"47":0.00456,"48":0.00456,"49":0.08204,"53":0.0547,"54":0.00456,"55":0.02735,"56":0.00912,"57":0.00912,"58":0.02279,"59":0.00456,"60":0.00456,"61":0.04102,"62":0.01367,"63":0.03191,"64":0.00456,"65":0.01823,"67":0.02279,"68":0.02279,"69":0.03191,"70":0.01367,"71":0.01823,"72":0.05014,"73":0.01823,"74":0.02735,"75":0.05925,"76":0.01823,"77":0.00912,"78":0.04102,"79":0.79309,"80":0.04558,"81":0.03191,"83":0.09116,"84":0.0547,"85":0.05925,"86":0.09572,"87":0.13218,"88":0.01823,"89":0.07293,"90":0.03191,"91":0.06381,"92":0.29171,"93":0.02279,"94":0.18232,"95":0.04558,"96":0.18688,"97":0.28715,"98":0.26436,"99":0.49226,"100":4.92264,"101":17.75341,"102":1.79129,"103":0.02735,"104":0.00456,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 46 50 51 52 66"},F:{"28":0.03191,"36":0.05014,"40":0.01367,"46":0.09116,"85":0.07749,"86":0.10028,"87":0.00456,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01367,"17":0.00456,"18":0.02735,"86":0.00456,"92":0.00912,"97":0.00912,"98":0.00912,"99":0.03646,"100":0.16865,"101":3.66007,_:"13 14 15 16 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96"},E:{"4":0,"8":0.00912,"11":0.00912,"12":0.01367,"13":0.11851,"14":0.46036,"15":0.1413,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00456,"10.1":0.02279,"11.1":0.03646,"12.1":0.06837,"13.1":0.35552,"14.1":1.1942,"15.1":0.20967,"15.2-15.3":0.24157,"15.4":4.43038,"15.5":0.2826},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0063,"5.0-5.1":0.01679,"6.0-6.1":0.01469,"7.0-7.1":0.02309,"8.1-8.4":0.02938,"9.0-9.2":0.02518,"9.3":0.24345,"10.0-10.2":0.01679,"10.3":0.14271,"11.0-11.2":0.05037,"11.3-11.4":0.04617,"12.0-12.1":0.04617,"12.2-12.5":0.75972,"13.0-13.1":0.04827,"13.2":0.01679,"13.3":0.10074,"13.4-13.7":0.27073,"14.0-14.4":0.82478,"14.5-14.8":1.91819,"15.0-15.1":0.71985,"15.2-15.3":1.33266,"15.4":14.32768},P:{"4":1.1137,"5.0-5.4":0.01035,"6.2-6.4":0.02043,"7.2-7.4":0.20692,"8.2":0.02069,"9.2":0.02163,"10.1":0.01081,"11.1-11.2":0.05406,"12.0":0.03244,"13.0":0.12975,"14.0":0.11894,"15.0":0.10813,"16.0":1.68676},I:{"0":0,"3":0,"4":0.00141,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00212,"4.2-4.3":0.00564,"4.4":0,"4.4.3-4.4.4":0.02892},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01566,"9":0.01566,"11":0.68885,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":26.47602},S:{"2.5":0},R:{_:"0"},M:{"0":0.23396},Q:{"10.4":0.14147},O:{"0":0.56586},H:{"0":0.09272}}; 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 147c42bddcb114..d95cbc7c8bcbcd 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:{"31":0.00383,"52":0.01913,"73":0.07268,"78":0.00765,"84":0.00383,"88":0.00383,"91":0.01148,"94":0.0153,"95":0.00383,"97":0.05355,"98":0.35573,"99":0.97538,"100":0.01913,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 96 101 3.5 3.6"},D:{"38":0.02295,"39":0.00383,"41":0.02678,"42":0.00383,"43":0.00765,"44":0.01148,"45":0.00765,"47":0.01148,"49":0.02295,"53":0.03825,"58":0.00383,"61":0.00383,"62":0.00383,"63":0.00765,"65":0.01148,"66":0.01148,"67":0.01148,"68":0.08415,"69":0.01148,"70":0.00765,"71":0.00383,"73":0.00765,"74":0.00383,"75":0.02295,"76":0.0306,"77":0.01148,"78":0.09945,"79":0.32895,"80":0.11093,"81":0.03825,"83":0.0153,"84":0.20655,"85":0.04973,"86":0.0306,"87":0.0306,"88":0.04208,"89":0.0765,"90":0.01913,"91":0.1224,"92":0.05355,"93":0.09563,"94":0.0306,"95":0.03825,"96":0.15683,"97":0.15683,"98":0.20655,"99":3.978,"100":18.79223,"101":0.2907,"102":0.01148,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 46 48 50 51 52 54 55 56 57 59 60 64 72 103 104"},F:{"65":0.10328,"82":0.00383,"83":0.01148,"84":0.40163,"85":1.35023,"86":0.00765,_:"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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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.01148,"17":0.02295,"18":0.0459,"84":0.01148,"89":0.01148,"90":0.00765,"91":0.00765,"92":0.01148,"96":0.01148,"97":0.05355,"98":0.0306,"99":0.40928,"100":2.77695,"101":0.05738,_:"12 13 14 16 79 80 81 83 85 86 87 88 93 94 95"},E:{"4":0,"13":0.0153,"14":0.08033,"15":0.02678,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.03443,"12.1":0.01148,"13.1":0.1071,"14.1":0.19508,"15.1":0.08415,"15.2-15.3":0.12623,"15.4":0.40545},G:{"8":0.00093,"3.2":0.00093,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00371,"6.0-6.1":0.03337,"7.0-7.1":0.03337,"8.1-8.4":0.00371,"9.0-9.2":0.00278,"9.3":0.06118,"10.0-10.2":0,"10.3":0.0964,"11.0-11.2":0.00834,"11.3-11.4":0.01483,"12.0-12.1":0.00742,"12.2-12.5":0.48477,"13.0-13.1":0.00742,"13.2":0.00556,"13.3":0.04913,"13.4-13.7":0.10381,"14.0-14.4":0.31144,"14.5-14.8":1.01681,"15.0-15.1":0.38837,"15.2-15.3":2.84465,"15.4":3.7836},P:{"4":0.37184,"5.0-5.4":0.08176,"6.2-6.4":0.06132,"7.2-7.4":0.18592,"8.2":0.06132,"9.2":0.03099,"10.1":0.08391,"11.1-11.2":0.15493,"12.0":0.02066,"13.0":0.09296,"14.0":0.15493,"15.0":0.08263,"16.0":2.34463},I:{"0":0,"3":0,"4":0.00485,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00485,"4.2-4.3":0.00291,"4.4":0,"4.4.3-4.4.4":0.05531},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00383,"11":0.32895,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":50.7267},S:{"2.5":0},R:{_:"0"},M:{"0":0.15438},Q:{"10.4":0},O:{"0":0.13585},H:{"0":0.23384}}; +module.exports={C:{"47":0.00404,"52":0.01213,"73":0.05255,"78":0.02425,"81":0.00808,"83":0.00808,"88":0.00404,"90":0.00808,"91":0.00808,"92":0.01213,"97":0.00808,"98":0.00808,"99":0.21018,"100":1.08326,"101":0.02425,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 82 84 85 86 87 89 93 94 95 96 102 103 3.5 3.6"},D:{"38":0.01213,"39":0.00404,"40":0.00404,"41":0.02829,"42":0.00808,"43":0.00808,"44":0.01213,"45":0.00404,"47":0.00808,"49":0.02829,"53":0.0485,"58":0.01213,"63":0.00808,"65":0.00404,"66":0.00404,"67":0.00404,"68":0.0768,"69":0.01213,"70":0.00808,"72":0.00404,"74":0.00808,"75":0.02021,"76":0.02425,"77":0.00808,"78":0.10105,"79":0.25869,"80":0.0485,"81":0.08892,"83":0.02021,"84":0.09297,"85":0.02021,"86":0.03234,"87":0.02425,"88":0.05659,"89":0.04446,"90":0.02425,"91":0.08892,"92":0.0485,"93":0.06871,"94":0.02021,"95":0.02021,"96":0.26273,"97":0.06467,"98":0.1253,"99":0.28294,"100":4.38153,"101":18.8438,"102":2.18268,"103":0.00808,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 46 48 50 51 52 54 55 56 57 59 60 61 62 64 71 73 104"},F:{"82":0.00404,"85":1.02667,"86":1.07517,"87":0.03234,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00404,"15":0.02425,"17":0.00808,"18":0.06467,"84":0.01617,"89":0.01617,"90":0.00404,"92":0.01617,"94":0.00808,"96":0.00808,"97":0.01617,"98":0.02021,"99":0.0768,"100":0.13339,"101":3.39124,_:"13 14 16 79 80 81 83 85 86 87 88 91 93 95"},E:{"4":0,"8":0.00404,"13":0.01213,"14":0.05255,"15":0.02021,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.01617,"10.1":0.00808,"11.1":0.02021,"12.1":0.00808,"13.1":0.09701,"14.1":0.20614,"15.1":0.06063,"15.2-15.3":0.08084,"15.4":0.74777,"15.5":0.08892},G:{"8":0.00198,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00296,"6.0-6.1":0.0247,"7.0-7.1":0.04643,"8.1-8.4":0.01679,"9.0-9.2":0,"9.3":0.07212,"10.0-10.2":0.00099,"10.3":0.07212,"11.0-11.2":0.00593,"11.3-11.4":0.00988,"12.0-12.1":0.01185,"12.2-12.5":0.37343,"13.0-13.1":0.01087,"13.2":0.00296,"13.3":0.04544,"13.4-13.7":0.10175,"14.0-14.4":0.29637,"14.5-14.8":0.81699,"15.0-15.1":0.25488,"15.2-15.3":0.66584,"15.4":7.03978},P:{"4":0.23795,"5.0-5.4":0.01035,"6.2-6.4":0.02043,"7.2-7.4":0.20692,"8.2":0.02069,"9.2":0.02069,"10.1":0.01021,"11.1-11.2":0.12415,"12.0":0.02069,"13.0":0.10346,"14.0":0.16553,"15.0":0.06207,"16.0":0.91043},I:{"0":0,"3":0,"4":0.0037,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00277,"4.2-4.3":0.00185,"4.4":0,"4.4.3-4.4.4":0.04531},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00808,"11":0.10105,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":48.68798},S:{"2.5":0},R:{_:"0"},M:{"0":0.14898},Q:{"10.4":0},O:{"0":0.1311},H:{"0":0.2031}}; 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 773cb07fadf08f..00c223f49d6756 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:{"33":0.00429,"48":0.00429,"52":0.10303,"56":0.01717,"63":0.02576,"68":0.00859,"72":0.00429,"78":0.02576,"81":0.00429,"84":0.02147,"88":0.02147,"89":0.03434,"90":0.00859,"91":0.05152,"92":0.01717,"94":0.01717,"95":0.01288,"96":0.02147,"97":0.03864,"98":1.25356,"99":3.65764,"100":0.02147,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 64 65 66 67 69 70 71 73 74 75 76 77 79 80 82 83 85 86 87 93 101 3.5 3.6"},D:{"38":0.00859,"41":0.01288,"43":0.00859,"47":0.00429,"49":0.09445,"53":0.04293,"59":0.00429,"63":0.00859,"65":0.01288,"66":0.00859,"67":0.00859,"68":0.00859,"69":0.02147,"71":0.01288,"74":0.00859,"75":0.01717,"76":0.02576,"77":0.09874,"78":0.01288,"79":0.12879,"80":0.02147,"81":0.15026,"83":0.02576,"84":0.01717,"85":0.03434,"86":0.07298,"87":0.07727,"88":0.02147,"89":0.04293,"90":0.02576,"91":0.03434,"92":0.05581,"93":0.03005,"94":0.04293,"95":0.04293,"96":0.16743,"97":0.1245,"98":0.24041,"99":4.61927,"100":22.43951,"101":0.3048,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 48 50 51 52 54 55 56 57 58 60 61 62 64 70 72 73 102 103 104"},F:{"28":0.00859,"36":0.00429,"46":0.01288,"84":0.25758,"85":1.29219,"86":0.06869,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00429,"17":0.02576,"18":0.01288,"86":0.00429,"88":0.00429,"89":0.00859,"90":0.01288,"92":0.00859,"93":0.00429,"96":0.00859,"97":0.01717,"98":0.02147,"99":0.36491,"100":2.84197,"101":0.0644,_:"12 13 15 16 79 80 81 83 84 85 87 91 94 95"},E:{"4":0,"13":0.00859,"14":0.0644,"15":0.03005,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00429,"11.1":0.00859,"12.1":0.01717,"13.1":0.10303,"14.1":0.25329,"15.1":0.06869,"15.2-15.3":0.13738,"15.4":0.42071},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0065,"6.0-6.1":0.00065,"7.0-7.1":0.0026,"8.1-8.4":0.00325,"9.0-9.2":0.00065,"9.3":0.08575,"10.0-10.2":0.0013,"10.3":0.02404,"11.0-11.2":0.01429,"11.3-11.4":0.01364,"12.0-12.1":0.00715,"12.2-12.5":0.19814,"13.0-13.1":0.00455,"13.2":0.00325,"13.3":0.03248,"13.4-13.7":0.07731,"14.0-14.4":0.26831,"14.5-14.8":0.82441,"15.0-15.1":0.36121,"15.2-15.3":2.3368,"15.4":2.2283},P:{"4":0.15512,"5.0-5.4":0.08105,"6.2-6.4":0.03122,"7.2-7.4":0.22894,"8.2":0.13171,"9.2":0.08325,"10.1":0.02068,"11.1-11.2":0.06205,"12.0":0.02068,"13.0":0.11375,"14.0":0.14478,"15.0":0.10341,"16.0":3.34019},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00176,"4.2-4.3":0.00615,"4.4":0,"4.4.3-4.4.4":0.02634},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21465,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":38.59703},S:{"2.5":0},R:{_:"0"},M:{"0":0.3253},Q:{"10.4":0},O:{"0":0.09131},H:{"0":0.49167}}; +module.exports={C:{"52":0.12247,"56":0.00454,"59":0.01361,"68":0.00907,"72":0.00907,"78":0.03629,"81":0.00907,"84":0.01814,"85":0.00454,"86":0.00454,"88":0.04082,"89":0.04536,"90":0.00454,"91":0.05443,"92":0.00454,"94":0.01361,"95":0.00907,"96":0.01361,"97":0.03175,"98":0.0635,"99":0.96617,"100":3.92818,"101":0.02722,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 82 83 87 93 102 103 3.5 3.6"},D:{"38":0.00454,"41":0.01814,"49":0.05443,"53":0.01814,"59":0.00454,"63":0.00907,"65":0.01361,"66":0.00907,"68":0.00454,"69":0.01814,"70":0.00907,"71":0.00907,"72":0.01814,"75":0.00907,"76":0.02268,"77":0.12247,"78":0.00454,"79":0.12247,"80":0.01814,"81":0.20412,"83":0.02722,"84":0.03175,"85":0.03629,"86":0.04082,"87":0.08165,"88":0.01814,"89":0.03629,"90":0.09526,"91":0.02722,"92":0.05443,"93":0.02268,"94":0.03629,"95":0.02722,"96":0.1633,"97":0.08618,"98":0.09526,"99":0.20866,"100":5.37062,"101":21.22848,"102":2.32697,"103":0.00454,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 60 61 62 64 67 73 74 104"},F:{"28":0.00907,"46":0.01361,"69":0.00454,"71":0.02268,"83":0.00454,"84":0.00907,"85":0.88452,"86":1.0841,"87":0.09072,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 72 73 74 75 76 77 78 79 80 81 82 9.5-9.6 10.5 11.1 11.5 11.6 12.1","10.0-10.1":0,"10.6":0.00454},B:{"17":0.01361,"18":0.01361,"83":0.02268,"85":0.00454,"86":0.00454,"89":0.00454,"92":0.00454,"94":0.00454,"96":0.00454,"97":0.00907,"98":0.01361,"99":0.04082,"100":0.16783,"101":3.16613,_:"12 13 14 15 16 79 80 81 84 87 88 90 91 93 95"},E:{"4":0,"13":0.00907,"14":0.0635,"15":0.01814,_:"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.00907,"12.1":0.01814,"13.1":0.13608,"14.1":0.24494,"15.1":0.05897,"15.2-15.3":0.08165,"15.4":0.74844,"15.5":0.09072},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.00156,"8.1-8.4":0.00156,"9.0-9.2":0,"9.3":0.06171,"10.0-10.2":0,"10.3":0.02812,"11.0-11.2":0.00703,"11.3-11.4":0.00781,"12.0-12.1":0.00781,"12.2-12.5":0.19608,"13.0-13.1":0.00781,"13.2":0.00234,"13.3":0.0289,"13.4-13.7":0.09374,"14.0-14.4":0.24061,"14.5-14.8":0.81401,"15.0-15.1":0.27498,"15.2-15.3":0.67261,"15.4":5.36135},P:{"4":0.14485,"5.0-5.4":0.07256,"6.2-6.4":0.04147,"7.2-7.4":0.17623,"8.2":0.22305,"9.2":0.07256,"10.1":0.01035,"11.1-11.2":0.04139,"12.0":0.03104,"13.0":0.08277,"14.0":0.11381,"15.0":0.06208,"16.0":1.25195},I:{"0":0,"3":0,"4":0.0014,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0014,"4.2-4.3":0.00628,"4.4":0,"4.4.3-4.4.4":0.02372},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00454,"9":0.00454,"11":0.20866,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":39.69272},S:{"2.5":0},R:{_:"0"},M:{"0":0.3333},Q:{"10.4":0},O:{"0":0.08742},H:{"0":0.47074}}; 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 3899a73e1d48bc..e49a8f57506803 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:{"43":0.00147,"45":0.00294,"52":0.00294,"72":0.00588,"78":0.00147,"84":0.00147,"91":0.00294,"95":0.00735,"97":0.00441,"98":0.09996,"99":0.47187,"100":0.00441,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 94 96 101 3.5 3.6"},D:{"31":0.00882,"32":0.00147,"33":0.00441,"34":0.00147,"42":0.01176,"43":0.00294,"44":0.00147,"49":0.01176,"50":0.00588,"56":0.00882,"58":0.00882,"59":0.00147,"60":0.06615,"61":0.00147,"62":0.00294,"63":0.01617,"64":0.00441,"65":0.00588,"66":0.00294,"67":0.04263,"68":0.01764,"69":0.01029,"70":0.0147,"71":0.00294,"72":0.00441,"73":0.00441,"74":0.01617,"75":0.01323,"76":0.06321,"77":0.04263,"78":0.00147,"79":0.01617,"80":0.02793,"81":0.03234,"83":0.01176,"84":0.03675,"85":0.03675,"86":0.01617,"87":0.02058,"88":0.05733,"89":0.02352,"90":0.01911,"91":0.02205,"92":0.08967,"93":0.06321,"94":0.18816,"95":0.02205,"96":0.05145,"97":0.03822,"98":0.09408,"99":1.29507,"100":5.07885,"101":0.07938,"102":0.00147,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 35 36 37 38 39 40 41 45 46 47 48 51 52 53 54 55 57 103 104"},F:{"79":0.00294,"82":0.00735,"83":0.00441,"84":0.06468,"85":0.37044,"86":0.01029,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 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.02499,"13":0.00882,"14":0.00588,"15":0.0147,"16":0.01176,"17":0.01323,"18":0.03381,"80":0.00147,"84":0.0147,"85":0.00441,"89":0.02058,"90":0.00588,"91":0.00147,"92":0.02352,"93":0.00441,"94":0.00441,"95":0.00441,"96":0.01323,"97":0.01323,"98":0.02058,"99":0.2793,"100":1.41855,"101":0.02499,_:"79 81 83 86 87 88"},E:{"4":0,"13":0.0294,"14":0.05292,"15":0.00882,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00588,"10.1":0.00441,"11.1":0.00735,"12.1":0.00882,"13.1":0.02499,"14.1":0.04263,"15.1":0.08967,"15.2-15.3":0.03969,"15.4":0.08379},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.00588,"7.0-7.1":0.00941,"8.1-8.4":0.02116,"9.0-9.2":0,"9.3":0.11404,"10.0-10.2":0.0047,"10.3":0.24807,"11.0-11.2":0.02469,"11.3-11.4":1.10043,"12.0-12.1":0.07642,"12.2-12.5":2.83807,"13.0-13.1":0.08582,"13.2":0.01411,"13.3":0.29862,"13.4-13.7":0.4397,"14.0-14.4":1.50956,"14.5-14.8":1.81288,"15.0-15.1":0.75596,"15.2-15.3":1.38611,"15.4":1.00872},P:{"4":0.2555,"5.0-5.4":0.08176,"6.2-6.4":0.06132,"7.2-7.4":0.23506,"8.2":0.06132,"9.2":0.27594,"10.1":0.08391,"11.1-11.2":0.50079,"12.0":0.02044,"13.0":0.1022,"14.0":0.24528,"15.0":0.31682,"16.0":1.14466},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00035,"4.2-4.3":0.0006,"4.4":0,"4.4.3-4.4.4":0.01611},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00147,"11":0.07203,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":71.73429},S:{"2.5":0},R:{_:"0"},M:{"0":0.21325},Q:{"10.4":0},O:{"0":0.21325},H:{"0":1.15482}}; +module.exports={C:{"52":0.00421,"71":0.00281,"78":0.00281,"91":0.00281,"92":0.0014,"95":0.00421,"97":0.0014,"98":0.00281,"99":0.10382,"100":0.57242,"101":0.00702,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 93 94 96 102 103 3.5 3.6"},D:{"18":0.0014,"36":0.0014,"38":0.00421,"42":0.0014,"43":0.00281,"44":0.00281,"49":0.00982,"50":0.00421,"53":0.00281,"54":0.00561,"55":0.00281,"56":0.00421,"58":0.00281,"60":0.03928,"61":0.00281,"63":0.01684,"64":0.00281,"65":0.00421,"66":0.00281,"67":0.05051,"68":0.00982,"69":0.00561,"70":0.01263,"71":0.00281,"72":0.00421,"74":0.01263,"75":0.01964,"76":0.10242,"77":0.01684,"78":0.00702,"79":0.00982,"80":0.01684,"81":0.02666,"83":0.00842,"84":0.00842,"85":0.03367,"86":0.02666,"87":0.02666,"88":0.02806,"89":0.01543,"90":0.02666,"91":0.01263,"92":0.11645,"93":0.03087,"94":0.10102,"95":0.05752,"96":0.03087,"97":0.02525,"98":0.07997,"99":0.15994,"100":1.3076,"101":4.41103,"102":0.40266,"103":0.00281,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 40 41 45 46 47 48 51 52 57 59 62 73 104"},F:{"53":0.00421,"58":0.0014,"79":0.0014,"83":0.0014,"84":0.0014,"85":0.16135,"86":0.21185,"87":0.00561,_:"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 54 55 56 57 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03788,"13":0.00982,"14":0.01824,"15":0.00982,"16":0.02105,"17":0.00982,"18":0.03788,"80":0.00281,"84":0.03648,"85":0.03227,"87":0.00281,"89":0.00561,"90":0.00421,"92":0.01543,"93":0.00281,"94":0.0014,"95":0.00421,"96":0.00842,"97":0.02245,"98":0.01263,"99":0.07155,"100":0.13749,"101":1.4956,_:"79 81 83 86 88 91"},E:{"4":0,"12":0.0014,"13":0.02105,"14":0.07155,"15":0.01122,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00281,"11.1":0.00421,"12.1":0.00842,"13.1":0.10382,"14.1":0.05893,"15.1":0.02946,"15.2-15.3":0.01964,"15.4":0.19923,"15.5":0.01122},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.00358,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.33888,"10.0-10.2":0.00477,"10.3":0.27922,"11.0-11.2":0.02029,"11.3-11.4":0.74816,"12.0-12.1":0.13484,"12.2-12.5":2.10845,"13.0-13.1":0.06921,"13.2":0.02983,"13.3":0.18615,"13.4-13.7":0.52383,"14.0-14.4":1.43308,"14.5-14.8":2.18959,"15.0-15.1":0.7935,"15.2-15.3":1.0417,"15.4":2.01896},P:{"4":0.26556,"5.0-5.4":0.17363,"6.2-6.4":0.02043,"7.2-7.4":0.32684,"8.2":0.01032,"9.2":0.21449,"10.1":0.01021,"11.1-11.2":0.38812,"12.0":0.03064,"13.0":0.21449,"14.0":0.31663,"15.0":0.12256,"16.0":1.00095},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00078,"4.2-4.3":0.00273,"4.4":0,"4.4.3-4.4.4":0.04808},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06734,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":71.97167},S:{"2.5":0},R:{_:"0"},M:{"0":0.12896},Q:{"10.4":0},O:{"0":0.18054},H:{"0":0.96041}}; 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 7888afb96351ea..6df238d1659b43 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js @@ -1 +1 @@ -module.exports={C:{"47":0.0044,"52":0.14533,"68":0.01762,"72":0.01321,"74":0.00881,"75":0.00881,"78":0.03523,"81":0.00881,"83":0.0044,"84":0.03523,"87":0.0044,"88":0.02642,"89":0.02202,"91":0.1145,"92":0.0044,"93":0.0044,"94":0.01321,"95":0.03083,"96":0.47123,"97":0.08368,"98":1.79683,"99":4.5141,"100":0.00881,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 76 77 79 80 82 85 86 90 101 3.5 3.6"},D:{"34":0.01321,"38":0.03083,"47":0.0044,"49":0.07927,"53":0.02202,"58":0.0044,"66":0.01762,"67":0.0044,"68":0.0044,"69":0.00881,"71":0.00881,"73":0.00881,"74":0.00881,"76":0.00881,"77":0.00881,"78":0.01762,"79":0.32149,"80":0.00881,"81":0.01762,"83":0.01762,"84":0.01762,"85":0.01762,"86":0.01762,"87":0.3347,"88":0.02202,"89":0.03523,"90":0.02202,"91":0.02642,"92":0.03523,"93":0.02642,"94":0.02202,"95":0.03523,"96":0.09248,"97":0.09689,"98":0.24222,"99":4.43483,"100":21.15682,"101":0.33911,"102":0.00881,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 59 60 61 62 63 64 65 70 72 75 103 104"},F:{"28":0.0044,"36":0.01321,"46":0.0044,"82":0.00881,"83":0.01321,"84":0.3259,"85":1.41809,"86":0.02642,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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.00881,"18":0.00881,"87":0.0044,"92":0.00881,"97":0.04844,"98":0.14974,"99":0.9865,"100":2.66882,"101":0.03964,_:"12 13 14 15 16 79 80 81 83 84 85 86 88 89 90 91 93 94 95 96"},E:{"4":0,"13":0.10129,"14":0.08368,"15":0.03964,_:"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.01762,"12.1":0.02642,"13.1":0.09689,"14.1":0.2158,"15.1":0.07927,"15.2-15.3":0.07927,"15.4":0.51527},G:{"8":0.00101,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00304,"6.0-6.1":0,"7.0-7.1":0.00812,"8.1-8.4":0.00101,"9.0-9.2":0.00203,"9.3":0.03247,"10.0-10.2":0.00203,"10.3":0.03957,"11.0-11.2":0.01826,"11.3-11.4":0.00913,"12.0-12.1":0.01522,"12.2-12.5":0.27295,"13.0-13.1":0.01218,"13.2":0.00507,"13.3":0.03653,"13.4-13.7":0.18772,"14.0-14.4":0.2973,"14.5-14.8":1.00961,"15.0-15.1":0.38051,"15.2-15.3":3.57879,"15.4":4.2292},P:{"4":0.33336,"5.0-5.4":0.08176,"6.2-6.4":0.06132,"7.2-7.4":0.18592,"8.2":0.06132,"9.2":0.03267,"10.1":0.02178,"11.1-11.2":0.02084,"12.0":0.01042,"13.0":0.07292,"14.0":0.11459,"15.0":0.05209,"16.0":2.62525},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0023,"4.2-4.3":0.0115,"4.4":0,"4.4.3-4.4.4":0.07015},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12331,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":41.15515},S:{"2.5":0},R:{_:"0"},M:{"0":0.33022},Q:{"10.4":0},O:{"0":0.05037},H:{"0":0.52459}}; +module.exports={C:{"47":0.00441,"51":0.00441,"52":0.11476,"56":0.00441,"66":0.00441,"68":0.01766,"69":0.00441,"72":0.00883,"74":0.00441,"75":0.00441,"78":0.03531,"81":0.01324,"82":0.00441,"83":0.00883,"84":0.01324,"88":0.02207,"89":0.01766,"91":0.09711,"92":0.00441,"93":0.00441,"94":0.00883,"95":0.01766,"96":0.31339,"97":0.02648,"98":0.26043,"99":1.89361,"100":4.83774,"101":0.01324,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 53 54 55 57 58 59 60 61 62 63 64 65 67 70 71 73 76 77 79 80 85 86 87 90 102 103 3.5 3.6"},D:{"34":0.00883,"38":0.02207,"49":0.07062,"53":0.01766,"58":0.00441,"66":0.00883,"68":0.00441,"69":0.01324,"71":0.00883,"73":0.00441,"74":0.00441,"76":0.00883,"77":0.00441,"78":0.01766,"79":0.27808,"80":0.00883,"81":0.01766,"83":0.01766,"84":0.0309,"85":0.02648,"86":0.02648,"87":0.21629,"88":0.01766,"89":0.0309,"90":0.02207,"91":0.03973,"92":0.02648,"93":0.01324,"94":0.01324,"95":0.03531,"96":0.06621,"97":0.04414,"98":0.12359,"99":0.61355,"100":4.76271,"101":19.11703,"102":1.71705,"103":0.00441,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 63 64 65 67 70 72 75 104"},F:{"28":0.00441,"36":0.00883,"46":0.00441,"83":0.00441,"84":0.01766,"85":0.8828,"86":1.0417,"87":0.04414,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01324,"18":0.01324,"87":0.00883,"92":0.00883,"97":0.01766,"98":0.07504,"99":0.22511,"100":0.30015,"101":3.0589,_:"12 13 14 15 16 79 80 81 83 84 85 86 88 89 90 91 93 94 95 96"},E:{"4":0,"13":0.04414,"14":0.07504,"15":0.02648,_:"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.01324,"12.1":0.02648,"13.1":0.08828,"14.1":0.18539,"15.1":0.05738,"15.2-15.3":0.05297,"15.4":0.80335,"15.5":0.11476},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00319,"6.0-6.1":0,"7.0-7.1":0.00744,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02657,"10.0-10.2":0,"10.3":0.03188,"11.0-11.2":0.01169,"11.3-11.4":0.00956,"12.0-12.1":0.01382,"12.2-12.5":0.254,"13.0-13.1":0.0085,"13.2":0.00425,"13.3":0.02976,"13.4-13.7":0.12009,"14.0-14.4":0.27207,"14.5-14.8":0.85979,"15.0-15.1":0.26463,"15.2-15.3":0.76945,"15.4":7.93787},P:{"4":0.30985,"5.0-5.4":0.01035,"6.2-6.4":0.02043,"7.2-7.4":0.20692,"8.2":0.02069,"9.2":0.02163,"10.1":0.01081,"11.1-11.2":0.02066,"12.0":0.01033,"13.0":0.06197,"14.0":0.10328,"15.0":0.04131,"16.0":0.95022},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00267,"4.2-4.3":0.01067,"4.4":0,"4.4.3-4.4.4":0.07604},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10594,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":41.48966},S:{"2.5":0},R:{_:"0"},M:{"0":0.34075},Q:{"10.4":0},O:{"0":0.0391},H:{"0":0.49712}}; 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 6a3a7711919d47..a049532164f539 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js @@ -1 +1 @@ -module.exports={C:{"36":0.17311,"45":0.00304,"47":0.00304,"48":0.00304,"52":0.03037,"56":0.01215,"60":0.00304,"66":0.00304,"68":0.00304,"69":0.00304,"70":0.00304,"72":0.01215,"78":0.01215,"79":0.00304,"80":0.00304,"81":0.00304,"82":0.00304,"83":0.00304,"84":0.00304,"85":0.00607,"87":0.00304,"88":0.0243,"89":0.00911,"90":0.00607,"91":0.01822,"92":0.00607,"93":0.00607,"94":0.01822,"95":0.01519,"96":0.01822,"97":0.03037,"98":0.67421,"99":1.84953,"100":0.06378,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 71 73 74 75 76 77 86 101 3.5 3.6"},D:{"25":0.00607,"49":0.01215,"58":0.00607,"63":0.01822,"65":0.00304,"67":0.00607,"68":0.00304,"69":0.00607,"70":0.00911,"71":0.01519,"72":0.00607,"73":0.00607,"74":0.00911,"75":0.00607,"76":0.00607,"77":0.00607,"78":0.00911,"79":0.03037,"80":0.02126,"81":0.01215,"83":0.02126,"84":0.02126,"85":0.0243,"86":0.04556,"87":0.04556,"88":0.03341,"89":0.07896,"90":0.01822,"91":0.03037,"92":0.03948,"93":0.03037,"94":0.03644,"95":0.03037,"96":0.09415,"97":0.09718,"98":0.16096,"99":3.45003,"100":17.17424,"101":0.17007,"102":0.00911,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 66 103 104"},F:{"82":0.00304,"84":0.11541,"85":0.37659,"86":0.00911,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 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.00607,"14":0.00304,"18":0.01215,"84":0.00304,"89":0.00304,"92":0.00607,"95":0.00304,"96":0.01215,"97":0.00911,"98":0.01519,"99":0.246,"100":1.70072,"101":0.01215,_:"13 15 16 17 79 80 81 83 85 86 87 88 90 91 93 94"},E:{"4":0,"12":0.00304,"13":0.01519,"14":0.05467,"15":0.02126,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.08504,"11.1":0.00607,"12.1":0.01519,"13.1":0.06681,"14.1":0.12755,"15.1":0.04859,"15.2-15.3":0.03948,"15.4":0.15185},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00057,"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.00848,"10.0-10.2":0.00113,"10.3":0.01243,"11.0-11.2":0.01187,"11.3-11.4":0.00678,"12.0-12.1":0.01243,"12.2-12.5":0.24926,"13.0-13.1":0.01356,"13.2":0.00678,"13.3":0.04352,"13.4-13.7":0.1023,"14.0-14.4":0.38999,"14.5-14.8":0.77207,"15.0-15.1":0.49625,"15.2-15.3":1.46502,"15.4":2.05453},P:{"4":0.18008,"5.0-5.4":0.08176,"6.2-6.4":0.02123,"7.2-7.4":0.09533,"8.2":0.06132,"9.2":0.03178,"10.1":0.01055,"11.1-11.2":0.08474,"12.0":0.03178,"13.0":0.09533,"14.0":0.11652,"15.0":0.09533,"16.0":1.26053},I:{"0":0,"3":0.00178,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00178,"4.2-4.3":0.00133,"4.4":0,"4.4.3-4.4.4":0.016},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0577,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":61.25592},S:{"2.5":0},R:{_:"0"},M:{"0":0.11141},Q:{"10.4":0},O:{"0":1.08623},H:{"0":1.02837}}; +module.exports={C:{"36":0.14401,"45":0.00294,"47":0.00294,"52":0.02645,"56":0.00588,"60":0.00294,"66":0.00294,"68":0.00294,"72":0.00882,"78":0.01176,"80":0.00294,"81":0.00588,"82":0.00294,"83":0.00588,"84":0.00294,"85":0.00294,"88":0.02057,"89":0.00882,"90":0.00588,"91":0.01763,"92":0.00588,"93":0.00588,"94":0.00882,"95":0.01176,"96":0.01176,"97":0.0147,"98":0.03233,"99":0.32917,"100":2.04554,"101":0.06466,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 86 87 102 103 3.5","3.6":0.01176},D:{"25":0.00588,"41":0.00294,"49":0.00882,"58":0.00588,"63":0.01176,"66":0.00588,"67":0.00588,"68":0.00294,"69":0.00588,"70":0.00882,"71":0.01763,"72":0.00588,"73":0.00588,"74":0.00882,"75":0.00588,"76":0.00588,"77":0.00588,"78":0.00882,"79":0.03527,"80":0.02351,"81":0.01176,"83":0.02351,"84":0.02645,"85":0.02939,"86":0.04409,"87":0.04702,"88":0.01763,"89":0.08523,"90":0.0147,"91":0.02939,"92":0.03821,"93":0.02351,"94":0.03233,"95":0.02645,"96":0.07348,"97":0.06172,"98":0.08523,"99":0.1734,"100":2.45994,"101":16.09103,"102":1.47832,"103":0.00882,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 65 104"},F:{"84":0.00294,"85":0.18516,"86":0.25569,"87":0.0147,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00588,"14":0.00294,"15":0.00294,"18":0.0147,"84":0.00294,"92":0.00882,"96":0.00882,"97":0.00588,"98":0.00882,"99":0.02057,"100":0.1058,"101":1.79573,_:"13 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.00294,"13":0.0147,"14":0.04996,"15":0.01763,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 10.1","5.1":0.08229,"9.1":0.00588,"11.1":0.00588,"12.1":0.0147,"13.1":0.06466,"14.1":0.11168,"15.1":0.04115,"15.2-15.3":0.02939,"15.4":0.24688,"15.5":0.02645},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0.00052,"6.0-6.1":0,"7.0-7.1":0.00052,"8.1-8.4":0.00155,"9.0-9.2":0.00052,"9.3":0.00984,"10.0-10.2":0.00155,"10.3":0.01347,"11.0-11.2":0.01139,"11.3-11.4":0.00621,"12.0-12.1":0.01139,"12.2-12.5":0.22736,"13.0-13.1":0.01088,"13.2":0.0057,"13.3":0.03418,"13.4-13.7":0.07976,"14.0-14.4":0.28174,"14.5-14.8":0.55002,"15.0-15.1":0.31127,"15.2-15.3":0.50548,"15.4":3.1111},P:{"4":0.19959,"5.0-5.4":0.01035,"6.2-6.4":0.02125,"7.2-7.4":0.09454,"8.2":0.02069,"9.2":0.03151,"10.1":0.02101,"11.1-11.2":0.09454,"12.0":0.03151,"13.0":0.10505,"14.0":0.11555,"15.0":0.08404,"16.0":0.6723},I:{"0":0,"3":0.00226,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00169,"4.2-4.3":0.00226,"4.4":0,"4.4.3-4.4.4":0.02203},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01763,"11":0.08817,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":62.30338},S:{"2.5":0},R:{_:"0"},M:{"0":0.11296},Q:{"10.4":0},O:{"0":1.21432},H:{"0":1.13627}}; 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 b5bdc1673502c6..03f30be4ad581c 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:{"11":0.02832,"38":0.01259,"43":0.01259,"44":0.0535,"45":0.01259,"48":0.00315,"52":0.01574,"56":0.01574,"68":0.00629,"70":0.00315,"77":0.00629,"78":0.04721,"79":0.00944,"80":0.00944,"81":0.00315,"82":0.00315,"83":0.01259,"87":0.04406,"88":0.03462,"91":0.03147,"94":0.00315,"95":0.00944,"96":0.00629,"97":0.01888,"98":0.40911,"99":1.63959,"100":0.00944,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 71 72 73 74 75 76 84 85 86 89 90 92 93 101 3.5 3.6"},D:{"17":0.00629,"37":0.07868,"38":0.00629,"43":0.00315,"47":0.01259,"48":0.1542,"49":0.06923,"51":0.00315,"53":0.00944,"65":0.01574,"67":0.00629,"68":0.00315,"69":0.00629,"70":0.00629,"71":0.00944,"72":0.00315,"73":0.00629,"74":0.00629,"75":0.00629,"76":0.01574,"77":0.01574,"78":0.37764,"79":0.07868,"80":0.04091,"81":0.1605,"83":0.03776,"84":0.06294,"85":0.09126,"86":0.07553,"87":0.1542,"88":0.07553,"89":0.04721,"90":0.02203,"91":0.07238,"92":0.02832,"93":0.02203,"94":0.04406,"95":0.02832,"96":0.07553,"97":0.4752,"98":0.25491,"99":3.78584,"100":13.69889,"101":0.17309,"102":0.00315,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 44 45 46 50 52 54 55 56 57 58 59 60 61 62 63 64 66 103 104"},F:{"71":0.00315,"79":0.00315,"84":0.09126,"85":0.28952,"86":0.00944,_:"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 80 81 82 83 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.00629,"13":0.00944,"15":0.00629,"16":0.00315,"18":0.01574,"80":0.00629,"84":0.00629,"85":0.00629,"88":0.00629,"89":0.00315,"92":0.00944,"93":0.00315,"94":0.00629,"95":0.00629,"96":0.00944,"97":0.06609,"98":0.03776,"99":0.4217,"100":2.53019,"101":0.03147,_:"14 17 79 81 83 86 87 90 91"},E:{"4":0,"6":0.00315,"8":0.00944,"9":0.02518,"10":0.00629,"13":0.04721,"14":0.30841,"15":0.07868,_:"0 5 7 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00315,"10.1":0.00944,"11.1":0.01888,"12.1":0.05035,"13.1":0.22973,"14.1":0.70493,"15.1":0.18567,"15.2-15.3":0.18253,"15.4":0.86857},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.01769,"7.0-7.1":0.05898,"8.1-8.4":0.00885,"9.0-9.2":0.00295,"9.3":0.13565,"10.0-10.2":0.00295,"10.3":0.15924,"11.0-11.2":0.02359,"11.3-11.4":0.02359,"12.0-12.1":0.02949,"12.2-12.5":1.1471,"13.0-13.1":0.01769,"13.2":0.05308,"13.3":0.08257,"13.4-13.7":0.27424,"14.0-14.4":0.89645,"14.5-14.8":4.65034,"15.0-15.1":1.30339,"15.2-15.3":11.40617,"15.4":9.17389},P:{"4":0.03122,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.03122,"8.2":0.01012,"9.2":0.01041,"10.1":0.04048,"11.1-11.2":0.07286,"12.0":0.04163,"13.0":0.10408,"14.0":0.17694,"15.0":0.08327,"16.0":3.60128},I:{"0":0,"3":0,"4":0.00308,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00617,"4.2-4.3":0.00617,"4.4":0,"4.4.3-4.4.4":0.04626},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0097,"9":0.13255,"11":0.21337,_:"6 7 10 5.5"},J:{"7":0,"10":0.00685},N:{"10":0.02281,_:"11"},L:{"0":33.58324},S:{"2.5":0},R:{_:"0"},M:{"0":0.50027},Q:{"10.4":0},O:{"0":0.04112},H:{"0":0.19464}}; +module.exports={C:{"11":0.01357,"38":0.01696,"43":0.01696,"44":0.07462,"45":0.01696,"48":0.00678,"52":0.02035,"56":0.01357,"70":0.00678,"78":0.05766,"79":0.00678,"80":0.01018,"81":0.02035,"82":0.00339,"83":0.01018,"87":0.11533,"88":0.00339,"91":0.02714,"94":0.00339,"96":0.00339,"97":0.01018,"98":0.01696,"99":0.26458,"100":1.07866,"101":0.01018,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 84 85 86 89 90 92 93 95 102 103 3.5 3.6"},D:{"17":0.00339,"37":0.00339,"38":0.00678,"41":0.01018,"47":0.02035,"48":0.20352,"49":0.07802,"51":0.00339,"53":0.01018,"65":0.01357,"67":0.00339,"69":0.00678,"70":0.00678,"71":0.00678,"72":0.00678,"74":0.00339,"75":0.01696,"76":0.02035,"77":0.01357,"78":0.08141,"79":0.09498,"80":0.03053,"81":0.11194,"83":0.08141,"84":0.09158,"85":0.09498,"86":0.09158,"87":0.18995,"88":0.01357,"89":0.05088,"90":0.01696,"91":0.07462,"92":0.02714,"93":0.0407,"94":0.03731,"95":0.02035,"96":0.07123,"97":0.1696,"98":0.10854,"99":0.50202,"100":3.72442,"101":13.55104,"102":1.2313,"103":0.00678,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 42 43 44 45 46 50 52 54 55 56 57 58 59 60 61 62 63 64 66 68 73 104"},F:{"85":0.27136,"86":0.24422,"87":0.01357,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00678,"13":0.00678,"15":0.00678,"16":0.00339,"17":0.00339,"18":0.03053,"80":0.00339,"84":0.00339,"86":0.01357,"88":0.01018,"90":0.00339,"92":0.00678,"95":0.00678,"96":0.01018,"97":0.01696,"98":0.02374,"99":0.0848,"100":0.19334,"101":3.14099,_:"14 79 81 83 85 87 89 91 93 94"},E:{"4":0,"6":0.00339,"7":0.00339,"8":0.00678,"9":0.03053,"13":0.06445,"14":0.48166,"15":0.07802,_:"0 5 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00339,"9.1":0.00678,"10.1":0.01018,"11.1":0.02035,"12.1":0.0441,"13.1":0.26797,"14.1":0.89549,"15.1":0.20691,"15.2-15.3":0.19334,"15.4":2.43885,"15.5":0.28493},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.01212,"7.0-7.1":0.06062,"8.1-8.4":0.01212,"9.0-9.2":0.00606,"9.3":0.13337,"10.0-10.2":0,"10.3":0.1455,"11.0-11.2":0.01819,"11.3-11.4":0.02728,"12.0-12.1":0.02728,"12.2-12.5":1.08821,"13.0-13.1":0.02122,"13.2":0.0485,"13.3":0.06972,"13.4-13.7":0.24553,"14.0-14.4":0.87906,"14.5-14.8":3.81935,"15.0-15.1":0.89421,"15.2-15.3":2.58867,"15.4":20.19405},P:{"4":0.04133,"5.0-5.4":0.06059,"6.2-6.4":0.0505,"7.2-7.4":0.031,"8.2":0.07069,"9.2":0.07163,"10.1":0.10099,"11.1-11.2":0.09299,"12.0":0.02067,"13.0":0.09299,"14.0":0.16532,"15.0":0.062,"16.0":1.32256},I:{"0":0,"3":0,"4":0.00322,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00484,"4.2-4.3":0.00806,"4.4":0,"4.4.3-4.4.4":0.04996},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.13015,"11":0.22262,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":31.42736},S:{"2.5":0},R:{_:"0"},M:{"0":0.54846},Q:{"10.4":0},O:{"0":0.02643},H:{"0":0.18768}}; 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 52f06d72f81950..dae8e143d48bba 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js @@ -1 +1 @@ -module.exports={C:{"24":0.00345,"25":0.01036,"26":0.02762,"27":0.00345,"36":0.00345,"52":0.03108,"56":0.02072,"66":0.00345,"78":0.01727,"79":0.13121,"80":0.17265,"88":0.01036,"89":0.00691,"91":0.02762,"94":0.00691,"95":0.01036,"96":0.00691,"97":0.02072,"98":0.45234,"99":0.99792,"100":0.01036,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 81 82 83 84 85 86 87 90 92 93 101 3.5 3.6"},D:{"31":0.03453,"32":0.00691,"34":0.00345,"38":0.02417,"49":0.03108,"51":0.00345,"53":0.01036,"55":0.00691,"56":0.00345,"58":0.00691,"63":0.00345,"65":0.01036,"67":0.00345,"68":0.01381,"69":0.00691,"70":0.01036,"71":0.00691,"73":0.02072,"74":0.01381,"75":0.01381,"76":0.02072,"77":0.00345,"78":0.00691,"79":0.1174,"80":0.26243,"81":0.01727,"83":0.01727,"84":0.01036,"85":0.02072,"86":0.03108,"87":0.04489,"88":0.01036,"89":0.0518,"90":0.04489,"91":0.15884,"92":0.04144,"93":0.03798,"94":0.03108,"95":0.02762,"96":0.15539,"97":0.1174,"98":0.28315,"99":4.62011,"100":18.93971,"101":0.23826,"102":0.00691,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 54 57 59 60 61 62 64 66 72 103 104"},F:{"28":0.01036,"77":0.00345,"79":0.00691,"84":0.1105,"85":0.45925,"86":0.00691,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 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.01381,"84":0.00345,"85":0.00345,"91":0.01036,"92":0.01036,"93":0.00691,"94":0.00345,"95":0.00691,"96":0.03108,"97":0.04834,"98":0.03108,"99":0.33149,"100":1.96476,"101":0.03453,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90"},E:{"4":0,"7":0.00345,"8":0.16229,"13":0.01727,"14":0.07251,"15":0.02072,_:"0 5 6 9 10 11 12 3.1 3.2 5.1 7.1 9.1 10.1","6.1":0.00691,"11.1":0.01036,"12.1":0.01036,"13.1":0.07942,"14.1":0.31422,"15.1":0.08287,"15.2-15.3":0.08978,"15.4":0.42127},G:{"8":0.00678,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00407,"6.0-6.1":0.00407,"7.0-7.1":0.02443,"8.1-8.4":0.01086,"9.0-9.2":0.00136,"9.3":0.07463,"10.0-10.2":0.00271,"10.3":0.08278,"11.0-11.2":0.01764,"11.3-11.4":0.03528,"12.0-12.1":0.03664,"12.2-12.5":0.39488,"13.0-13.1":0.019,"13.2":0.01221,"13.3":0.06106,"13.4-13.7":0.16012,"14.0-14.4":0.51565,"14.5-14.8":2.02055,"15.0-15.1":0.54144,"15.2-15.3":4.98285,"15.4":4.56083},P:{"4":0.092,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.01022,"8.2":0.01012,"9.2":0.08177,"10.1":0.04089,"11.1-11.2":0.18399,"12.0":0.13288,"13.0":0.19421,"14.0":0.27599,"15.0":0.16355,"16.0":6.03084},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00252,"4.2-4.3":0.00504,"4.4":0,"4.4.3-4.4.4":0.02518},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00691,"10":0.00691,"11":0.29005,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":44.89482},S:{"2.5":0},R:{_:"0"},M:{"0":0.18983},Q:{"10.4":0},O:{"0":0.05891},H:{"0":0.34085}}; +module.exports={C:{"24":0.00382,"25":0.01145,"26":0.03053,"27":0.00382,"36":0.00382,"52":0.02671,"56":0.0229,"66":0.00382,"78":0.0229,"79":0.1183,"80":0.06869,"81":0.00382,"88":0.00763,"89":0.00382,"91":0.01526,"95":0.00382,"97":0.01145,"98":0.01908,"99":0.24804,"100":1.08756,"101":0.00763,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 82 83 84 85 86 87 90 92 93 94 96 102 103 3.5 3.6"},D:{"31":0.04579,"32":0.01145,"34":0.00382,"35":0.1183,"38":0.0229,"49":0.03434,"53":0.00763,"55":0.00382,"63":0.00763,"65":0.01145,"67":0.00763,"68":0.01145,"69":0.00763,"70":0.00763,"71":0.00763,"72":0.00763,"73":0.0229,"74":0.01526,"75":0.00763,"76":0.01145,"77":0.00763,"78":0.01145,"79":0.09922,"80":0.37015,"81":0.01526,"83":0.03434,"84":0.03053,"85":0.04198,"86":0.03816,"87":0.07632,"88":0.01526,"89":0.06487,"90":0.04198,"91":0.04579,"92":0.06106,"93":0.03816,"94":0.04198,"95":0.04198,"96":0.14501,"97":0.08014,"98":0.12211,"99":0.32818,"100":5.19358,"101":20.20954,"102":2.0263,"103":0.00763,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 56 57 58 59 60 61 62 64 66 104"},F:{"28":0.00763,"85":0.31291,"86":0.32436,"87":0.01908,_:"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:{"18":0.01145,"84":0.00382,"85":0.00382,"91":0.00763,"92":0.01145,"96":0.03434,"97":0.01526,"98":0.01908,"99":0.05342,"100":0.14882,"101":2.25144,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 93 94 95"},E:{"4":0,"7":0.00382,"8":0.14882,"13":0.01908,"14":0.0725,"15":0.01908,_:"0 5 6 9 10 11 12 3.1 3.2 5.1 7.1 10.1","6.1":0.01145,"9.1":0.00763,"11.1":0.00763,"12.1":0.00763,"13.1":0.08777,"14.1":0.27094,"15.1":0.06106,"15.2-15.3":0.06106,"15.4":0.72886,"15.5":0.07632},G:{"8":0.00266,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00399,"6.0-6.1":0.00266,"7.0-7.1":0.02397,"8.1-8.4":0.00799,"9.0-9.2":0,"9.3":0.0679,"10.0-10.2":0.00399,"10.3":0.06924,"11.0-11.2":0.01465,"11.3-11.4":0.02929,"12.0-12.1":0.02929,"12.2-12.5":0.34085,"13.0-13.1":0.01598,"13.2":0.01065,"13.3":0.05725,"13.4-13.7":0.13847,"14.0-14.4":0.56055,"14.5-14.8":1.55382,"15.0-15.1":0.34219,"15.2-15.3":1.04786,"15.4":8.98471},P:{"4":0.08235,"5.0-5.4":0.06059,"6.2-6.4":0.0505,"7.2-7.4":0.01029,"8.2":0.07069,"9.2":0.05147,"10.1":0.01029,"11.1-11.2":0.15441,"12.0":0.08235,"13.0":0.15441,"14.0":0.21617,"15.0":0.13382,"16.0":2.06905},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00251,"4.2-4.3":0.00418,"4.4":0,"4.4.3-4.4.4":0.02423},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00382,"9":0.01145,"10":0.01145,"11":0.3091,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":42.00641},S:{"2.5":0},R:{_:"0"},M:{"0":0.20407},Q:{"10.4":0},O:{"0":0.05566},H:{"0":0.29859}}; 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 9a40b27f0a7e95..952064696fdcfe 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:{"52":0.28819,"78":0.01647,"83":0.0494,"84":0.00823,"91":0.00823,"95":0.01235,"96":0.00412,"97":0.00412,"98":0.59697,"99":1.78266,"100":0.00823,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 85 86 87 88 89 90 92 93 94 101 3.5 3.6"},D:{"49":0.03294,"65":0.00823,"67":0.00823,"75":0.00412,"76":0.00823,"78":0.02059,"79":0.01235,"81":0.00412,"84":0.00412,"85":0.25937,"86":0.00412,"87":0.05352,"90":0.07822,"91":0.07822,"92":0.02059,"93":0.0247,"94":0.06587,"95":0.00823,"96":0.0494,"97":0.08234,"98":0.74518,"99":2.98483,"100":11.84873,"101":0.26761,"103":0.01647,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 77 80 83 88 89 102 104"},F:{"46":0.01647,"76":0.03294,"84":0.07822,"85":0.4117,_:"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 77 78 79 80 81 82 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:{"15":0.00823,"17":0.01235,"18":0.02882,"87":0.00823,"90":0.00823,"92":0.01235,"95":0.02882,"96":0.01647,"97":0.05764,"98":0.01235,"99":1.04572,"100":7.40648,"101":0.11528,_:"12 13 14 16 79 80 81 83 84 85 86 88 89 91 93 94"},E:{"4":0,"11":0.02059,"12":0.00823,"13":0.20585,"14":0.64225,"15":0.06176,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02882,"11.1":0.19762,"12.1":0.14821,"13.1":0.68342,"14.1":1.60563,"15.1":0.41582,"15.2-15.3":0.44875,"15.4":3.95232},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.01399,"7.0-7.1":0.02098,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.43016,"10.0-10.2":0.00699,"10.3":0.19584,"11.0-11.2":0.01049,"11.3-11.4":0.01749,"12.0-12.1":0.01399,"12.2-12.5":2.08434,"13.0-13.1":0.01749,"13.2":0.0035,"13.3":0.02448,"13.4-13.7":0.13639,"14.0-14.4":0.95474,"14.5-14.8":3.53568,"15.0-15.1":1.16457,"15.2-15.3":11.32747,"15.4":15.01003},P:{"4":0.04375,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.03122,"8.2":0.01012,"9.2":0.01041,"10.1":0.04375,"11.1-11.2":0.01094,"12.0":0.03281,"13.0":0.04375,"14.0":0.10938,"15.0":0.03281,"16.0":3.94869},I:{"0":0,"3":0,"4":0.00212,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00096,"4.4":0,"4.4.3-4.4.4":0.00868},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01647,"11":0.1935,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":18.97577},S:{"2.5":0},R:{_:"0"},M:{"0":0.59428},Q:{"10.4":0},O:{"0":0},H:{"0":0.05014}}; +module.exports={C:{"48":0.06111,"52":0.25385,"78":0.0047,"83":0.03761,"84":0.05171,"91":0.0141,"95":0.0141,"96":0.0047,"98":0.0141,"99":0.4654,"100":2.02143,"101":0.0094,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 85 86 87 88 89 90 92 93 94 97 102 103 3.5 3.6"},D:{"49":0.02821,"65":0.0094,"67":0.0047,"78":0.0188,"79":0.0094,"84":0.0047,"85":0.23975,"86":0.0047,"87":0.11282,"90":0.04701,"91":0.12223,"92":0.09872,"93":0.07992,"94":0.06111,"95":0.03761,"96":0.05171,"97":0.07052,"98":0.20214,"99":0.30086,"100":3.10266,"101":13.43546,"102":1.43851,"103":0.0188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 75 76 77 80 81 83 88 89 104"},F:{"46":0.0188,"71":0.02821,"74":0.0141,"85":0.22095,"86":0.30086,"87":0.0047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 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:{"18":0.0141,"92":0.0047,"95":0.05171,"96":0.0141,"97":0.0141,"98":0.0141,"99":0.09872,"100":0.49831,"101":8.13273,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94"},E:{"4":0,"11":0.02821,"12":0.0188,"13":0.11753,"14":0.40429,"15":0.07992,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0141,"11.1":0.21625,"12.1":0.21155,"13.1":0.72395,"14.1":1.70176,"15.1":0.21625,"15.2-15.3":0.31497,"15.4":8.9084,"15.5":0.49831},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.00642,"7.0-7.1":0.00962,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.37209,"10.0-10.2":0,"10.3":0.2085,"11.0-11.2":0.01925,"11.3-11.4":0.01283,"12.0-12.1":0.01604,"12.2-12.5":1.66159,"13.0-13.1":0.00321,"13.2":0.00321,"13.3":0.04812,"13.4-13.7":0.43946,"14.0-14.4":1.0393,"14.5-14.8":2.58862,"15.0-15.1":1.37931,"15.2-15.3":1.81236,"15.4":22.44433},P:{"4":0.04133,"5.0-5.4":0.06059,"6.2-6.4":0.0505,"7.2-7.4":0.031,"8.2":0.07069,"9.2":0.07163,"10.1":0.03281,"11.1-11.2":0.01094,"12.0":0.04374,"13.0":0.07655,"14.0":0.04374,"15.0":0.03281,"16.0":1.017},I:{"0":0,"3":0,"4":0.00421,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00118,"4.4":0,"4.4.3-4.4.4":0.00521},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0094,"11":0.21625,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":16.97092},S:{"2.5":0},R:{_:"0"},M:{"0":0.56699},Q:{"10.4":0},O:{"0":0.0106},H:{"0":0.03512}}; 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 53d47ece1568da..b10f0366c11255 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js @@ -1 +1 @@ -module.exports={C:{"42":0.00713,"47":0.0095,"48":0.00238,"51":0.00238,"52":0.02613,"56":0.00475,"60":0.00238,"66":0.00475,"68":0.00238,"72":0.00713,"78":0.00713,"80":0.00238,"81":0.00238,"83":0.00238,"88":0.01425,"89":0.00475,"90":0.00713,"91":0.02375,"92":0.00475,"93":0.00475,"94":0.01188,"95":0.0095,"96":0.0095,"97":0.019,"98":0.29213,"99":0.9025,"100":0.06175,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 49 50 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 82 84 85 86 87 101 3.5 3.6"},D:{"49":0.02375,"55":0.00238,"56":0.00238,"58":0.00475,"63":0.01188,"64":0.00475,"65":0.00238,"66":0.00238,"67":0.00475,"68":0.00238,"69":0.00475,"70":0.01188,"71":0.03088,"72":0.00475,"73":0.00475,"74":0.0095,"75":0.00713,"76":0.00475,"77":0.00475,"78":0.00713,"79":0.019,"80":0.02613,"81":0.019,"83":0.03325,"84":0.02138,"85":0.02138,"86":0.0285,"87":0.057,"88":0.01425,"89":0.019,"90":0.02375,"91":0.03325,"92":0.04513,"93":0.0285,"94":0.05225,"95":0.0285,"96":0.10213,"97":0.13538,"98":0.19238,"99":2.67663,"100":13.85813,"101":0.247,"102":0.01425,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 59 60 61 62 103 104"},F:{"82":0.00238,"84":0.04275,"85":0.20425,"86":0.00475,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 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.00713,"16":0.00238,"17":0.00238,"18":0.0095,"84":0.00238,"89":0.00238,"92":0.00713,"95":0.00238,"96":0.00475,"97":0.00713,"98":0.01188,"99":0.12825,"100":0.779,"101":0.0095,_:"13 14 15 79 80 81 83 85 86 87 88 90 91 93 94"},E:{"4":0,"13":0.00475,"14":0.01425,"15":0.0095,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00238,"12.1":0.00475,"13.1":0.019,"14.1":0.04513,"15.1":0.019,"15.2-15.3":0.02138,"15.4":0.11638},G:{"8":0.00123,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00147,"7.0-7.1":0.00712,"8.1-8.4":0,"9.0-9.2":0.00025,"9.3":0.00565,"10.0-10.2":0.00098,"10.3":0.00761,"11.0-11.2":0.03464,"11.3-11.4":0.00418,"12.0-12.1":0.00639,"12.2-12.5":0.11521,"13.0-13.1":0.00491,"13.2":0.0027,"13.3":0.01081,"13.4-13.7":0.03242,"14.0-14.4":0.12577,"14.5-14.8":0.23852,"15.0-15.1":0.18521,"15.2-15.3":0.73029,"15.4":0.93957},P:{"4":0.19103,"5.0-5.4":0.08176,"6.2-6.4":0.02123,"7.2-7.4":0.11674,"8.2":0.06132,"9.2":0.02123,"10.1":0.01055,"11.1-11.2":0.04245,"12.0":0.02123,"13.0":0.0849,"14.0":0.10613,"15.0":0.07429,"16.0":0.64737},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00436,"4.4":0,"4.4.3-4.4.4":0.01852},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04275,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":69.96629},S:{"2.5":0.5718},R:{_:"0"},M:{"0":0.15248},Q:{"10.4":0},O:{"0":1.73065},H:{"0":2.36026}}; +module.exports={C:{"42":0.00484,"47":0.00726,"48":0.00242,"52":0.0242,"56":0.00484,"66":0.00484,"72":0.00484,"78":0.00726,"79":0.00242,"80":0.00484,"82":0.00242,"83":0.00242,"88":0.01452,"89":0.00968,"90":0.00726,"91":0.0242,"92":0.00242,"93":0.00242,"94":0.00726,"95":0.00726,"96":0.00968,"97":0.00968,"98":0.01694,"99":0.26378,"100":1.0527,"101":0.07018,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 81 84 85 86 87 102 103 3.5 3.6"},D:{"49":0.01936,"55":0.00242,"56":0.00242,"58":0.00242,"63":0.01452,"64":0.00484,"65":0.00242,"66":0.00242,"67":0.00484,"68":0.00242,"69":0.00484,"70":0.0121,"71":0.02662,"72":0.00484,"73":0.00484,"74":0.00968,"75":0.00484,"76":0.00484,"77":0.00484,"78":0.00726,"79":0.01936,"80":0.02178,"81":0.01936,"83":0.03388,"84":0.02662,"85":0.0242,"86":0.0363,"87":0.05566,"88":0.0121,"89":0.01694,"90":0.02178,"91":0.02904,"92":0.03872,"93":0.0242,"94":0.0484,"95":0.02662,"96":0.07986,"97":0.07502,"98":0.09438,"99":0.1936,"100":3.23312,"101":13.18174,"102":0.79134,"103":0.01694,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 59 60 61 62 104"},F:{"84":0.00484,"85":0.11616,"86":0.13068,"87":0.00968,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00726,"16":0.00242,"17":0.00242,"18":0.0121,"84":0.00484,"85":0.00242,"89":0.00242,"92":0.00726,"96":0.00484,"97":0.00484,"98":0.00726,"99":0.0121,"100":0.05808,"101":0.89056,_:"13 14 15 79 80 81 83 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.00484,"14":0.01452,"15":0.00726,_:"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","12.1":0.00484,"13.1":0.01936,"14.1":0.03872,"15.1":0.01452,"15.2-15.3":0.01694,"15.4":0.16214,"15.5":0.01936},G:{"8":0.00142,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00047,"7.0-7.1":0.00641,"8.1-8.4":0,"9.0-9.2":0.00024,"9.3":0.00594,"10.0-10.2":0.00071,"10.3":0.00665,"11.0-11.2":0.01116,"11.3-11.4":0.0038,"12.0-12.1":0.00665,"12.2-12.5":0.10376,"13.0-13.1":0.00451,"13.2":0.00285,"13.3":0.00855,"13.4-13.7":0.02683,"14.0-14.4":0.10614,"14.5-14.8":0.19209,"15.0-15.1":0.13985,"15.2-15.3":0.27615,"15.4":1.46835},P:{"4":0.15937,"5.0-5.4":0.01035,"6.2-6.4":0.02125,"7.2-7.4":0.10625,"8.2":0.02069,"9.2":0.02125,"10.1":0.01081,"11.1-11.2":0.03187,"12.0":0.02125,"13.0":0.07437,"14.0":0.09562,"15.0":0.06375,"16.0":0.36125},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00359,"4.4":0,"4.4.3-4.4.4":0.01915},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04114,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":70.0541},S:{"2.5":0.62914},R:{_:"0"},M:{"0":0.1516},Q:{"10.4":0},O:{"0":1.50084},H:{"0":2.09547}}; 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 63bba1bee6da8d..0e4666ea1b5cb3 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:{"3":0.00211,"20":0.00211,"29":0.00211,"31":0.00211,"34":0.00211,"35":0.00211,"38":0.00211,"39":0.00421,"40":0.00421,"41":0.00632,"42":0.00421,"43":0.00632,"44":0.00632,"45":0.00632,"46":0.00632,"47":0.01054,"48":0.00632,"49":0.00632,"50":0.00843,"51":0.24231,"52":0.2107,"53":0.23809,"54":0.12642,"55":0.22756,"56":0.16645,"57":0.16224,"58":0.06532,"59":0.06532,"68":0.00632,"69":0.00211,"72":0.00421,"78":0.01054,"88":0.00632,"89":0.00632,"91":0.01264,"92":0.00211,"93":0.00211,"94":0.00421,"95":0.00211,"96":0.00211,"97":0.00843,"98":0.11799,"99":0.40454,"100":0.00843,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 30 32 33 36 37 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 101 3.5 3.6"},D:{"11":0.00211,"26":0.00421,"31":0.00421,"33":0.00632,"34":0.00421,"36":0.00421,"38":0.01475,"39":0.06742,"40":0.06953,"41":0.07164,"42":0.07164,"43":0.11378,"44":0.07796,"45":0.09271,"46":0.09271,"47":0.09692,"48":0.07796,"49":0.08007,"50":0.05268,"51":0.06321,"52":0.05478,"53":0.06532,"54":0.06321,"55":0.06953,"56":0.07585,"57":0.07585,"58":0.09482,"59":0.0906,"60":0.10114,"61":0.08428,"62":0.08217,"63":0.09271,"64":0.08428,"65":0.08639,"66":0.00211,"67":0.00211,"68":0.00843,"69":0.00632,"70":0.01264,"71":0.00632,"72":0.00421,"73":0.00632,"74":0.00843,"75":0.00211,"76":0.00421,"77":0.00421,"78":0.00632,"79":0.10535,"80":0.01054,"81":0.02528,"83":0.0611,"84":0.01264,"85":0.01475,"86":0.04003,"87":0.04003,"88":0.02528,"89":0.0611,"90":0.02107,"91":0.02739,"92":0.06321,"93":0.01475,"94":0.01686,"95":0.03371,"96":0.08849,"97":0.0611,"98":0.13906,"99":1.44751,"100":7.96446,"101":0.13696,"102":0.00632,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 35 37 103 104"},F:{"12":0.00211,"15":0.00421,"28":0.00211,"32":0.00421,"34":0.00211,"36":0.00211,"41":0.00211,"42":0.00632,"43":0.00632,"45":0.00211,"46":0.00421,"47":0.00421,"73":0.00211,"79":0.00211,"82":0.00211,"84":0.06532,"85":0.32869,"86":0.00632,_:"9 11 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 35 37 38 39 40 44 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00632},B:{"12":0.01054,"13":0.00843,"14":0.00843,"15":0.00843,"16":0.00632,"17":0.00421,"18":0.01896,"84":0.01054,"85":0.00421,"86":0.00421,"87":0.00421,"88":0.00421,"89":0.01054,"90":0.00632,"91":0.00632,"92":0.02107,"93":0.00211,"94":0.00421,"95":0.00843,"96":0.01054,"97":0.06742,"98":0.01475,"99":0.13063,"100":0.9945,"101":0.01475,_:"79 80 81 83"},E:{"4":0,"13":0.01686,"14":0.09903,"15":0.03161,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.04003,"9.1":0.00632,"12.1":0.00421,"13.1":0.04425,"14.1":0.20017,"15.1":0.06321,"15.2-15.3":0.0611,"15.4":0.41087},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00626,"6.0-6.1":0.00156,"7.0-7.1":0.04693,"8.1-8.4":0,"9.0-9.2":0.05319,"9.3":0.03442,"10.0-10.2":0.09699,"10.3":0.11733,"11.0-11.2":0.02816,"11.3-11.4":0.02034,"12.0-12.1":0.03755,"12.2-12.5":0.81194,"13.0-13.1":0.0219,"13.2":0.01252,"13.3":0.08448,"13.4-13.7":0.18147,"14.0-14.4":0.66332,"14.5-14.8":1.99152,"15.0-15.1":0.94022,"15.2-15.3":4.74804,"15.4":5.73988},P:{"4":0.30362,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.42507,"8.2":0.01012,"9.2":0.12145,"10.1":0.04048,"11.1-11.2":0.57688,"12.0":0.11133,"13.0":0.51616,"14.0":0.56676,"15.0":0.41495,"16.0":5.63726},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.00341,"4.4":0,"4.4.3-4.4.4":0.0432},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.09179,"9":0.11314,"10":0.03629,"11":0.08325,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":55.39123},S:{"2.5":0},R:{_:"0"},M:{"0":0.11052},Q:{"10.4":0.01579},O:{"0":0.57626},H:{"0":0.20926}}; +module.exports={C:{"20":0.00208,"31":0.00208,"38":0.00208,"39":0.00417,"40":0.00417,"41":0.00625,"42":0.00417,"43":0.00625,"44":0.00625,"45":0.00417,"46":0.00417,"47":0.00834,"48":0.00417,"49":0.00417,"50":0.00625,"51":0.20632,"52":0.20006,"53":0.20006,"54":0.10628,"55":0.1959,"56":0.13963,"57":0.13754,"58":0.05418,"59":0.05835,"68":0.00834,"69":0.00834,"72":0.00208,"78":0.00417,"88":0.00417,"89":0.00834,"91":0.01667,"94":0.00208,"97":0.00417,"98":0.00625,"99":0.11462,"100":0.44806,"101":0.01042,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 93 95 96 102 103 3.5 3.6"},D:{"11":0.00417,"26":0.00417,"31":0.00208,"33":0.01042,"34":0.00417,"35":0.00625,"38":0.02084,"39":0.05627,"40":0.06252,"41":0.06252,"42":0.06044,"43":0.12296,"44":0.0646,"45":0.08128,"46":0.07919,"47":0.08544,"48":0.0646,"49":0.06877,"50":0.04376,"51":0.05418,"52":0.04793,"53":0.05418,"54":0.05418,"55":0.06044,"56":0.06669,"57":0.0646,"58":0.07919,"59":0.07711,"60":0.08753,"61":0.07294,"62":0.07086,"63":0.08336,"64":0.07086,"65":0.07502,"68":0.00834,"69":0.00625,"70":0.00625,"71":0.00625,"72":0.00834,"73":0.00417,"74":0.00417,"75":0.00417,"76":0.00417,"77":0.00417,"78":0.00625,"79":0.09378,"80":0.00625,"81":0.02501,"83":0.03126,"84":0.01042,"85":0.01042,"86":0.04376,"87":0.02084,"88":0.02292,"89":0.04585,"90":0.01876,"91":0.02709,"92":0.04168,"93":0.01459,"94":0.01667,"95":0.03334,"96":0.06669,"97":0.04168,"98":0.07502,"99":0.11879,"100":1.75473,"101":7.45864,"102":0.769,"103":0.01667,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 36 37 66 67 104"},F:{"12":0.00208,"15":0.00417,"28":0.00208,"32":0.00208,"34":0.00208,"36":0.00208,"42":0.00625,"43":0.00417,"46":0.00417,"47":0.00417,"79":0.00417,"84":0.00417,"85":0.21465,"86":0.23132,"87":0.01876,_:"9 11 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 35 37 38 39 40 41 44 45 48 49 50 51 52 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00625},B:{"12":0.00834,"13":0.00625,"14":0.00625,"15":0.00625,"16":0.00417,"17":0.00208,"18":0.01459,"84":0.00834,"85":0.00417,"86":0.00208,"87":0.00208,"88":0.00417,"89":0.00834,"90":0.00417,"91":0.00625,"92":0.01667,"93":0.00208,"94":0.00208,"95":0.00417,"96":0.00625,"97":0.02292,"98":0.00625,"99":0.03751,"100":0.06044,"101":1.0816,_:"79 80 81 83"},E:{"4":0,"12":0.00208,"13":0.01459,"14":0.10628,"15":0.02918,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.03543,"12.1":0.00834,"13.1":0.0396,"14.1":0.20632,"15.1":0.0396,"15.2-15.3":0.04585,"15.4":0.75024,"15.5":0.08961},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.00158,"7.0-7.1":0.0396,"8.1-8.4":0,"9.0-9.2":0.06811,"9.3":0.04752,"10.0-10.2":0.08395,"10.3":0.11404,"11.0-11.2":0.02217,"11.3-11.4":0.01901,"12.0-12.1":0.03801,"12.2-12.5":0.79035,"13.0-13.1":0.01742,"13.2":0.01267,"13.3":0.08236,"13.4-13.7":0.17739,"14.0-14.4":0.56544,"14.5-14.8":1.6108,"15.0-15.1":0.64464,"15.2-15.3":1.33521,"15.4":10.16056},P:{"4":0.16372,"5.0-5.4":0.06059,"6.2-6.4":0.0505,"7.2-7.4":0.20465,"8.2":0.07069,"9.2":0.07163,"10.1":0.10099,"11.1-11.2":0.26604,"12.0":0.06139,"13.0":0.28651,"14.0":0.27627,"15.0":0.19441,"16.0":1.65764},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00103,"4.2-4.3":0.0041,"4.4":0,"4.4.3-4.4.4":0.06613},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.08036,"9":0.09727,"10":0.03172,"11":0.07824,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":58.53137},S:{"2.5":0},R:{_:"0"},M:{"0":0.11876},Q:{"10.4":0.02375},O:{"0":0.52252},H:{"0":0.26234}}; 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 65359ff9ed973b..4ec2e3298ed430 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:{"24":0.00234,"29":0.00234,"32":0.00234,"33":0.00703,"38":0.00234,"39":0.00234,"40":0.00469,"41":0.00469,"43":0.00703,"47":0.01641,"48":0.00469,"49":0.00469,"50":0.00469,"52":0.07266,"56":0.00703,"60":0.00469,"62":0.00234,"65":0.00234,"66":0.00234,"68":0.00703,"70":0.00234,"72":0.01875,"75":0.00234,"76":0.00234,"77":0.00703,"78":0.01641,"79":0.00938,"80":0.01406,"81":0.01172,"82":0.01172,"83":0.00938,"84":0.00703,"85":0.00469,"86":0.00469,"87":0.00469,"88":0.00938,"89":0.01406,"90":0.00469,"91":0.09376,"92":0.00703,"93":0.00938,"94":0.01875,"95":0.02813,"96":0.0375,"97":0.0797,"98":0.88134,"99":2.70029,"100":0.02578,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 30 31 34 35 36 37 42 44 45 46 51 53 54 55 57 58 59 61 63 64 67 69 71 73 74 101 3.5 3.6"},D:{"34":0.00938,"38":0.01172,"41":0.00234,"48":0.00703,"49":0.0211,"51":0.00234,"53":0.00234,"54":0.00234,"58":0.00469,"60":0.00234,"61":0.00234,"62":0.00703,"63":0.01406,"64":0.00469,"66":0.00469,"67":0.00469,"68":0.00469,"69":0.00469,"70":0.00469,"71":0.01406,"72":0.00703,"73":0.00469,"74":0.00703,"75":0.00469,"76":0.00469,"77":0.00703,"78":0.01406,"79":0.02813,"80":0.0211,"81":0.02344,"83":0.06798,"84":0.1172,"85":0.12892,"86":0.14533,"87":0.12658,"88":0.01875,"89":0.04219,"90":0.0211,"91":0.05391,"92":0.04922,"93":0.0211,"94":0.0375,"95":0.03047,"96":0.10782,"97":0.11251,"98":0.16877,"99":1.94552,"100":10.66754,"101":0.12892,"102":0.00234,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 50 52 55 56 57 59 65 103 104"},F:{"64":0.00469,"68":0.00234,"69":0.00234,"70":0.00469,"71":0.00469,"72":0.00469,"75":0.00234,"77":0.00703,"78":0.00469,"79":0.01172,"80":0.00469,"81":0.00469,"82":0.00469,"83":0.00938,"84":0.06798,"85":0.32347,"86":0.00703,_:"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 65 66 67 73 74 76 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.00703,"13":0.00469,"14":0.00469,"15":0.00469,"16":0.00469,"17":0.00703,"18":0.03516,"81":0.00234,"84":0.01172,"85":0.00703,"86":0.00703,"87":0.00234,"89":0.01172,"90":0.00938,"91":0.00234,"92":0.0211,"95":0.00234,"96":0.00938,"97":0.00938,"98":0.01406,"99":0.08438,"100":0.5649,_:"79 80 83 88 93 94 101"},E:{"4":0,"13":0.00469,"14":0.01406,"15":0.00469,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.25784,"13.1":0.01641,"14.1":0.02344,"15.1":0.01172,"15.2-15.3":0.00938,"15.4":0.03516},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00045,"6.0-6.1":0,"7.0-7.1":0.00361,"8.1-8.4":0,"9.0-9.2":0.00226,"9.3":0.00767,"10.0-10.2":0.00632,"10.3":0.02797,"11.0-11.2":0.01985,"11.3-11.4":0.0212,"12.0-12.1":0.02616,"12.2-12.5":0.4628,"13.0-13.1":0.02346,"13.2":0.01173,"13.3":0.06405,"13.4-13.7":0.1281,"14.0-14.4":0.42672,"14.5-14.8":0.62789,"15.0-15.1":0.53046,"15.2-15.3":1.02304,"15.4":1.09566},P:{"4":0.66213,"5.0-5.4":0.07023,"6.2-6.4":0.07023,"7.2-7.4":0.64206,"8.2":0.09029,"9.2":0.2809,"10.1":0.12039,"11.1-11.2":0.55177,"12.0":0.24077,"13.0":0.77248,"14.0":0.98316,"15.0":0.6521,"16.0":4.90578},I:{"0":0,"3":0,"4":0.00059,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00148,"4.2-4.3":0.01419,"4.4":0,"4.4.3-4.4.4":0.05264},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01409,"9":0.00705,"10":0.0047,"11":2.13298,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":61.10219},S:{"2.5":0},R:{_:"0"},M:{"0":1.0259},Q:{"10.4":0},O:{"0":0.13015},H:{"0":0.46389}}; +module.exports={C:{"29":0.00247,"32":0.00247,"33":0.00742,"34":0.00494,"38":0.00247,"39":0.00247,"40":0.00494,"41":0.00494,"43":0.00742,"46":0.00494,"47":0.01236,"48":0.00494,"49":0.00494,"50":0.00494,"52":0.07169,"55":0.00247,"56":0.00742,"60":0.00247,"61":0.00247,"64":0.00247,"65":0.00247,"66":0.00247,"68":0.00742,"70":0.00247,"72":0.01978,"75":0.00247,"76":0.00247,"77":0.00494,"78":0.02225,"79":0.01483,"80":0.0173,"81":0.00989,"82":0.01978,"83":0.00989,"84":0.00742,"85":0.00247,"86":0.00494,"87":0.00247,"88":0.00989,"89":0.01236,"90":0.00494,"91":0.09394,"92":0.00742,"93":0.00742,"94":0.01483,"95":0.02225,"96":0.02472,"97":0.03955,"98":0.04697,"99":0.70699,"100":3.03067,"101":0.05191,_:"2 3 4 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 35 36 37 42 44 45 51 53 54 57 58 59 62 63 67 69 71 73 74 102 103 3.5 3.6"},D:{"34":0.00989,"38":0.00989,"39":0.00247,"41":0.00494,"48":0.00494,"49":0.01978,"51":0.00247,"53":0.00247,"54":0.00247,"58":0.00494,"60":0.00247,"62":0.00742,"63":0.00989,"64":0.00247,"66":0.00247,"67":0.00247,"68":0.00247,"69":0.00742,"70":0.00494,"71":0.01483,"72":0.00742,"73":0.00494,"74":0.00989,"75":0.00494,"76":0.00742,"77":0.00742,"78":0.0173,"79":0.02719,"80":0.02225,"81":0.02225,"83":0.0791,"84":0.15574,"85":0.14338,"86":0.17798,"87":0.15326,"88":0.01978,"89":0.03955,"90":0.02225,"91":0.04944,"92":0.05438,"93":0.02225,"94":0.03214,"95":0.02472,"96":0.08652,"97":0.07416,"98":0.08899,"99":0.15326,"100":2.40526,"101":10.23902,"102":0.927,"103":0.00494,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 42 43 44 45 46 47 50 52 55 56 57 59 61 65 104"},F:{"64":0.00494,"68":0.00742,"69":0.00494,"70":0.00494,"71":0.01236,"72":0.00494,"76":0.00247,"79":0.00742,"82":0.00247,"83":0.00494,"84":0.00742,"85":0.17057,"86":0.22495,"87":0.01236,_:"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 65 66 67 73 74 75 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00494,"13":0.00494,"14":0.00494,"15":0.00247,"16":0.00247,"17":0.00494,"18":0.03461,"81":0.00494,"83":0.00247,"84":0.01236,"85":0.00989,"86":0.00742,"87":0.00742,"89":0.01978,"90":0.00742,"92":0.01978,"96":0.00742,"97":0.00494,"98":0.00989,"99":0.01978,"100":0.03708,"101":0.63036,_:"79 80 88 91 93 94 95"},E:{"4":0,"13":0.00494,"14":0.01483,"15":0.00494,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.19529,"12.1":0.00247,"13.1":0.01483,"14.1":0.01978,"15.1":0.00989,"15.2-15.3":0.00742,"15.4":0.05438,"15.5":0.00989},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.0025,"8.1-8.4":0,"9.0-9.2":0.001,"9.3":0.006,"10.0-10.2":0.006,"10.3":0.0265,"11.0-11.2":0.0195,"11.3-11.4":0.0205,"12.0-12.1":0.0255,"12.2-12.5":0.45396,"13.0-13.1":0.0245,"13.2":0.012,"13.3":0.06749,"13.4-13.7":0.13399,"14.0-14.4":0.43946,"14.5-14.8":0.57745,"15.0-15.1":0.44446,"15.2-15.3":0.65895,"15.4":2.07883},P:{"4":0.57565,"5.0-5.4":0.06059,"6.2-6.4":0.0505,"7.2-7.4":0.55545,"8.2":0.07069,"9.2":0.23228,"10.1":0.10099,"11.1-11.2":0.46456,"12.0":0.21208,"13.0":0.66654,"14.0":0.86852,"15.0":0.51506,"16.0":3.16103},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.01596,"4.4":0,"4.4.3-4.4.4":0.05655},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01236,"9":0.00989,"11":2.26435,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":60.00405},S:{"2.5":0},R:{_:"0"},M:{"0":1.04639},Q:{"10.4":0},O:{"0":0.11292},H:{"0":0.45613}}; 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 4427056915cd4a..81d992da54b759 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.00544,"3":0.01088,"40":0.00544,"48":0.00544,"52":0.06527,"78":0.13054,"84":0.01632,"88":0.01088,"91":0.06527,"95":0.00544,"96":0.01632,"97":0.05983,"98":1.38151,"99":3.54079,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 94 100 101 3.5","3.6":0.01088},D:{"41":0.01088,"43":0.01088,"44":0.01088,"45":0.00544,"46":0.01088,"47":0.01088,"48":0.01088,"49":0.0272,"51":0.01632,"63":0.01632,"65":0.03807,"66":0.01088,"67":0.01632,"68":0.01088,"70":0.01632,"73":0.00544,"76":0.02176,"77":0.01088,"78":0.01088,"79":0.06527,"80":0.05439,"83":0.01632,"84":0.05439,"85":0.01088,"86":0.03263,"87":0.21756,"88":0.00544,"89":0.01088,"90":0.00544,"91":0.02176,"92":0.01088,"93":0.01088,"94":0.01632,"95":0.23388,"96":0.23932,"97":0.14685,"98":0.56566,"99":6.67909,"100":20.91296,"101":0.3481,"102":0.00544,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 50 52 53 54 55 56 57 58 59 60 61 62 64 69 71 72 74 75 81 103 104"},F:{"48":0.01088,"82":0.00544,"84":0.44056,"85":1.19114,"86":0.08159,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00544},B:{"14":0.02176,"18":0.04351,"85":0.01088,"95":0.00544,"96":0.03807,"97":0.01632,"98":0.04351,"99":0.69075,"100":5.15617,"101":0.14685,_:"12 13 15 16 17 79 80 81 83 84 86 87 88 89 90 91 92 93 94"},E:{"4":0,"9":0.0272,"12":0.01088,"13":0.05439,"14":0.44056,"15":0.19037,_:"0 5 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04351,"11.1":0.17949,"12.1":0.17405,"13.1":0.75602,"14.1":1.49029,"15.1":0.29915,"15.2-15.3":0.39161,"15.4":2.28438},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.00998,"8.1-8.4":0.00832,"9.0-9.2":0,"9.3":0.05157,"10.0-10.2":0.00665,"10.3":0.06487,"11.0-11.2":0.07153,"11.3-11.4":0.01164,"12.0-12.1":0.05323,"12.2-12.5":0.36761,"13.0-13.1":0.00499,"13.2":0.00499,"13.3":0.03659,"13.4-13.7":0.12475,"14.0-14.4":0.31937,"14.5-14.8":1.95116,"15.0-15.1":0.69197,"15.2-15.3":6.98458,"15.4":5.86013},P:{"4":0.07382,"5.0-5.4":0.08176,"6.2-6.4":0.01055,"7.2-7.4":0.18592,"8.2":0.06132,"9.2":0.01055,"10.1":0.01055,"11.1-11.2":0.02109,"12.0":0.01055,"13.0":0.08437,"14.0":0.07382,"15.0":0.04219,"16.0":4.22908},I:{"0":0,"3":0.00216,"4":0.01838,"2.1":0.00324,"2.2":0.00973,"2.3":0.01189,"4.1":0.00865,"4.2-4.3":0.02163,"4.4":0,"4.4.3-4.4.4":0.07029},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.01088,"8":0.05983,"9":0.01632,"10":0.01088,"11":0.15229,_:"6 5.5"},J:{"7":0,"10":0.00912},N:{"10":0.02281,_:"11"},L:{"0":23.86238},S:{"2.5":0.01825},R:{_:"0"},M:{"0":0.61587},Q:{"10.4":0},O:{"0":0.03193},H:{"0":0.22027}}; +module.exports={C:{"52":0.03905,"60":0.00558,"78":0.13948,"91":0.03905,"94":0.01116,"96":0.01674,"97":0.00558,"98":0.05021,"99":0.65274,"100":3.46456,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 101 102 103 3.5 3.6"},D:{"49":0.0279,"51":0.01116,"65":0.01674,"67":0.01116,"76":0.01116,"77":0.00558,"78":0.00558,"79":0.03905,"80":0.03347,"81":0.02232,"83":0.01116,"84":0.00558,"85":0.01674,"86":0.01674,"87":0.18969,"88":0.00558,"89":0.0279,"90":0.00558,"91":0.02232,"92":0.02232,"93":0.02232,"94":0.01674,"95":0.18969,"96":0.09484,"97":0.08926,"98":0.212,"99":0.60811,"100":7.93892,"101":21.32852,"102":1.46728,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 75 103 104"},F:{"83":0.00558,"84":0.00558,"85":0.91496,"86":0.95959,"87":0.06137,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"87":0.00558,"96":0.02232,"98":0.01116,"99":0.02232,"100":0.21758,"101":5.367,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 97"},E:{"4":0,"9":0.01116,"13":0.05021,"14":0.37937,"15":0.13948,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05579,"11.1":0.21758,"12.1":0.106,"13.1":0.60811,"14.1":1.42822,"15.1":0.32358,"15.2-15.3":0.29569,"15.4":4.30141,"15.5":0.36264},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.00179,"8.1-8.4":0.00359,"9.0-9.2":0.00359,"9.3":0.03048,"10.0-10.2":0,"10.3":0.05738,"11.0-11.2":0.03586,"11.3-11.4":0.00717,"12.0-12.1":0.0251,"12.2-12.5":0.35323,"13.0-13.1":0.00359,"13.2":0,"13.3":0.03227,"13.4-13.7":0.12193,"14.0-14.4":0.30123,"14.5-14.8":1.71953,"15.0-15.1":0.4375,"15.2-15.3":1.53664,"15.4":13.24705},P:{"4":0.05255,"5.0-5.4":0.01035,"6.2-6.4":0.02043,"7.2-7.4":0.20692,"8.2":0.02069,"9.2":0.02163,"10.1":0.01081,"11.1-11.2":0.02102,"12.0":0.01033,"13.0":0.03153,"14.0":0.05255,"15.0":0.04204,"16.0":1.16671},I:{"0":0,"3":0,"4":0.00619,"2.1":0.00177,"2.2":0.00354,"2.3":0.00354,"4.1":0.00265,"4.2-4.3":0.00884,"4.4":0,"4.4.3-4.4.4":0.03095},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02232,"10":0.00558,"11":0.106,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":22.33926},S:{"2.5":0.00442},R:{_:"0"},M:{"0":0.33165},Q:{"10.4":0},O:{"0":0.01769},H:{"0":0.15071}}; 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 7958fbbfe7e346..20d788cf4f4a1b 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:{"48":0.01324,"52":0.13236,"55":0.01324,"56":0.01765,"57":0.00441,"59":0.01324,"66":0.00441,"68":0.00882,"72":0.00882,"78":0.09706,"81":0.00441,"83":0.00441,"84":0.00441,"87":0.02206,"88":0.02206,"89":0.00882,"90":0.00441,"91":0.10148,"92":0.00441,"93":0.00882,"94":0.05736,"95":0.02206,"96":0.03088,"97":0.04412,"98":0.9927,"99":3.00016,"100":0.01765,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 58 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 82 85 86 101 3.5 3.6"},D:{"38":0.01324,"47":0.00441,"49":0.14118,"53":0.00441,"56":0.00441,"60":0.01324,"62":0.00441,"63":0.10148,"65":0.01324,"66":0.09265,"67":0.04412,"68":0.00882,"69":0.2559,"70":0.00441,"71":0.00882,"72":0.00441,"73":0.00441,"74":0.03971,"75":0.00882,"76":0.00882,"77":0.02206,"78":0.00882,"79":0.075,"80":0.03088,"81":0.03088,"83":0.02647,"84":0.0353,"85":0.04853,"86":0.04853,"87":0.09706,"88":0.02647,"89":0.04853,"90":0.03088,"91":0.04412,"92":0.09265,"93":0.0353,"94":1.16036,"95":0.06618,"96":0.16766,"97":0.10148,"98":0.2559,"99":4.32376,"100":20.85552,"101":0.32208,"102":0.01324,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 59 61 64 103 104"},F:{"28":0.00441,"36":0.00441,"46":0.00882,"84":0.13677,"85":0.63092,"86":0.01324,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00441,"17":0.01324,"18":0.01765,"85":0.00441,"90":0.00441,"91":0.00441,"92":0.00882,"94":0.00441,"96":0.01324,"97":0.0353,"98":0.02647,"99":0.49856,"100":3.33547,"101":0.05736,_:"12 13 14 15 79 80 81 83 84 86 87 88 89 93 95"},E:{"4":0,"11":0.00441,"12":0.00882,"13":0.03971,"14":0.25148,"15":0.10589,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01765,"10.1":0.00882,"11.1":0.05736,"12.1":0.08383,"13.1":0.3309,"14.1":0.57356,"15.1":0.19413,"15.2-15.3":0.21178,"15.4":1.1383},G:{"8":0.00255,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00255,"7.0-7.1":0.00894,"8.1-8.4":0.00639,"9.0-9.2":0.01022,"9.3":0.10091,"10.0-10.2":0.00766,"10.3":0.09963,"11.0-11.2":0.03832,"11.3-11.4":0.03449,"12.0-12.1":0.03193,"12.2-12.5":0.46493,"13.0-13.1":0.03193,"13.2":0.01277,"13.3":0.04471,"13.4-13.7":0.1967,"14.0-14.4":0.48409,"14.5-14.8":1.41779,"15.0-15.1":0.6578,"15.2-15.3":4.05028,"15.4":5.06956},P:{"4":0.12575,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.01022,"8.2":0.01012,"9.2":0.03144,"10.1":0.04089,"11.1-11.2":0.09431,"12.0":0.03144,"13.0":0.11527,"14.0":0.16767,"15.0":0.10479,"16.0":3.19621},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00547,"4.2-4.3":0.00456,"4.4":0,"4.4.3-4.4.4":0.03467},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00892,"11":0.39257,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":37.17088},S:{"2.5":0},R:{_:"0"},M:{"0":0.39675},Q:{"10.4":0},O:{"0":0.15646},H:{"0":0.28039}}; +module.exports={C:{"47":0.00902,"48":0.00902,"52":0.10819,"55":0.00902,"56":0.01352,"59":0.01352,"66":0.00451,"68":0.00902,"72":0.00902,"78":0.09467,"81":0.00451,"87":0.00902,"88":0.02254,"89":0.00451,"90":0.00902,"91":0.09467,"92":0.00451,"93":0.02254,"94":0.06762,"95":0.02254,"96":0.03156,"97":0.01803,"98":0.04057,"99":0.77087,"100":3.16011,"101":0.02705,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 57 58 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 102 103 3.5 3.6"},D:{"38":0.00902,"49":0.12172,"59":0.00902,"60":0.01352,"62":0.00451,"63":0.09918,"65":0.01352,"66":0.09016,"67":0.01352,"68":0.00902,"69":0.19384,"70":0.00451,"71":0.00451,"72":0.00902,"73":0.00902,"74":0.04057,"75":0.00451,"76":0.00902,"77":0.01803,"78":0.01352,"79":0.06311,"80":0.02705,"81":0.02705,"83":0.03156,"84":0.04508,"85":0.04057,"86":0.07213,"87":0.10368,"88":0.02705,"89":0.04508,"90":0.02254,"91":0.04508,"92":0.10368,"93":0.01803,"94":0.04959,"95":0.02705,"96":0.10368,"97":0.06762,"98":0.12172,"99":0.23892,"100":5.0129,"101":20.71877,"102":1.83025,"103":0.00902,"104":0.00451,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 61 64"},F:{"46":0.00902,"71":0.00451,"84":0.00451,"85":0.50039,"86":0.40121,"87":0.03156,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00451,"17":0.00902,"18":0.01352,"85":0.00451,"89":0.00451,"92":0.00902,"93":0.00902,"96":0.00902,"97":0.02254,"98":0.02254,"99":0.04508,"100":0.1668,"101":3.69656,_:"12 13 14 15 79 80 81 83 84 86 87 88 90 91 94 95"},E:{"4":0,"12":0.00902,"13":0.04057,"14":0.25245,"15":0.09467,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00902,"10.1":0.00902,"11.1":0.0541,"12.1":0.07213,"13.1":0.33359,"14.1":0.52293,"15.1":0.1668,"15.2-15.3":0.16229,"15.4":1.92041,"15.5":0.24794},G:{"8":0.00136,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00136,"6.0-6.1":0.00407,"7.0-7.1":0.00679,"8.1-8.4":0.00679,"9.0-9.2":0.01901,"9.3":0.08689,"10.0-10.2":0.00679,"10.3":0.09096,"11.0-11.2":0.02715,"11.3-11.4":0.03937,"12.0-12.1":0.02851,"12.2-12.5":0.44802,"13.0-13.1":0.02172,"13.2":0.01222,"13.3":0.04344,"13.4-13.7":0.17649,"14.0-14.4":0.46838,"14.5-14.8":1.26123,"15.0-15.1":0.49146,"15.2-15.3":1.01279,"15.4":9.32144},P:{"4":0.12563,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.01047,"11.1-11.2":0.08375,"12.0":0.02094,"13.0":0.10469,"14.0":0.14657,"15.0":0.08375,"16.0":1.24583},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00391,"4.2-4.3":0.00391,"4.4":0,"4.4.3-4.4.4":0.03613},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00456,"9":0.00913,"11":0.35597,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.35149},Q:{"10.4":0},O:{"0":0.10984},H:{"0":0.27037},L:{"0":36.71649},S:{"2.5":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 c67dc8b44729e2..c7426124345bcb 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:{"52":0.01251,"60":0.01668,"66":0.01668,"78":0.01668,"83":0.02502,"91":0.01251,"95":0.00834,"97":0.01251,"98":0.35862,"99":1.24683,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 94 96 100 101 3.5 3.6"},D:{"49":0.03336,"65":0.04587,"67":0.00834,"72":0.17097,"75":0.01251,"79":0.03336,"80":0.12927,"83":0.02502,"84":0.01668,"87":0.05838,"89":0.00834,"90":0.0417,"91":0.00417,"92":0.00834,"93":0.02085,"94":0.01668,"95":0.00417,"96":0.02919,"97":0.09174,"98":0.21684,"99":2.81475,"100":13.45242,"101":0.13761,"102":0.00834,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 73 74 76 77 78 81 85 86 88 103 104"},F:{"84":0.09591,"85":0.12927,_:"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 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.01251,"88":0.01668,"92":0.00834,"96":0.01251,"97":0.05004,"98":0.01251,"99":1.04667,"100":6.45516,"101":0.11676,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 89 90 91 93 94 95"},E:{"4":0,"11":0.00834,"12":0.0417,"13":0.05004,"14":0.48372,"15":0.14178,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01251,"10.1":0.02502,"11.1":0.06255,"12.1":0.18765,"13.1":0.40866,"14.1":1.7097,"15.1":0.21684,"15.2-15.3":0.45036,"15.4":4.07826},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.09975,"7.0-7.1":0,"8.1-8.4":0.00333,"9.0-9.2":0.20283,"9.3":0.37573,"10.0-10.2":0.0133,"10.3":0.62178,"11.0-11.2":0.0266,"11.3-11.4":0.08645,"12.0-12.1":0.0266,"12.2-12.5":1.54946,"13.0-13.1":0.00333,"13.2":0,"13.3":0.05985,"13.4-13.7":0.20948,"14.0-14.4":0.7847,"14.5-14.8":3.48129,"15.0-15.1":1.1837,"15.2-15.3":12.88443,"15.4":11.62425},P:{"4":0.31484,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.2456,"8.2":0.01012,"9.2":0.02136,"10.1":0.04089,"11.1-11.2":0.03257,"12.0":0.03204,"13.0":0.05428,"14.0":0.02171,"15.0":0.57541,"16.0":4.20154},I:{"0":0,"3":0,"4":0.00067,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00067,"4.4":0,"4.4.3-4.4.4":0.01614},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.59711,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":18.41902},S:{"2.5":0},R:{_:"0"},M:{"0":0.2332},Q:{"10.4":0},O:{"0":0},H:{"0":0.03864}}; +module.exports={C:{"52":0.00424,"78":0.01272,"80":0.01272,"81":0.01696,"83":0.00424,"91":0.01696,"92":0.0212,"95":0.00424,"96":0.00424,"97":0.00848,"98":0.00848,"99":0.34336,"100":1.40735,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 82 84 85 86 87 88 89 90 93 94 101 102 103 3.5 3.6"},D:{"49":0.0212,"65":0.02543,"72":0.05935,"75":0.00848,"79":0.02967,"80":0.10598,"81":0.0975,"83":0.01696,"84":0.04239,"85":0.05935,"87":0.13565,"90":0.02543,"91":0.00848,"92":0.01272,"93":0.02543,"94":0.00848,"95":0.00424,"96":0.03391,"97":0.02543,"98":0.06782,"99":0.36455,"100":2.99273,"101":12.64494,"102":1.42007,"103":0.03391,"104":0.00848,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 76 77 78 86 88 89"},F:{"70":0.00848,"85":0.24162,"86":0.17804,"87":0.00848,_:"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 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:{"18":0.02967,"84":0.00848,"85":0.00848,"92":0.03391,"94":0.00848,"96":0.00424,"97":0.01696,"98":0.01696,"99":0.07206,"100":0.62313,"101":7.49031,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 91 93 95"},E:{"4":0,"12":0.00848,"13":0.06359,"14":0.56803,"15":0.12293,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00424,"10.1":0.00848,"11.1":0.05935,"12.1":0.14413,"13.1":0.36455,"14.1":1.48789,"15.1":0.15684,"15.2-15.3":0.30097,"15.4":6.33307,"15.5":0.64857},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.00703,"7.0-7.1":0,"8.1-8.4":0.00352,"9.0-9.2":0.06681,"9.3":0.32349,"10.0-10.2":0.02461,"10.3":1.2131,"11.0-11.2":0.00352,"11.3-11.4":0.08087,"12.0-12.1":0.00703,"12.2-12.5":1.32913,"13.0-13.1":0.00703,"13.2":0,"13.3":0.07736,"13.4-13.7":0.22855,"14.0-14.4":0.81928,"14.5-14.8":3.76236,"15.0-15.1":0.99861,"15.2-15.3":2.01831,"15.4":24.17757},P:{"4":0.22542,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.2737,"9.2":0.02105,"10.1":0.01053,"11.1-11.2":0.0644,"12.0":0.03158,"13.0":0.0322,"14.0":0.0322,"15.0":0.04294,"16.0":1.17002},I:{"0":0,"3":0,"4":0.00112,"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.02193},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.36072,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.25929},Q:{"10.4":0},O:{"0":0},H:{"0":0.06001},L:{"0":17.45028},S:{"2.5":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 6db43d5a61d7d8..f2865eae22f7eb 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:{"52":0.00433,"73":0.02167,"78":0.05201,"87":0.00867,"91":0.00433,"96":0.02167,"97":0.026,"98":0.26004,"99":0.81913,"100":0.013,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 101 3.5 3.6"},D:{"11":0.00433,"47":0.00433,"49":0.01734,"53":0.013,"56":0.00867,"61":0.00433,"65":0.013,"66":0.00867,"67":0.00867,"68":0.013,"69":0.013,"70":0.00867,"73":0.013,"74":0.00867,"75":0.04767,"76":0.08235,"77":0.01734,"78":0.01734,"79":0.09535,"80":0.026,"81":0.03901,"83":0.06068,"84":0.026,"85":0.01734,"86":0.01734,"87":0.05201,"88":0.01734,"89":0.013,"90":0.01734,"91":0.06934,"92":0.04767,"93":0.25571,"94":0.03467,"95":0.05201,"96":0.13869,"97":0.16469,"98":0.38573,"99":5.15746,"100":21.31461,"101":0.31205,"102":0.03034,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 59 60 62 63 64 71 72 103 104"},F:{"28":0.013,"84":0.15602,"85":0.94915,"86":0.013,_:"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 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.00433,"15":0.00433,"16":0.00867,"17":0.00433,"18":0.01734,"84":0.00433,"89":0.013,"92":0.00867,"94":0.00433,"95":0.00433,"96":0.013,"97":0.03467,"98":0.03034,"99":0.81913,"100":4.82808,"101":0.05634,_:"13 14 79 80 81 83 85 86 87 88 90 91 93"},E:{"4":0,"13":0.013,"14":0.05201,"15":0.04334,_:"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.00867,"12.1":0.02167,"13.1":0.1907,"14.1":0.45074,"15.1":0.11268,"15.2-15.3":0.11702,"15.4":0.58509},G:{"8":0.00669,"3.2":0.00669,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00402,"6.0-6.1":0,"7.0-7.1":0.13253,"8.1-8.4":0,"9.0-9.2":0.00402,"9.3":0.11379,"10.0-10.2":0.01071,"10.3":0.0589,"11.0-11.2":0.083,"11.3-11.4":0.01071,"12.0-12.1":0.0174,"12.2-12.5":0.46186,"13.0-13.1":0.0241,"13.2":0.00402,"13.3":0.03748,"13.4-13.7":0.11513,"14.0-14.4":0.35877,"14.5-14.8":1.3936,"15.0-15.1":0.75637,"15.2-15.3":4.48334,"15.4":5.29193},P:{"4":0.1495,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.2456,"8.2":0.01012,"9.2":0.02136,"10.1":0.04089,"11.1-11.2":0.18153,"12.0":0.03204,"13.0":0.09611,"14.0":0.13882,"15.0":0.17085,"16.0":3.51319},I:{"0":0,"3":0,"4":0.00335,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00447,"4.4":0,"4.4.3-4.4.4":0.07715},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00433,"11":0.07368,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":40.74436},S:{"2.5":0},R:{_:"0"},M:{"0":0.15296},Q:{"10.4":0},O:{"0":0.54384},H:{"0":0.19844}}; +module.exports={C:{"52":0.00406,"73":0.04058,"78":0.02029,"87":0.00406,"98":0.01217,"99":0.15015,"100":0.69392,"101":0.02841,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"11":0.00406,"38":0.00406,"49":0.01623,"53":0.01623,"56":0.00812,"58":0.00406,"61":0.00406,"65":0.02435,"66":0.02841,"68":0.01623,"69":0.01217,"70":0.00812,"73":0.02841,"74":0.00812,"75":0.06493,"76":0.0771,"77":0.01217,"78":0.00406,"79":0.10145,"80":0.02435,"81":0.04058,"83":0.04058,"84":0.03246,"85":0.00812,"86":0.02841,"87":0.04464,"88":0.02029,"89":0.01217,"90":0.02029,"91":0.04058,"92":0.04058,"93":0.21102,"94":0.02435,"95":0.03652,"96":0.06899,"97":0.08522,"98":0.18667,"99":0.28,"100":5.79482,"101":17.98911,"102":1.55827,"103":0.06493,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 59 60 62 63 64 67 71 72 104"},F:{"28":0.00406,"85":0.45044,"86":0.47073,"87":0.02841,_:"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:{"12":0.00406,"15":0.00406,"16":0.00812,"17":0.00406,"18":0.01623,"84":0.00812,"86":0.00406,"92":0.01217,"96":0.01623,"97":0.01217,"98":0.01623,"99":0.05681,"100":0.35305,"101":4.37047,_:"13 14 79 80 81 83 85 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01217,"14":0.06087,"15":0.04058,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00812,"11.1":0.01217,"12.1":0.02841,"13.1":0.19073,"14.1":0.43015,"15.1":0.07304,"15.2-15.3":0.08928,"15.4":0.89276,"15.5":0.06899},G:{"8":0.00286,"3.2":0.00286,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00715,"6.0-6.1":0,"7.0-7.1":0.08007,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09865,"10.0-10.2":0.00286,"10.3":0.06291,"11.0-11.2":0.06577,"11.3-11.4":0.01001,"12.0-12.1":0.02145,"12.2-12.5":0.49041,"13.0-13.1":0.01573,"13.2":0.00429,"13.3":0.01859,"13.4-13.7":0.11438,"14.0-14.4":0.37603,"14.5-14.8":1.09949,"15.0-15.1":0.42607,"15.2-15.3":1.1481,"15.4":10.24284},P:{"4":0.26317,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.2737,"9.2":0.02105,"10.1":0.01053,"11.1-11.2":0.1579,"12.0":0.03158,"13.0":0.12632,"14.0":0.09474,"15.0":0.13685,"16.0":1.62115},I:{"0":0,"3":0,"4":0.00484,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00484,"4.4":0,"4.4.3-4.4.4":0.04975},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00812,"11":0.03652,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.1129},Q:{"10.4":0},O:{"0":0.53478},H:{"0":0.16877},L:{"0":43.2023},S:{"2.5":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 5eab5b3ff7a74f..d3561a7f0c7131 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js @@ -1 +1 @@ -module.exports={C:{"34":0.01018,"52":0.01018,"63":0.07632,"69":0.0229,"78":0.00509,"81":0.00254,"84":0.00254,"88":0.00763,"89":0.00509,"90":0.00254,"91":0.01272,"92":0.00763,"94":0.00254,"95":0.00254,"96":0.00763,"97":0.01272,"98":0.26458,"99":0.8904,"100":0.00763,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 82 83 85 86 87 93 101 3.5 3.6"},D:{"11":0.01272,"38":0.00763,"42":0.00254,"43":0.00509,"47":0.00509,"49":0.03053,"50":0.00254,"51":0.01781,"54":0.00509,"55":0.00509,"63":0.01526,"65":0.01272,"66":0.00254,"68":0.00254,"69":0.00509,"70":0.00509,"71":0.00509,"73":0.00763,"74":0.00763,"75":0.00254,"76":0.00254,"77":0.00254,"78":0.01272,"79":0.03816,"80":0.01018,"81":0.01526,"83":0.01781,"84":0.01526,"85":0.01781,"86":0.03816,"87":0.04834,"88":0.03816,"89":0.05342,"90":0.02035,"91":0.03307,"92":0.07378,"93":0.02798,"94":0.0229,"95":0.02035,"96":0.0865,"97":0.10176,"98":0.23405,"99":2.75006,"100":13.85971,"101":0.25694,"102":0.01018,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 44 45 46 48 52 53 56 57 58 59 60 61 62 64 67 72 103 104"},F:{"28":0.00509,"70":0.00254,"79":0.00254,"82":0.00254,"83":0.05342,"84":0.23914,"85":0.54187,"86":0.00509,_:"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 71 72 73 74 75 76 77 78 80 81 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.00254,"14":0.00254,"16":0.00509,"18":0.01272,"84":0.00763,"85":0.00763,"86":0.01526,"88":0.00509,"89":0.00509,"90":0.00254,"91":0.00509,"92":0.01781,"93":0.00254,"94":0.00254,"95":0.00509,"96":0.00509,"97":0.03307,"98":0.01781,"99":0.24168,"100":1.66886,"101":0.03053,_:"13 15 17 79 80 81 83 87"},E:{"4":0,"13":0.01018,"14":0.07123,"15":0.0229,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00254,"12.1":0.01018,"13.1":0.06614,"14.1":0.1908,"15.1":0.0636,"15.2-15.3":0.04579,"15.4":0.3409},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00209,"6.0-6.1":0.00104,"7.0-7.1":0.01984,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04282,"10.0-10.2":0.00209,"10.3":0.05431,"11.0-11.2":0.01044,"11.3-11.4":0.01462,"12.0-12.1":0.01671,"12.2-12.5":0.52119,"13.0-13.1":0.01149,"13.2":0.00522,"13.3":0.03342,"13.4-13.7":0.13056,"14.0-14.4":0.62668,"14.5-14.8":1.37556,"15.0-15.1":0.52537,"15.2-15.3":3.31096,"15.4":3.73397},P:{"4":0.09236,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.14367,"8.2":0.01012,"9.2":0.04105,"10.1":0.04089,"11.1-11.2":0.18472,"12.0":0.03079,"13.0":0.1642,"14.0":0.24629,"15.0":0.13341,"16.0":2.69897},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.10483,"4.2-4.3":0.52415,"4.4":0,"4.4.3-4.4.4":6.39458},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00509,"11":0.06106,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":54.12094},S:{"2.5":0},R:{_:"0"},M:{"0":0.15658},Q:{"10.4":0},O:{"0":0.3057},H:{"0":0.23294}}; +module.exports={C:{"34":0.01096,"43":0.00822,"52":0.00822,"63":0.04112,"69":0.00274,"78":0.00822,"81":0.02193,"83":0.00548,"88":0.00274,"89":0.00548,"91":0.00822,"92":0.00822,"94":0.00274,"96":0.00548,"97":0.00822,"98":0.01919,"99":0.1535,"100":0.90727,"101":0.01096,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 82 84 85 86 87 90 93 95 102 103 3.5 3.6"},D:{"11":0.00822,"38":0.01096,"43":0.00274,"47":0.00274,"49":0.01919,"51":0.01645,"55":0.00548,"63":0.01096,"65":0.01645,"69":0.00822,"70":0.00548,"71":0.00274,"74":0.01096,"75":0.00548,"77":0.00274,"78":0.01096,"79":0.03563,"80":0.01096,"81":0.01919,"83":0.01371,"84":0.01096,"85":0.03563,"86":0.03563,"87":0.03837,"88":0.03015,"89":0.04934,"90":0.01645,"91":0.04386,"92":0.07127,"93":0.05756,"94":0.01919,"95":0.01371,"96":0.06853,"97":0.07675,"98":0.18091,"99":0.21654,"100":2.41208,"101":14.89459,"102":1.54044,"103":0.04112,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 52 53 54 56 57 58 59 60 61 62 64 66 67 68 72 73 76 104"},F:{"28":0.00548,"68":0.00274,"69":0.00548,"73":0.00274,"79":0.00548,"83":0.04112,"84":0.11786,"85":0.37826,"86":0.32344,"87":0.01096,_:"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 70 71 72 74 75 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00548,"15":0.00274,"16":0.00548,"18":0.01096,"84":0.00274,"89":0.00548,"92":0.01096,"95":0.00274,"96":0.00274,"97":0.01096,"98":0.00822,"99":0.03289,"100":0.08771,"101":1.7981,_:"13 14 17 79 80 81 83 85 86 87 88 90 91 93 94"},E:{"4":0,"12":0.00274,"13":0.00548,"14":0.0603,"15":0.02741,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01645,"13.1":0.09868,"14.1":0.20832,"15.1":0.0603,"15.2-15.3":0.03563,"15.4":0.55642,"15.5":0.0603},G:{"8":0.01358,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00679,"6.0-6.1":0.00113,"7.0-7.1":0.01811,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03962,"10.0-10.2":0.00226,"10.3":0.07018,"11.0-11.2":0.00906,"11.3-11.4":0.01245,"12.0-12.1":0.01471,"12.2-12.5":0.49691,"13.0-13.1":0.01585,"13.2":0.00566,"13.3":0.02717,"13.4-13.7":0.12791,"14.0-14.4":0.56595,"14.5-14.8":1.27113,"15.0-15.1":0.43239,"15.2-15.3":0.93043,"15.4":7.25551},P:{"4":0.06134,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.10223,"9.2":0.02045,"10.1":0.01053,"11.1-11.2":0.11245,"12.0":0.02045,"13.0":0.12267,"14.0":0.19423,"15.0":0.10223,"16.0":1.09383},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.08302,"4.2-4.3":0.41512,"4.4":0,"4.4.3-4.4.4":4.81544},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05482,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.16696},Q:{"10.4":0},O:{"0":0.22503},H:{"0":0.2474},L:{"0":53.33549},S:{"2.5":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 2b9353feddfa6a..46123e33e8198e 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:{"48":0.01204,"51":0.09027,"52":0.15045,"53":0.09629,"54":0.04814,"55":0.09027,"56":0.10231,"57":0.06018,"58":0.02407,"59":0.02407,"60":0.00602,"66":0.00602,"72":0.01204,"78":0.04814,"80":0.00602,"81":0.00602,"82":0.00602,"83":0.00602,"84":0.00602,"85":0.01805,"88":0.00602,"89":0.00602,"91":0.05416,"94":0.01204,"95":0.01805,"96":0.01805,"97":0.06018,"98":0.87863,"99":2.73217,"100":0.00602,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 86 87 90 92 93 101 3.5 3.6"},D:{"39":0.02407,"40":0.03611,"41":0.03009,"42":0.03009,"43":0.03009,"44":0.03009,"45":0.03611,"46":0.03611,"47":0.03611,"48":0.03611,"49":0.18054,"50":0.02407,"51":0.02407,"52":0.03009,"53":0.02407,"54":0.02407,"55":0.02407,"56":0.03009,"57":0.03009,"58":0.03611,"59":0.03611,"60":0.03611,"61":0.04213,"62":0.03611,"63":0.03611,"64":0.03009,"65":0.04213,"67":0.01805,"69":0.03009,"70":0.01204,"71":0.01204,"72":0.01204,"73":0.00602,"74":0.02407,"75":0.01204,"76":0.00602,"77":0.00602,"78":0.01805,"79":0.04213,"80":0.08425,"81":0.12036,"83":0.04814,"84":0.06018,"85":0.04814,"86":0.07823,"87":0.12638,"88":0.01805,"89":0.07823,"90":0.03009,"91":0.04213,"92":0.0662,"93":0.04814,"94":0.03611,"95":0.08425,"96":0.18054,"97":0.1685,"98":0.37312,"99":4.35703,"100":20.98477,"101":0.2347,"102":0.01204,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 66 68 103 104"},F:{"84":0.04814,"85":0.24674,_:"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 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.00602,"17":0.01204,"18":0.03009,"84":0.01204,"86":0.01204,"89":0.00602,"90":0.01204,"91":0.00602,"92":0.01204,"94":0.01805,"95":0.01805,"96":0.03611,"97":0.03009,"98":0.07222,"99":1.46237,"100":11.11525,"101":0.02407,_:"12 13 14 16 79 80 81 83 85 87 88 93"},E:{"4":0,"12":0.00602,"13":0.04814,"14":0.17452,"15":0.05416,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01204,"10.1":0.01805,"11.1":0.03611,"12.1":0.05416,"13.1":0.21063,"14.1":0.51755,"15.1":0.12036,"15.2-15.3":0.12638,"15.4":0.9689},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.03538,"8.1-8.4":0.02123,"9.0-9.2":0.23588,"9.3":0.1321,"10.0-10.2":0.05189,"10.3":0.10379,"11.0-11.2":0.07784,"11.3-11.4":0.04482,"12.0-12.1":0.04482,"12.2-12.5":0.47177,"13.0-13.1":0.03302,"13.2":0.01887,"13.3":0.08256,"13.4-13.7":0.29014,"14.0-14.4":0.84919,"14.5-14.8":3.14199,"15.0-15.1":0.79965,"15.2-15.3":8.1569,"15.4":8.98957},P:{"4":0.1495,"5.0-5.4":0.02024,"6.2-6.4":0.07023,"7.2-7.4":0.2456,"8.2":0.01012,"9.2":0.02136,"10.1":0.04089,"11.1-11.2":0.18153,"12.0":0.03204,"13.0":0.02205,"14.0":0.02205,"15.0":0.02205,"16.0":1.12447},I:{"0":0,"3":0,"4":0.00736,"2.1":0,"2.2":0.03927,"2.3":0.01964,"4.1":0.01718,"4.2-4.3":0.09082,"4.4":0,"4.4.3-4.4.4":0.1841},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0389,"9":0.05187,"10":0.01945,"11":1.81553,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":21.56908},S:{"2.5":0},R:{_:"0"},M:{"0":0.37033},Q:{"10.4":0.04778},O:{"0":0.21105},H:{"0":0.10556}}; +module.exports={C:{"48":0.01196,"51":0.05978,"52":0.11358,"53":0.06576,"54":0.02989,"55":0.0538,"56":0.05978,"57":0.04185,"58":0.01793,"59":0.01793,"66":0.00598,"72":0.01196,"78":0.04782,"79":0.00598,"83":0.00598,"84":0.00598,"85":0.02989,"88":0.00598,"89":0.00598,"91":0.05978,"93":0.00598,"94":0.00598,"95":0.01196,"96":0.01196,"97":0.02391,"98":0.02989,"99":0.68747,"100":2.87542,"101":0.01196,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 80 81 82 86 87 90 92 102 103 3.5 3.6"},D:{"39":0.01793,"40":0.01793,"41":0.01793,"42":0.01793,"43":0.02391,"44":0.01793,"45":0.02391,"46":0.02391,"47":0.02391,"48":0.02391,"49":0.15543,"50":0.01196,"51":0.01793,"52":0.01793,"53":0.01793,"54":0.01793,"55":0.01793,"56":0.02391,"57":0.01793,"58":0.02391,"59":0.02391,"60":0.02391,"61":0.02989,"62":0.04185,"63":0.02391,"64":0.02391,"65":0.02989,"67":0.01196,"69":0.02391,"70":0.01196,"71":0.01196,"72":0.01196,"73":0.00598,"74":0.02391,"75":0.01196,"76":0.01196,"77":0.00598,"78":0.01793,"79":0.04185,"80":0.05978,"81":0.10163,"83":0.06576,"84":0.08967,"85":0.05978,"86":0.07771,"87":0.13749,"88":0.01793,"89":0.06576,"90":0.01793,"91":0.03587,"92":0.0538,"93":0.01793,"94":0.02989,"95":0.08369,"96":0.11358,"97":0.11358,"98":0.16141,"99":0.2989,"100":4.98565,"101":19.93065,"102":1.17767,"103":0.02391,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 66 68 104"},F:{"85":0.13749,"86":0.16738,"87":0.01196,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00598,"17":0.01196,"18":0.02391,"84":0.01196,"86":0.01196,"89":0.00598,"90":0.01196,"91":0.00598,"92":0.01196,"94":0.00598,"95":0.00598,"96":0.02989,"97":0.01196,"98":0.02989,"99":0.06576,"100":0.51411,"101":12.04567,_:"13 14 15 16 79 80 81 83 85 87 88 93"},E:{"4":0,"12":0.00598,"13":0.06576,"14":0.17336,"15":0.04782,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00598,"10.1":0.01793,"11.1":0.02989,"12.1":0.04782,"13.1":0.20325,"14.1":0.46628,"15.1":0.08967,"15.2-15.3":0.09565,"15.4":1.66188,"15.5":0.15543},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0024,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03357,"8.1-8.4":0.01918,"9.0-9.2":0.19183,"9.3":0.1079,"10.0-10.2":0.04796,"10.3":0.07913,"11.0-11.2":0.06714,"11.3-11.4":0.03357,"12.0-12.1":0.04076,"12.2-12.5":0.42682,"13.0-13.1":0.03357,"13.2":0.01679,"13.3":0.07433,"13.4-13.7":0.26137,"14.0-14.4":0.78171,"14.5-14.8":2.52496,"15.0-15.1":0.5659,"15.2-15.3":1.54423,"15.4":17.11605},P:{_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 15.0","12.0":0.01117,"13.0":0.02233,"14.0":0.01117,"16.0":0.40194},I:{"0":0,"3":0,"4":0.00759,"2.1":0,"2.2":0.02528,"2.3":0.03034,"4.1":0.01264,"4.2-4.3":0.10619,"4.4":0,"4.4.3-4.4.4":0.1517},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02626,"9":0.03938,"10":0.01313,"11":1.59507,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":21.59343},S:{"2.5":0},R:{_:"0"},M:{"0":0.36993},Q:{"10.4":0.04021},O:{"0":0.26539},H:{"0":0.10659}}; 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 7a749bec08a81d..db4a4fc582fdfd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js @@ -1 +1 @@ -module.exports={C:{"34":0.02065,"47":0.00774,"51":0.00258,"52":0.14454,"53":0.00258,"55":0.00258,"56":0.00258,"57":0.01291,"61":0.00516,"66":0.00258,"68":0.00516,"72":0.00516,"73":0.00774,"78":0.02065,"82":0.00516,"84":0.00258,"87":0.00516,"88":0.01549,"89":0.00774,"90":0.00516,"91":0.02839,"93":0.00516,"94":0.00516,"95":0.01032,"96":0.00774,"97":0.03097,"98":0.49813,"99":1.45827,"100":0.07743,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 54 58 59 60 62 63 64 65 67 69 70 71 74 75 76 77 79 80 81 83 85 86 92 101 3.5 3.6"},D:{"11":0.00774,"24":0.01032,"38":0.00516,"43":0.00516,"47":0.00774,"49":0.01807,"50":0.00516,"54":0.01032,"55":0.00258,"56":0.01032,"57":0.00258,"58":0.00258,"60":0.00516,"62":0.00516,"63":0.00516,"64":0.00774,"65":0.00774,"66":0.01032,"67":0.00516,"68":0.01549,"69":0.13421,"70":0.00516,"71":0.00516,"72":0.00516,"73":0.01549,"74":0.00774,"75":0.00516,"76":0.01291,"77":0.00516,"78":0.00516,"79":0.05678,"80":0.01291,"81":0.01549,"83":0.02065,"84":0.01032,"85":0.01032,"86":0.03613,"87":0.04388,"88":0.01807,"89":0.02065,"90":0.02065,"91":0.07227,"92":0.0413,"93":0.03355,"94":0.02065,"95":0.0413,"96":0.06969,"97":0.08259,"98":0.18067,"99":2.31,"100":11.42609,"101":0.16002,"102":0.00774,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 51 52 53 59 61 103 104"},F:{"28":0.02839,"36":0.00516,"46":0.00258,"65":0.00258,"66":0.00516,"67":0.00258,"68":0.00516,"79":0.00516,"80":0.00258,"82":0.00516,"84":0.10582,"85":0.54717,"86":0.01291,_:"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 69 70 71 72 73 74 75 76 77 78 81 83 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.01032,"13":0.00774,"14":0.00258,"15":0.00258,"16":0.00516,"17":0.00774,"18":0.02839,"84":0.00774,"85":0.00516,"89":0.00774,"90":0.00258,"91":0.00258,"92":0.01807,"94":0.00258,"95":0.00516,"96":0.01291,"97":0.01807,"98":0.01807,"99":0.22197,"100":1.16145,"101":0.01549,_:"79 80 81 83 86 87 88 93"},E:{"4":0,"11":0.00774,"13":0.01291,"14":0.03355,"15":0.01807,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00516,"10.1":0.00516,"11.1":0.00258,"12.1":0.01032,"13.1":0.03355,"14.1":0.08001,"15.1":0.01807,"15.2-15.3":0.01549,"15.4":0.10582},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00023,"5.0-5.1":0.00877,"6.0-6.1":0.00046,"7.0-7.1":0.04269,"8.1-8.4":0.00046,"9.0-9.2":0.00162,"9.3":0.03254,"10.0-10.2":0.00554,"10.3":0.03277,"11.0-11.2":0.01177,"11.3-11.4":0.01154,"12.0-12.1":0.00508,"12.2-12.5":0.186,"13.0-13.1":0.00277,"13.2":0.00185,"13.3":0.01546,"13.4-13.7":0.04962,"14.0-14.4":0.12069,"14.5-14.8":0.29354,"15.0-15.1":0.144,"15.2-15.3":0.69,"15.4":0.64961},P:{"4":0.19274,"5.0-5.4":0.02024,"6.2-6.4":0.03212,"7.2-7.4":0.08566,"8.2":0.01012,"9.2":0.06183,"10.1":0.01031,"11.1-11.2":0.03212,"12.0":0.07214,"13.0":0.05354,"14.0":0.08566,"15.0":0.05354,"16.0":0.696},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00046,"4.2-4.3":0.00299,"4.4":0,"4.4.3-4.4.4":0.03363},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00272,"11":0.09535,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":43.78451},S:{"2.5":0},R:{_:"0"},M:{"0":0.13352},Q:{"10.4":0},O:{"0":0.28188},H:{"0":29.41183}}; +module.exports={C:{"34":0.01062,"43":0.00266,"47":0.00797,"52":0.24692,"61":0.00266,"72":0.00531,"73":0.00531,"78":0.01593,"79":0.00266,"80":0.00531,"82":0.01062,"84":0.00531,"87":0.00266,"88":0.00797,"89":0.00531,"91":0.03452,"92":0.00266,"93":0.00266,"94":0.00797,"95":0.00797,"96":0.00531,"97":0.01593,"98":0.01859,"99":0.55755,"100":1.5107,"101":0.09027,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 74 75 76 77 81 83 85 86 90 102 103 3.5 3.6"},D:{"11":0.01328,"38":0.00531,"43":0.00531,"47":0.00531,"49":0.01328,"50":0.00266,"54":0.00797,"55":0.00531,"56":0.00797,"57":0.00531,"58":0.00531,"62":0.00266,"63":0.00531,"64":0.00531,"65":0.00531,"66":0.01328,"67":0.01062,"68":0.00797,"69":0.11417,"70":0.00797,"71":0.00266,"72":0.00531,"73":0.01328,"74":0.00531,"75":0.00531,"76":0.01328,"77":0.00797,"78":0.01328,"79":0.04779,"80":0.02921,"81":0.01062,"83":0.02124,"84":0.01062,"85":0.01062,"86":0.02921,"87":0.05045,"88":0.01593,"89":0.02124,"90":0.02124,"91":0.03717,"92":0.03717,"93":0.02655,"94":0.02655,"95":0.03717,"96":0.06107,"97":0.04779,"98":0.09293,"99":0.15665,"100":2.55146,"101":10.78992,"102":1.09121,"103":0.01593,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 51 52 53 59 60 61 104"},F:{"28":0.02124,"36":0.00266,"46":0.00266,"65":0.00531,"66":0.00266,"69":0.00797,"79":0.00531,"84":0.00531,"85":0.23895,"86":0.36108,"87":0.03983,_:"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 67 68 70 71 72 73 74 75 76 77 78 80 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.01062,"13":0.00531,"14":0.00266,"15":0.00266,"16":0.00797,"17":0.00531,"18":0.03186,"84":0.00531,"85":0.01062,"89":0.00797,"90":0.00266,"91":0.00266,"92":0.03452,"96":0.00797,"97":0.00797,"98":0.01062,"99":0.02921,"100":0.10355,"101":1.28768,_:"79 80 81 83 86 87 88 93 94 95"},E:{"4":0,"11":0.01328,"13":0.00797,"14":0.0239,"15":0.01328,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00531,"11.1":0.00266,"12.1":0.00797,"13.1":0.02655,"14.1":0.07965,"15.1":0.01593,"15.2-15.3":0.01328,"15.4":0.1832,"15.5":0.02921},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00531,"6.0-6.1":0,"7.0-7.1":0.02367,"8.1-8.4":0.00044,"9.0-9.2":0.00111,"9.3":0.03097,"10.0-10.2":0.00332,"10.3":0.02522,"11.0-11.2":0.00575,"11.3-11.4":0.01062,"12.0-12.1":0.00376,"12.2-12.5":0.16104,"13.0-13.1":0.0031,"13.2":0.00332,"13.3":0.01371,"13.4-13.7":0.03495,"14.0-14.4":0.11193,"14.5-14.8":0.23714,"15.0-15.1":0.07941,"15.2-15.3":0.22962,"15.4":1.22616},P:{"4":0.20617,_:"5.0-5.4 8.2","6.2-6.4":0.07216,"7.2-7.4":0.07216,"9.2":0.02069,"10.1":0.01053,"11.1-11.2":0.03093,"12.0":0.03104,"13.0":0.03093,"14.0":0.06185,"15.0":0.04123,"16.0":0.30926},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.00317,"4.4":0,"4.4.3-4.4.4":0.0317},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00536,"11":0.27076,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.13954},Q:{"10.4":0},O:{"0":0.28642},H:{"0":28.61783},L:{"0":44.10409},S:{"2.5":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 519d2812884344..07cefd4e303d70 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js @@ -1 +1 @@ -module.exports={C:{"52":0.00871,"55":0.02178,"91":0.04792,"97":0.00436,"98":0.16988,"99":1.01495,"100":0.00871,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 101 3.5 3.6"},D:{"49":0.0392,"59":0.02178,"65":0.00436,"66":0.01307,"67":0.02178,"71":0.02178,"73":0.00436,"74":0.06098,"75":0.00436,"77":0.00436,"78":0.03485,"79":0.01742,"80":0.01742,"81":0.28314,"83":0.01307,"84":0.03485,"85":0.01307,"86":0.03485,"87":0.03049,"88":0.01742,"89":0.08712,"91":0.01307,"92":0.01742,"93":0.00436,"94":0.12632,"95":0.02178,"96":0.09583,"97":0.10454,"98":0.41818,"99":17.2759,"100":18.09918,"101":0.14375,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 61 62 63 64 68 69 70 72 76 90 102 103 104"},F:{"42":0.01307,"81":0.00436,"82":0.00436,"84":0.26136,"85":1.04108,"86":0.06098,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 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.00436,"84":0.00436,"89":0.00436,"91":0.00436,"92":0.00436,"96":0.00871,"97":0.00871,"98":0.00871,"99":0.06098,"100":0.35719,"101":0.00871,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90 93 94 95"},E:{"4":0,"13":0.01307,"14":0.04792,"15":0.01307,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.41382,"12.1":0.00871,"13.1":0.03485,"14.1":0.11326,"15.1":0.02614,"15.2-15.3":0.03485,"15.4":0.19602},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.00217,"8.1-8.4":0,"9.0-9.2":0.00054,"9.3":0.0087,"10.0-10.2":0.00054,"10.3":0.00924,"11.0-11.2":0.00435,"11.3-11.4":0.00435,"12.0-12.1":0.01305,"12.2-12.5":0.26423,"13.0-13.1":0.01305,"13.2":0.01414,"13.3":0.03099,"13.4-13.7":0.09786,"14.0-14.4":0.4007,"14.5-14.8":0.73235,"15.0-15.1":0.77476,"15.2-15.3":1.56475,"15.4":1.49842},P:{"4":0.22307,"5.0-5.4":0.01014,"6.2-6.4":0.0507,"7.2-7.4":0.27376,"8.2":0.01014,"9.2":0.08112,"10.1":0.03042,"11.1-11.2":0.10139,"12.0":0.04056,"13.0":0.22307,"14.0":0.15209,"15.0":0.13181,"16.0":1.21673},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00031,"4.2-4.3":0.00016,"4.4":0,"4.4.3-4.4.4":0.00517},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02614,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":48.53435},S:{"2.5":0},R:{_:"0"},M:{"0":0.03386},Q:{"10.4":0},O:{"0":0.49658},H:{"0":0.23507}}; +module.exports={C:{"52":0.02222,"55":0.01333,"91":0.04,"97":0.01333,"98":0.00444,"99":0.32886,"100":0.34219,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 101 102 103 3.5 3.6"},D:{"49":0.02222,"56":0.00444,"66":0.00444,"67":0.00889,"71":0.01333,"74":0.07999,"79":0.02666,"80":0.01778,"81":0.06666,"83":0.01333,"84":0.00889,"85":0.01778,"86":0.03111,"87":0.00889,"88":0.01778,"89":0.05777,"90":0.02666,"91":0.01333,"92":0.01778,"93":0.00889,"94":0.02666,"95":0.00889,"96":0.0711,"97":0.05777,"98":0.20887,"99":0.3733,"100":25.57522,"101":10.39007,"102":1.00434,"103":0.00889,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 68 69 70 72 73 75 76 77 78 104"},F:{"42":0.04444,"82":0.00444,"84":0.00889,"85":0.60883,"86":0.61327,"87":0.04444,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 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.00889,"92":0.00889,"99":0.00444,"100":0.04,"101":0.5155,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"14":0.03555,"15":0.01333,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.40885,"12.1":0.00889,"13.1":0.02222,"14.1":0.11554,"15.1":0.03111,"15.2-15.3":0.06222,"15.4":0.26664,"15.5":0.04444},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00176,"6.0-6.1":0,"7.0-7.1":0.00353,"8.1-8.4":0,"9.0-9.2":0.00176,"9.3":0.02293,"10.0-10.2":0.00706,"10.3":0.01058,"11.0-11.2":0.0047,"11.3-11.4":0.01882,"12.0-12.1":0.01294,"12.2-12.5":0.22638,"13.0-13.1":0.01352,"13.2":0.00764,"13.3":0.01999,"13.4-13.7":0.07056,"14.0-14.4":0.38102,"14.5-14.8":0.76911,"15.0-15.1":0.59741,"15.2-15.3":0.74029,"15.4":2.96823},P:{"4":0.2748,"5.0-5.4":0.01018,"6.2-6.4":0.04071,"7.2-7.4":0.26462,"8.2":0.03053,"9.2":0.04071,"10.1":0.02036,"11.1-11.2":0.0916,"12.0":0.06107,"13.0":0.13231,"14.0":0.12213,"15.0":0.11196,"16.0":0.63102},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00058,"4.2-4.3":0.00117,"4.4":0,"4.4.3-4.4.4":0.02047},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07999,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.03334},Q:{"10.4":0},O:{"0":0.58338},H:{"0":0.33138},L:{"0":46.91135},S:{"2.5":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 d1b604ede5eae3..ee1a97c483ae69 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:{"43":0.00383,"44":0.00766,"47":0.01148,"48":0.00766,"50":0.00383,"51":0.01531,"52":0.01531,"55":0.01531,"56":0.00766,"60":0.01914,"61":0.03828,"67":0.01148,"68":0.00383,"72":0.01148,"75":0.01148,"77":0.03062,"78":0.03445,"79":0.05359,"80":0.0689,"81":0.03445,"82":0.01914,"83":0.01148,"84":0.01914,"86":0.00383,"87":0.00383,"88":0.01531,"89":0.01148,"90":0.00766,"91":0.0268,"92":0.00766,"93":0.00383,"94":0.00766,"95":0.01914,"96":0.03445,"97":0.0268,"98":0.46702,"99":1.42019,"100":0.06125,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 46 49 53 54 57 58 59 62 63 64 65 66 69 70 71 73 74 76 85 101 3.5 3.6"},D:{"38":0.01531,"40":0.00766,"43":0.00766,"45":0.02297,"49":0.00766,"53":0.04211,"56":0.01914,"57":0.00383,"60":0.00383,"63":0.00766,"65":0.01148,"69":0.01914,"70":0.00766,"71":0.01914,"73":0.01148,"74":0.00766,"75":0.00383,"76":0.01914,"77":0.00383,"78":0.00766,"79":0.13015,"80":0.03062,"81":0.03445,"83":0.14929,"84":0.356,"85":0.22968,"86":0.50147,"87":0.26413,"88":0.01914,"89":0.0268,"90":0.08039,"91":0.06508,"92":0.0689,"93":0.15312,"94":0.03445,"95":0.04594,"96":0.14546,"97":0.14929,"98":0.32921,"99":4.16486,"100":18.97157,"101":0.32155,"102":0.05359,"103":0.00383,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 46 47 48 50 51 52 54 55 58 59 61 62 64 66 67 68 72 104"},F:{"28":0.01914,"36":0.00766,"40":0.00766,"46":0.00766,"68":0.00383,"70":0.01531,"71":0.00766,"72":0.03445,"78":0.00766,"83":0.01531,"84":0.1646,"85":0.66224,"86":0.01531,_:"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 69 73 74 75 76 77 79 80 81 82 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.0689,"84":0.03445,"85":0.00383,"86":0.0268,"89":0.00766,"92":0.04594,"95":0.00383,"96":0.00766,"97":0.01148,"98":0.01531,"99":0.26413,"100":1.55034,"101":0.01914,_:"12 13 14 15 16 17 79 80 81 83 87 88 90 91 93 94"},E:{"4":0,"10":0.00383,"12":0.00766,"13":0.05742,"14":0.23734,"15":0.0957,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01148,"12.1":0.04211,"13.1":0.1646,"14.1":0.68904,"15.1":0.20671,"15.2-15.3":0.2182,"15.4":0.97614},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.03074,"8.1-8.4":0.03074,"9.0-9.2":0.00512,"9.3":0.0999,"10.0-10.2":0.02305,"10.3":0.15113,"11.0-11.2":0.04867,"11.3-11.4":0.10502,"12.0-12.1":0.0666,"12.2-12.5":1.55741,"13.0-13.1":0.08965,"13.2":0.02049,"13.3":0.21005,"13.4-13.7":0.59428,"14.0-14.4":1.89553,"14.5-14.8":4.64662,"15.0-15.1":1.87504,"15.2-15.3":7.23633,"15.4":6.92126},P:{"4":0.18994,"5.0-5.4":0.01055,"6.2-6.4":0.02011,"7.2-7.4":0.01055,"8.2":0.04117,"9.2":0.01055,"10.1":0.03016,"11.1-11.2":0.04021,"12.0":0.05276,"13.0":0.03166,"14.0":0.06331,"15.0":0.04221,"16.0":1.54061},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00281,"4.4":0,"4.4.3-4.4.4":0.02805},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01917,"9":0.02397,"10":0.00479,"11":0.48416,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":33.40302},S:{"2.5":0},R:{_:"0"},M:{"0":0.16664},Q:{"10.4":0.03086},O:{"0":0.8147},H:{"0":0.94076}}; +module.exports={C:{"45":0.01168,"47":0.00779,"48":0.00389,"52":0.01168,"55":0.00779,"60":0.00389,"61":0.02336,"67":0.00779,"68":0.03893,"72":0.00779,"75":0.01168,"77":0.00389,"78":0.04282,"79":0.09733,"80":0.03504,"81":0.01947,"82":0.00779,"83":0.01557,"84":0.00779,"86":0.00389,"88":0.00779,"89":0.02336,"90":0.00779,"91":0.01947,"92":0.00779,"94":0.00389,"95":0.01557,"96":0.01947,"97":0.00389,"98":0.01168,"99":0.31533,"100":1.52995,"101":0.08565,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 50 51 53 54 56 57 58 59 62 63 64 65 66 69 70 71 73 74 76 85 87 93 102 103 3.5 3.6"},D:{"38":0.00779,"48":0.02336,"49":0.02725,"53":0.03114,"56":0.01557,"59":0.00389,"63":0.01168,"64":0.01947,"65":0.01168,"68":0.00389,"69":0.04282,"70":0.00779,"71":0.00389,"72":0.01168,"73":0.00779,"74":0.00779,"76":0.02725,"77":0.02336,"78":0.07007,"79":0.10511,"80":0.03504,"81":0.04282,"83":0.19465,"84":0.71242,"85":0.40877,"86":0.45937,"87":0.48273,"88":0.01168,"89":0.01947,"90":0.04672,"91":0.04672,"92":0.0545,"93":0.02336,"94":0.03114,"95":0.03114,"96":0.09343,"97":0.12458,"98":0.1129,"99":0.25694,"100":4.68328,"101":17.46011,"102":1.68956,"103":0.04672,"104":0.01168,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 50 51 52 54 55 57 58 60 61 62 66 67 75"},F:{"28":0.01168,"36":0.00389,"40":0.00779,"46":0.01168,"52":0.00389,"68":0.02725,"69":0.07397,"71":0.01947,"72":0.01168,"85":0.3348,"86":0.43212,"87":0.04282,_:"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 53 54 55 56 57 58 60 62 63 64 65 66 67 70 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:{"18":0.09343,"83":0.01947,"84":0.04672,"85":0.03114,"86":0.01557,"89":0.00779,"92":0.01947,"96":0.00389,"97":0.01557,"98":0.00779,"99":0.01168,"100":0.07007,"101":1.74796,_:"12 13 14 15 16 17 79 80 81 87 88 90 91 93 94 95"},E:{"4":0,"10":0.00389,"12":0.00779,"13":0.04282,"14":0.22969,"15":0.05061,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01168,"12.1":0.03504,"13.1":0.18297,"14.1":0.53334,"15.1":0.17908,"15.2-15.3":0.14404,"15.4":1.62338,"15.5":0.16351},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.02111,"8.1-8.4":0.01056,"9.0-9.2":0,"9.3":0.08444,"10.0-10.2":0.01583,"10.3":0.10027,"11.0-11.2":0.0343,"11.3-11.4":0.08972,"12.0-12.1":0.05278,"12.2-12.5":1.48299,"13.0-13.1":0.0818,"13.2":0.03958,"13.3":0.17944,"13.4-13.7":0.63858,"14.0-14.4":1.80228,"14.5-14.8":4.14022,"15.0-15.1":1.5041,"15.2-15.3":2.68098,"15.4":13.41284},P:{"4":0.15879,"5.0-5.4":0.02117,"6.2-6.4":0.03029,"7.2-7.4":0.09087,"8.2":0.02288,"9.2":0.04039,"10.1":0.02019,"11.1-11.2":0.03029,"12.0":0.06352,"13.0":0.03176,"14.0":0.03176,"15.0":0.03176,"16.0":0.56107},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.00229,"4.4":0,"4.4.3-4.4.4":0.02137},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03935,"9":0.01749,"11":0.51154,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":32.28211},S:{"2.5":0},R:{_:"0"},M:{"0":0.16486},Q:{"10.4":0.01221},O:{"0":0.66555},H:{"0":0.83821}}; 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 66876022c368fb..abae330a0726d5 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:{"30":0.19018,"54":0.02882,"56":0.02882,"59":0.02882,"68":0.01921,"75":0.00961,"84":0.00961,"85":0.01921,"94":0.00961,"95":0.01921,"96":0.02882,"97":0.01921,"98":0.44567,"99":1.16797,"100":0.01921,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 78 79 80 81 82 83 86 87 88 89 90 91 92 93 101 3.5 3.6"},D:{"53":0.04803,"63":0.00961,"66":0.00961,"71":0.00961,"72":0.08452,"75":0.04803,"79":0.02882,"85":0.02882,"86":0.00961,"92":0.01921,"93":0.00961,"95":0.04803,"96":0.00961,"97":0.12294,"98":0.03842,"99":1.03542,"100":7.37472,"101":0.07684,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 64 65 67 68 69 70 73 74 76 77 78 80 81 83 84 87 88 89 90 91 94 102 103 104"},F:{"84":0.06724,"85":0.47449,_:"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 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.00961,"13":0.04803,"15":0.01921,"17":0.03842,"18":0.01921,"80":0.03842,"81":0.00961,"84":0.00961,"85":0.06724,"89":0.12294,"90":0.04803,"92":0.10373,"95":0.00961,"96":0.06724,"97":0.05763,"98":0.59743,"99":0.65506,"100":2.89495,_:"14 16 79 83 86 87 88 91 93 94 101"},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 12.1 13.1 14.1 15.2-15.3 15.4","11.1":0.00961,"15.1":0.00961},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.05088,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.03817,"12.0-12.1":0,"12.2-12.5":0.05081,"13.0-13.1":0.00639,"13.2":0.0127,"13.3":0.0127,"13.4-13.7":0,"14.0-14.4":0.25431,"14.5-14.8":0.05094,"15.0-15.1":0.03811,"15.2-15.3":0.12084,"15.4":0.05088},P:{"4":0.04017,"5.0-5.4":0.02024,"6.2-6.4":0.03212,"7.2-7.4":1.64694,"8.2":0.01012,"9.2":0.06183,"10.1":0.03013,"11.1-11.2":0.31131,"12.0":0.07214,"13.0":0.64271,"14.0":0.09038,"15.0":0.14059,"16.0":7.70247},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.14542},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02882,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":70.56945},S:{"2.5":0},R:{_:"0"},M:{"0":0.08887},Q:{"10.4":0.0404},O:{"0":0.97756},H:{"0":0.14532}}; +module.exports={C:{"59":0.02588,"67":0.04026,"82":0.18694,"84":0.01438,"86":0.01438,"97":0.01438,"99":0.40264,"100":2.34969,"101":0.02588,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 85 87 88 89 90 91 92 93 94 95 96 98 102 103 3.5 3.6"},D:{"55":0.02588,"74":0.04026,"76":0.02588,"84":0.01438,"88":0.04026,"89":0.18694,"91":0.01438,"92":0.04026,"94":0.01438,"95":0.06615,"96":0.14668,"97":0.13517,"98":0.08053,"99":0.05464,"100":3.39656,"101":8.95586,"102":0.95196,"103":0.01438,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 77 78 79 80 81 83 85 86 87 90 93 104"},F:{"83":0.09491,"86":0.04026,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 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.02588,"13":0.12079,"14":0.01438,"15":0.01438,"16":0.02588,"18":0.06615,"80":0.30773,"84":0.02588,"85":0.10641,"86":0.01438,"87":0.01438,"88":0.02588,"89":0.05464,"90":0.01438,"94":0.02588,"95":0.02588,"96":0.01438,"98":0.28185,"99":0.12079,"100":0.64422,"101":4.21622,_:"17 79 81 83 91 92 93 97"},E:{"4":0,"13":0.04026,"14":0.02588,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4","14.1":0.01438,"15.5":0.13517},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.03106,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.04138,"12.0-12.1":0,"12.2-12.5":0.08277,"13.0-13.1":0,"13.2":0.02074,"13.3":0.0517,"13.4-13.7":0.01032,"14.0-14.4":0.08277,"14.5-14.8":0.11383,"15.0-15.1":0.09319,"15.2-15.3":0.20692,"15.4":0.2483},P:{"4":0.1914,_:"5.0-5.4 8.2","6.2-6.4":0.07216,"7.2-7.4":2.2363,"9.2":1.26925,"10.1":0.01053,"11.1-11.2":0.07051,"12.0":0.01007,"13.0":0.43316,"14.0":0.12088,"15.0":0.16117,"16.0":0.9469},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.02849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06615,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.01425},Q:{"10.4":0},O:{"0":1.15393},H:{"0":0.1551},L:{"0":67.81612},S:{"2.5":0}}; 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 195ab945cf9516..77a07d00f9b688 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:{"26":0.00266,"47":0.00797,"49":0.04253,"50":0.00266,"51":0.01063,"54":0.05316,"56":0.01329,"78":0.00266,"85":0.00266,"89":0.00266,"91":0.01063,"95":0.00532,"96":0.01861,"97":0.01063,"98":0.38807,"99":1.07117,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 52 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 90 92 93 94 100 101 3.5 3.6"},D:{"19":0.02392,"42":0.06645,"43":0.03455,"55":0.02126,"64":0.01595,"66":0.00532,"67":0.00797,"70":0.00266,"71":0.02924,"72":0.00266,"73":0.00266,"75":0.01063,"79":0.02126,"80":0.01329,"81":0.54223,"83":0.00266,"87":0.02392,"89":0.00266,"90":0.0319,"91":0.02924,"92":0.01329,"93":0.00532,"94":0.05848,"95":0.02126,"96":0.02924,"97":0.22859,"98":0.14619,"99":1.38482,"100":6.74069,"101":0.11961,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 65 68 69 74 76 77 78 84 85 86 88 102 103 104"},F:{"28":0.00266,"34":0.01595,"46":0.01329,"49":0.07442,"77":0.00266,"79":0.00266,"84":0.0505,"85":0.27643,"86":0.00532,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 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.01063,"13":0.00266,"14":0.01329,"18":0.03455,"84":0.01063,"91":0.01595,"92":0.01329,"95":0.00532,"96":0.05848,"97":0.00532,"98":0.01861,"99":0.15948,"100":1.15357,"101":0.00532,_:"15 16 17 79 80 81 83 85 86 87 88 89 90 93 94"},E:{"4":0,"5":0.00532,"14":0.04253,_:"0 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1","5.1":0.00266,"11.1":0.00532,"13.1":0.01329,"14.1":0.1834,"15.1":0.00532,"15.2-15.3":0.02658,"15.4":0.09037},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.00513,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00746,"10.0-10.2":0.00979,"10.3":0.03682,"11.0-11.2":0.06152,"11.3-11.4":0.09601,"12.0-12.1":0.0219,"12.2-12.5":0.54809,"13.0-13.1":0.02936,"13.2":0.00233,"13.3":0.01724,"13.4-13.7":0.25587,"14.0-14.4":0.95636,"14.5-14.8":0.51173,"15.0-15.1":0.83332,"15.2-15.3":0.61706,"15.4":0.65155},P:{"4":0.20263,"5.0-5.4":0.08105,"6.2-6.4":0.03039,"7.2-7.4":0.26342,"8.2":0.13171,"9.2":0.09118,"10.1":0.66868,"11.1-11.2":0.5471,"12.0":0.02072,"13.0":0.01013,"14.0":0.34447,"15.0":0.03039,"16.0":2.28973},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01264,"4.2-4.3":0.0158,"4.4":0,"4.4.3-4.4.4":0.09636},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.45452,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":74.27053},S:{"2.5":0.11746},R:{_:"0"},M:{"0":0.03671},Q:{"10.4":0.04405},O:{"0":0.26428},H:{"0":1.28575}}; +module.exports={C:{"43":0.00192,"47":0.00384,"52":0.01151,"68":0.01151,"72":0.00192,"78":0.01534,"84":0.00384,"88":0.00767,"91":0.00767,"93":0.00767,"94":0.00192,"96":0.00192,"97":0.00192,"98":0.01534,"99":0.24167,"100":1.02229,"101":0.00192,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 95 102 103 3.5 3.6"},D:{"31":0.05946,"40":0.00192,"43":0.00767,"48":0.01343,"49":0.01343,"55":0.11124,"57":0.01534,"58":0.02493,"59":0.00192,"60":0.00192,"62":0.00192,"65":0.00959,"66":0.01343,"67":0.00767,"69":0.00192,"71":0.00959,"72":0.00384,"73":0.00384,"76":0.00767,"77":0.0211,"81":0.01918,"84":0.00767,"86":0.00192,"87":0.03452,"88":0.00767,"89":0.00767,"90":0.00384,"91":0.03069,"92":0.11124,"93":0.01151,"94":0.00192,"95":0.00959,"96":0.02302,"97":0.18605,"98":0.34524,"99":0.16303,"100":1.22368,"101":7.02755,"102":0.35867,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 44 45 46 47 50 51 52 53 54 56 61 63 64 68 70 74 75 78 79 80 83 85 103 104"},F:{"28":0.01534,"43":0.00959,"46":0.04028,"49":0.00192,"65":0.00192,"74":0.02877,"79":0.01151,"80":0.00192,"83":0.00767,"84":0.0211,"85":0.06329,"86":0.12467,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 75 76 77 78 81 82 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.01151,"13":0.00959,"14":0.00384,"15":0.00767,"16":0.01343,"17":0.00192,"18":0.08439,"80":0.00384,"84":0.04028,"92":0.01534,"95":0.00767,"96":0.04028,"97":0.00959,"98":0.01918,"99":0.05562,"100":0.12467,"101":0.98969,_:"79 81 83 85 86 87 88 89 90 91 93 94"},E:{"4":0,"13":0.00767,"14":0.00959,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.5","12.1":0.00384,"13.1":0.01534,"14.1":0.10741,"15.1":0.05562,"15.2-15.3":0.00767,"15.4":0.06329},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.01229,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00184,"10.0-10.2":0.06083,"10.3":0.04424,"11.0-11.2":0.08172,"11.3-11.4":0.02519,"12.0-12.1":0.02949,"12.2-12.5":0.79753,"13.0-13.1":0.01045,"13.2":0,"13.3":0.03809,"13.4-13.7":0.1278,"14.0-14.4":1.3837,"14.5-14.8":0.66789,"15.0-15.1":0.6089,"15.2-15.3":0.53517,"15.4":1.71795},P:{"4":0.152,"5.0-5.4":0.05067,"6.2-6.4":0.0304,"7.2-7.4":0.1824,"8.2":0.22305,"9.2":0.19253,"10.1":0.29386,"11.1-11.2":0.59786,"12.0":0.0304,"13.0":0.0304,"14.0":0.05067,"15.0":0.08107,"16.0":1.63145},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00319,"4.2-4.3":0.01099,"4.4":0,"4.4.3-4.4.4":0.06665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.35099,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":73.28856},S:{"2.5":0.04042},R:{_:"0"},M:{"0":0.08891},Q:{"10.4":0.97804},O:{"0":0.3314},H:{"0":1.51519}}; 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 9f18077d27f4d4..202cc8ef5095e5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js @@ -1 +1 @@ -module.exports={C:{"52":0.00855,"94":0.00427,"98":0.28208,"99":0.78642,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 100 101 3.5 3.6"},D:{"23":0.00855,"29":0.01282,"49":0.02564,"64":0.00427,"66":0.00855,"73":0.02992,"75":0.01282,"76":0.05984,"77":0.02564,"78":0.00855,"79":0.05129,"83":0.04274,"85":0.11967,"87":0.05556,"88":0.00855,"89":0.01282,"90":0.00855,"91":0.03847,"92":0.02564,"93":0.05984,"94":0.01282,"96":0.07266,"97":0.13677,"98":0.51715,"99":4.85526,"100":20.13481,"101":0.26499,"102":0.00427,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 67 68 69 70 71 72 74 80 81 84 86 95 103 104"},F:{"84":0.04701,"85":0.23507,_:"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 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.02137,"18":0.10685,"85":0.00855,"88":0.00427,"90":0.00855,"92":0.00855,"96":0.01282,"97":0.05129,"98":0.0171,"99":1.34631,"100":5.73998,"101":0.05129,_:"12 13 14 15 17 79 80 81 83 84 86 87 89 91 93 94 95"},E:{"4":0,"9":0.00855,"12":0.04701,"14":0.14104,"15":0.02992,_:"0 5 6 7 8 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.51288,"13.1":0.13677,"14.1":0.3291,"15.1":0.1154,"15.2-15.3":0.05556,"15.4":0.78642},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.03097,"10.0-10.2":0.00442,"10.3":0.42034,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01622,"12.2-12.5":0.84216,"13.0-13.1":0.00295,"13.2":0.00295,"13.3":0.0118,"13.4-13.7":0.08849,"14.0-14.4":0.39674,"14.5-14.8":1.26103,"15.0-15.1":0.77137,"15.2-15.3":5.58097,"15.4":5.31402},P:{"4":0.42869,"5.0-5.4":0.01116,"6.2-6.4":0.04084,"7.2-7.4":0.31877,"8.2":0.01011,"9.2":0.02062,"10.1":0.03034,"11.1-11.2":0.03298,"12.0":0.02198,"13.0":0.06595,"14.0":0.02198,"15.0":0.01099,"16.0":4.84755},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00515,"4.4":0,"4.4.3-4.4.4":0.01202},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05984,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.08589},H:{"0":1.87567},L:{"0":37.33271},S:{"2.5":0},R:{_:"0"},M:{"0":0.4409},Q:{"10.4":0}}; +module.exports={C:{"52":0.01675,"69":0.02094,"78":0.02512,"90":0.00837,"97":0.01256,"99":0.20516,"100":0.79972,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 96 98 101 102 103 3.5 3.6"},D:{"29":0.01256,"57":0.00837,"63":0.01675,"66":0.00419,"75":0.14236,"76":0.07955,"78":0.00837,"79":0.06699,"83":0.02512,"85":0.00419,"86":0.01256,"89":0.01256,"91":0.07118,"92":0.04187,"93":0.05862,"94":0.03768,"96":0.07955,"97":0.04187,"98":0.05024,"99":0.56943,"100":5.67757,"101":18.02922,"102":1.47801,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 64 65 67 68 69 70 71 72 73 74 77 80 81 84 87 88 90 95 103 104"},F:{"85":0.0963,"86":0.15911,"87":0.00837,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00837,"84":0.02512,"91":0.02094,"92":0.00419,"97":0.06281,"98":0.04606,"99":0.22191,"100":0.92533,"101":5.45985,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 93 94 95 96"},E:{"4":0,"12":0.00837,"13":0.00837,"14":0.08793,"15":0.03768,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00837,"12.1":0.36008,"13.1":0.15492,"14.1":0.41033,"15.1":0.05862,"15.2-15.3":0.46057,"15.4":1.45289,"15.5":0.12142},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00955,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05185,"10.0-10.2":0,"10.3":0.43388,"11.0-11.2":0.00273,"11.3-11.4":0.00273,"12.0-12.1":0.05321,"12.2-12.5":0.7477,"13.0-13.1":0.00546,"13.2":0,"13.3":0.01501,"13.4-13.7":0.07231,"14.0-14.4":0.50483,"14.5-14.8":0.99466,"15.0-15.1":0.26879,"15.2-15.3":0.90597,"15.4":9.56862},P:{"4":0.24359,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.05296,"8.2":0.01022,"9.2":0.02051,"10.1":0.03041,"11.1-11.2":0.09532,"12.0":0.01135,"13.0":0.03177,"14.0":0.04236,"15.0":0.02118,"16.0":1.81106},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00338,"4.4":0,"4.4.3-4.4.4":0.01987},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0963,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.56386},Q:{"10.4":0},O:{"0":0.05813},H:{"0":1.88766},L:{"0":40.45735},S:{"2.5":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 2ad02a7d46c35d..2371025cb1042a 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:{"95":0.11536,"96":0.10144,"99":0.01392,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 97 98 100 101 3.5 3.6"},D:{"56":0.01392,"88":0.02984,"92":0.04376,"96":0.05768,"99":0.01392,"100":0.39183,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 89 90 91 93 94 95 97 98 101 102 103 104"},F:{"71":0.01392,"74":0.0716,"85":0.02984,_:"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 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:{"99":0.05768,"100":0.02984,_:"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 101"},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.1":0.78367,"15.2-15.3":1.20533,"15.4":12.92054},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.03198,"13.0-13.1":0,"13.2":0,"13.3":0.01599,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":4.58866,"15.2-15.3":37.077,"15.4":38.23616},P:{"4":0.04017,"5.0-5.4":0.02024,"6.2-6.4":0.03212,"7.2-7.4":1.64694,"8.2":0.01012,"9.2":0.06183,"10.1":0.03013,"11.1-11.2":0.31131,"12.0":0.07214,"13.0":0.64271,"14.0":0.09038,"15.0":0.14059,"16.0":7.70247},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.03204,"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.01484,_:"11"},L:{"0":0.1421},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"52":0.01466,"95":0.09774,"96":0.02769,"99":0.01466,"100":0.01466,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 97 98 101 102 103 3.5 3.6"},D:{"56":0.01466,"98":0.07005,"100":0.08471,"101":0.18245,"102":0.02769,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 103 104"},F:{"71":0.01466,"74":0.15476,"85":0.01466,_:"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 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:{"101":0.07005,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},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 12.1 13.1 14.1","10.1":0.05539,"15.1":0.19548,"15.2-15.3":0.50499,"15.4":11.77604,"15.5":1.82285},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.02488,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.02488,"13.0-13.1":0,"13.2":0,"13.3":0.04146,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":1.2936,"15.2-15.3":5.64706,"15.4":75.89124},P:{"4":0.1914,_:"5.0-5.4 8.2","6.2-6.4":0.07216,"7.2-7.4":2.2363,"9.2":1.26925,"10.1":0.01053,"11.1-11.2":0.07051,"12.0":0.01007,"13.0":0.43316,"14.0":0.12088,"15.0":0.01256,"16.0":0.9469},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.01469,_:"11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":0.72828},S:{"2.5":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 a1b077f5ff56d0..7244184f6d4f1a 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:{"51":0.06699,"52":0.07214,"53":0.06699,"54":0.03607,"55":0.06699,"56":0.05153,"57":0.04638,"58":0.02061,"59":0.01546,"78":0.02061,"80":0.00515,"91":0.02577,"97":0.01031,"98":0.15459,"99":0.5153,"100":0.00515,"101":0.01031,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 3.5 3.6"},D:{"39":0.02061,"40":0.02061,"41":0.02061,"42":0.06184,"43":0.02061,"44":0.02061,"45":0.02577,"46":0.02577,"47":0.02577,"48":0.02061,"49":0.04638,"50":0.01546,"51":0.02577,"52":0.01546,"53":0.01546,"54":0.01546,"55":0.02061,"56":0.02577,"57":0.02061,"58":0.02577,"59":0.02577,"60":0.02577,"61":0.03092,"62":0.02577,"63":0.02577,"64":0.02577,"65":0.02577,"67":0.00515,"68":0.01031,"70":0.00515,"75":0.00515,"76":0.00515,"77":0.22673,"78":0.01031,"79":0.05153,"80":0.04638,"81":0.04122,"83":0.04122,"84":0.0773,"85":0.06699,"86":0.09275,"87":0.0773,"88":0.01031,"89":0.03092,"90":0.08245,"91":0.02061,"92":0.02061,"93":0.01031,"94":0.0876,"95":0.02061,"96":0.23704,"97":0.09275,"98":0.18551,"99":4.88504,"100":28.0014,"101":0.37617,"102":0.00515,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 66 69 71 72 73 74 103 104"},F:{"84":0.03607,"85":0.21127,_:"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 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.02061,"84":0.00515,"85":0.00515,"86":0.01031,"87":0.00515,"89":0.00515,"90":0.00515,"91":0.01031,"92":0.02061,"94":0.01031,"95":0.01546,"96":0.03092,"97":0.03607,"98":0.04122,"99":0.88632,"100":6.47732,"101":0.09791,_:"12 13 14 15 16 17 79 80 81 83 88 93"},E:{"4":0,"8":0.00515,"13":0.01031,"14":0.05153,"15":0.03092,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01031,"13.1":0.04638,"14.1":0.13913,"15.1":0.05153,"15.2-15.3":0.06699,"15.4":0.48438},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.00113,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.20083,"9.3":0.01021,"10.0-10.2":0.03064,"10.3":0.02837,"11.0-11.2":0.01475,"11.3-11.4":0.0034,"12.0-12.1":0.00794,"12.2-12.5":0.08056,"13.0-13.1":0.17701,"13.2":0.00454,"13.3":0.01815,"13.4-13.7":0.06127,"14.0-14.4":0.34947,"14.5-14.8":1.0609,"15.0-15.1":0.65923,"15.2-15.3":3.97355,"15.4":4.66002},P:{"4":0.04017,"5.0-5.4":0.02024,"6.2-6.4":0.03212,"7.2-7.4":1.64694,"8.2":0.01012,"9.2":0.01017,"10.1":0.03013,"11.1-11.2":0.04066,"12.0":0.06099,"13.0":0.15248,"14.0":0.2948,"15.0":0.18298,"16.0":12.03614},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.05816},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03161,"9":0.04215,"10":0.01581,"11":0.84828,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":18.6424},S:{"2.5":0},R:{_:"0"},M:{"0":0.11633},Q:{"10.4":0.01454},O:{"0":0.10179},H:{"0":0.13766}}; +module.exports={C:{"51":0.0412,"52":0.0412,"53":0.0412,"54":0.0206,"55":0.03605,"56":0.02575,"57":0.0309,"58":0.0103,"59":0.0103,"78":0.0206,"79":0.00515,"80":0.0103,"81":0.0103,"82":0.0103,"83":0.0103,"91":0.0206,"97":0.00515,"98":0.00515,"99":0.103,"100":0.5768,"101":0.00515,"102":0.0103,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 84 85 86 87 88 89 90 92 93 94 95 96 103 3.5 3.6"},D:{"39":0.0103,"40":0.0103,"41":0.0103,"42":0.0515,"43":0.0103,"44":0.0103,"45":0.01545,"46":0.01545,"47":0.01545,"48":0.01545,"49":0.04635,"50":0.0103,"51":0.01545,"52":0.0103,"53":0.0103,"54":0.0103,"55":0.01545,"56":0.0206,"57":0.01545,"58":0.01545,"59":0.01545,"60":0.01545,"61":0.01545,"62":0.01545,"63":0.01545,"64":0.01545,"65":0.01545,"67":0.00515,"68":0.0103,"70":0.01545,"72":0.00515,"75":0.00515,"76":0.0103,"77":0.16995,"78":0.0103,"79":0.0515,"80":0.0412,"81":0.03605,"83":0.0412,"84":0.0824,"85":0.09785,"86":0.1236,"87":0.08755,"88":0.0103,"89":0.0309,"90":0.103,"91":0.02575,"92":0.0206,"93":0.0103,"94":0.0927,"95":0.0206,"96":0.1236,"97":0.0721,"98":0.11845,"99":0.2266,"100":6.0564,"101":25.5131,"102":1.7613,"103":0.0103,"104":0.00515,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 66 69 71 73 74"},F:{"85":0.08755,"86":0.12875,"87":0.0103,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0206,"84":0.00515,"85":0.00515,"86":0.01545,"87":0.00515,"89":0.0103,"90":0.00515,"91":0.0103,"92":0.01545,"94":0.0103,"95":0.01545,"96":0.02575,"97":0.02575,"98":0.0309,"99":0.0412,"100":0.2678,"101":7.5808,_:"12 13 14 15 16 17 79 80 81 83 88 93"},E:{"4":0,"8":0.0103,"13":0.00515,"14":0.0515,"15":0.0206,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.0103,"13.1":0.04635,"14.1":0.11845,"15.1":0.0412,"15.2-15.3":0.0515,"15.4":0.7519,"15.5":0.0927},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.17803,"9.3":0.00919,"10.0-10.2":0.02067,"10.3":0.01953,"11.0-11.2":0.01149,"11.3-11.4":0.00115,"12.0-12.1":0.00689,"12.2-12.5":0.06317,"13.0-13.1":0.13094,"13.2":0.00345,"13.3":0.01723,"13.4-13.7":0.05973,"14.0-14.4":0.33194,"14.5-14.8":0.87521,"15.0-15.1":0.46172,"15.2-15.3":0.89244,"15.4":8.39719},P:{_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.01017,"11.1-11.2":0.05083,"12.0":0.04066,"13.0":0.11183,"14.0":0.23382,"15.0":0.14232,"16.0":4.4629},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.0582},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02112,"9":0.03169,"10":0.01584,"11":0.76049,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":18.26375},S:{"2.5":0},R:{_:"0"},M:{"0":0.11155},Q:{"10.4":0.0194},O:{"0":0.11155},H:{"0":0.12857}}; 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 81a01a17dfb313..3b5ef8671e5f46 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js @@ -1 +1 @@ -module.exports={C:{"34":0.0137,"52":0.12785,"78":0.0137,"84":0.05251,"85":0.00228,"88":0.01142,"91":0.06164,"95":0.00913,"96":0.00685,"97":0.00685,"98":0.17123,"99":0.46802,"100":0.00913,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 86 87 89 90 92 93 94 101 3.5 3.6"},D:{"34":0.00228,"36":0.00457,"38":0.01826,"43":0.00457,"47":0.01826,"49":0.01826,"56":0.01142,"58":0.00228,"63":0.00685,"64":0.00913,"65":0.00457,"67":0.07077,"68":0.00913,"69":0.00457,"70":0.00685,"71":0.00913,"73":0.00685,"74":0.00457,"75":0.00685,"76":0.00913,"78":0.02283,"79":0.03196,"80":0.01142,"81":0.0137,"83":0.02283,"84":0.00685,"85":0.01142,"86":0.01826,"87":0.23515,"88":0.00913,"89":0.02283,"90":0.02968,"91":0.0274,"92":0.06164,"93":0.01598,"94":0.0137,"95":0.02283,"96":0.05251,"97":0.06392,"98":0.14611,"99":2.17342,"100":10.5954,"101":0.16894,"102":0.01142,_:"4 5 6 7 8 9 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 39 40 41 42 44 45 46 48 50 51 52 53 54 55 57 59 60 61 62 66 72 77 103 104"},F:{"28":0.05023,"36":0.00457,"46":0.02055,"84":0.11187,"85":0.37898,"86":0.00457,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00228,"15":0.00457,"16":0.00457,"17":0.00457,"18":0.01598,"83":0.00228,"84":0.00913,"85":0.00228,"89":0.00228,"91":0.00228,"92":0.01826,"94":0.00457,"95":0.00228,"96":0.00913,"97":0.08904,"98":0.0274,"99":0.35158,"100":1.9611,"101":0.03425,_:"12 13 79 80 81 86 87 88 90 93"},E:{"4":0,"11":0.00228,"12":0.00457,"13":0.02055,"14":0.25798,"15":0.12557,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00228,"11.1":0.00913,"12.1":0.02968,"13.1":0.13013,"14.1":0.63239,"15.1":0.12328,"15.2-15.3":0.15524,"15.4":0.72828},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.01344,"8.1-8.4":0,"9.0-9.2":0.01008,"9.3":0.14111,"10.0-10.2":0,"10.3":0.06384,"11.0-11.2":0.04032,"11.3-11.4":0.0504,"12.0-12.1":0.07392,"12.2-12.5":0.87354,"13.0-13.1":0.07056,"13.2":0.07056,"13.3":0.2419,"13.4-13.7":0.59804,"14.0-14.4":2.40896,"14.5-14.8":5.81242,"15.0-15.1":3.07756,"15.2-15.3":9.76017,"15.4":10.27757},P:{"4":0.25429,"5.0-5.4":0.02024,"6.2-6.4":0.01017,"7.2-7.4":0.09155,"8.2":0.01012,"9.2":0.04069,"10.1":0.01017,"11.1-11.2":0.13223,"12.0":0.03052,"13.0":0.36618,"14.0":0.27464,"15.0":0.20343,"16.0":3.91612},I:{"0":0,"3":0,"4":0.00322,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00643,"4.4":0,"4.4.3-4.4.4":0.02894},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14383,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":36.03074},S:{"2.5":0},R:{_:"0"},M:{"0":0.11576},Q:{"10.4":0},O:{"0":1.92153},H:{"0":1.06667}}; +module.exports={C:{"34":0.00937,"52":0.20306,"78":0.00312,"84":0.0125,"91":0.06873,"95":0.00625,"97":0.00312,"98":0.0125,"99":0.10934,"100":0.53108,"101":0.00937,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 94 96 102 103 3.5 3.6"},D:{"36":0.00625,"38":0.00937,"47":0.00937,"49":0.00937,"56":0.0125,"62":0.10622,"63":0.00312,"64":0.00312,"67":0.05936,"68":0.00625,"69":0.00312,"70":0.02187,"71":0.00937,"73":0.00312,"74":0.00312,"75":0.0125,"76":0.00312,"78":0.02812,"79":0.01874,"80":0.00625,"81":0.0125,"83":0.01562,"84":0.01562,"85":0.03124,"86":0.00937,"87":0.1687,"88":0.0125,"89":0.01874,"90":0.02499,"91":0.02499,"92":0.06873,"93":0.00937,"94":0.00937,"95":0.01874,"96":0.03749,"97":0.03749,"98":0.06248,"99":0.14683,"100":2.16181,"101":17.27572,"102":1.3152,"103":0.00625,_:"4 5 6 7 8 9 10 11 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 43 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 65 66 72 77 104"},F:{"28":0.02499,"46":0.0125,"84":0.00625,"85":0.41862,"86":0.38738,"87":0.03124,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00312,"17":0.00312,"18":0.0125,"84":0.00312,"89":0.00312,"90":0.00937,"92":0.0125,"93":0.00312,"96":0.0125,"97":0.02499,"98":0.0125,"99":0.08122,"100":0.17494,"101":2.43047,_:"12 13 14 16 79 80 81 83 85 86 87 88 91 94 95"},E:{"4":0,"13":0.02187,"14":0.26866,"15":0.09684,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00312,"11.1":0.0125,"12.1":0.04998,"13.1":0.12184,"14.1":0.58419,"15.1":0.13121,"15.2-15.3":0.12184,"15.4":1.28396,"15.5":0.1437},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.00868,"8.1-8.4":0,"9.0-9.2":0.01735,"9.3":0.10412,"10.0-10.2":0,"10.3":0.06363,"11.0-11.2":0.02892,"11.3-11.4":0.0376,"12.0-12.1":0.04917,"12.2-12.5":0.72881,"13.0-13.1":0.06363,"13.2":0.05206,"13.3":0.17353,"13.4-13.7":0.45406,"14.0-14.4":1.7237,"14.5-14.8":4.43651,"15.0-15.1":1.73816,"15.2-15.3":3.36932,"15.4":15.85747},P:{"4":0.1649,_:"5.0-5.4 8.2","6.2-6.4":0.07216,"7.2-7.4":0.07214,"9.2":0.03092,"10.1":0.01053,"11.1-11.2":0.08245,"12.0":0.02061,"13.0":0.23704,"14.0":0.19582,"15.0":0.15459,"16.0":1.49439},I:{"0":0,"3":0,"4":0.00299,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00897,"4.4":0,"4.4.3-4.4.4":0.02242},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10622,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.09626},Q:{"10.4":0},O:{"0":1.59523},H:{"0":0.70305},L:{"0":33.74749},S:{"2.5":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 26883274117361..c785a2a69de853 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:{"52":0.00533,"78":0.0373,"98":0.65534,"99":1.48651,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 100 101 3.5 3.6"},D:{"31":0.00533,"49":0.01598,"58":0.03197,"63":0.06926,"67":0.02131,"73":5.35464,"76":0.01066,"79":0.0373,"83":0.01066,"84":0.16517,"85":0.01598,"87":0.01066,"88":0.01598,"89":0.01066,"91":0.04262,"92":0.01066,"93":0.02664,"94":0.01066,"95":0.01066,"96":0.17582,"97":0.14918,"98":0.38894,"99":6.19646,"100":20.47018,"101":0.24509,"102":0.00533,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 65 66 68 69 70 71 72 74 75 77 78 80 81 86 90 103 104"},F:{"84":0.3623,"85":0.62338,_:"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 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00533,"17":0.00533,"18":0.01066,"93":0.01066,"96":0.01066,"97":0.02664,"98":0.01598,"99":1.89144,"100":6.97968,"101":0.06394,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95"},E:{"4":0,"12":0.01066,"13":0.09058,"14":0.28238,"15":0.10123,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01066,"11.1":0.01598,"12.1":0.10656,"13.1":0.94306,"14.1":1.25741,"15.1":0.2291,"15.2-15.3":0.35698,"15.4":1.56643},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.01702,"10.0-10.2":0,"10.3":0.06321,"11.0-11.2":0,"11.3-11.4":0.01459,"12.0-12.1":0.00486,"12.2-12.5":0.39384,"13.0-13.1":0.06078,"13.2":0.00486,"13.3":0.19449,"13.4-13.7":0.11426,"14.0-14.4":0.29173,"14.5-14.8":2.90758,"15.0-15.1":0.94812,"15.2-15.3":10.1279,"15.4":9.16519},P:{"4":0.06281,"5.0-5.4":0.01038,"6.2-6.4":0.01042,"7.2-7.4":0.10469,"8.2":0.01047,"9.2":0.02076,"10.1":0.03016,"11.1-11.2":0.05234,"12.0":0.33221,"13.0":0.08375,"14.0":0.04187,"15.0":0.01047,"16.0":3.59078},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.00467},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18115,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":18.46016},S:{"2.5":0},R:{_:"0"},M:{"0":0.08877},Q:{"10.4":0},O:{"0":0.10746},H:{"0":0.01769}}; +module.exports={C:{"52":0.00468,"78":0.01403,"91":0.00468,"94":0.00468,"99":0.57503,"100":3.29588,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 96 97 98 101 102 103 3.5 3.6"},D:{"29":0.00468,"31":0.0187,"49":0.03273,"63":0.06078,"67":0.00935,"75":0.00935,"77":0.0187,"79":0.0374,"83":0.01403,"85":0.02338,"86":0.00935,"87":0.0374,"88":0.00935,"89":0.00935,"90":0.01403,"91":0.13558,"92":0.05143,"93":0.03273,"95":0.00935,"96":0.04208,"97":0.15428,"98":0.54698,"99":0.33193,"100":5.96063,"101":18.16238,"102":1.78118,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 69 70 71 72 73 74 76 78 80 81 84 94 103 104"},F:{"85":0.71995,"86":0.57503,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00935,"18":0.0187,"92":0.00935,"94":0.00468,"97":0.00468,"98":0.04208,"99":0.04208,"100":0.58438,"101":4.98355,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96"},E:{"4":0,"12":0.00468,"13":0.08415,"14":0.20103,"15":0.06078,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00468,"11.1":0.02338,"12.1":0.03273,"13.1":0.34128,"14.1":1.37913,"15.1":0.2057,"15.2-15.3":0.3927,"15.4":3.69325,"15.5":0.3366},G:{"8":0.00549,"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.01922,"10.0-10.2":0,"10.3":0.05491,"11.0-11.2":0,"11.3-11.4":0.00549,"12.0-12.1":0.00549,"12.2-12.5":0.45298,"13.0-13.1":0.00549,"13.2":0.00824,"13.3":0.07687,"13.4-13.7":0.08785,"14.0-14.4":0.32669,"14.5-14.8":2.34724,"15.0-15.1":0.96086,"15.2-15.3":2.15507,"15.4":20.93849},P:{"4":0.11423,"5.0-5.4":0.01036,"6.2-6.4":0.03029,"7.2-7.4":0.3323,"8.2":0.02288,"9.2":0.03107,"10.1":0.02077,"11.1-11.2":0.12461,"12.0":0.02077,"13.0":0.135,"14.0":0.25888,"15.0":0.02077,"16.0":1.68225},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00038,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01027},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10285,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":20.14313},S:{"2.5":0},R:{_:"0"},M:{"0":0.49523},Q:{"10.4":0},O:{"0":0.01065},H:{"0":0.02017}}; 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 180cf8af14bb93..dca7f29e7c70db 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:{"51":0.01067,"52":0.24543,"55":0.01423,"56":0.00711,"60":0.00356,"72":0.00711,"78":0.03557,"80":0.00711,"84":0.00356,"88":0.00711,"91":0.05336,"92":0.00356,"94":0.00356,"95":0.00711,"96":0.02134,"97":0.01779,"98":0.33792,"99":0.86791,"100":0.01423,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 82 83 85 86 87 89 90 93 101 3.5 3.6"},D:{"38":0.00356,"45":0.00356,"49":0.0249,"57":0.00711,"63":0.01423,"64":0.01067,"65":0.01423,"66":0.00711,"67":0.00711,"69":0.00356,"70":0.00356,"71":0.0498,"72":0.01067,"73":0.00711,"74":0.07825,"75":0.00711,"76":0.00711,"77":0.00356,"78":0.08893,"79":0.0498,"80":0.06403,"81":0.01779,"83":0.03201,"84":0.0498,"85":0.04268,"86":0.11382,"87":0.07114,"88":0.03201,"89":0.05336,"90":0.03201,"91":0.0747,"92":0.05691,"93":0.03557,"94":0.03201,"95":0.03201,"96":0.29879,"97":0.20631,"98":0.4553,"99":3.19774,"100":16.412,"101":0.18496,"102":0.01067,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 53 54 55 56 58 59 60 61 62 68 103 104"},F:{"36":0.00711,"53":0.00711,"68":0.00356,"71":0.00356,"74":0.00711,"77":0.01779,"78":0.00711,"79":0.01067,"80":0.00356,"81":0.00356,"82":0.01423,"83":0.00711,"84":0.40194,"85":1.8034,"86":0.0249,"87":0.00356,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 69 70 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.38771},B:{"13":0.00356,"18":0.0249,"84":0.0249,"85":0.01779,"86":0.0249,"87":0.0249,"88":0.01779,"89":0.0249,"90":0.02134,"91":0.02846,"92":0.02134,"93":0.01423,"94":0.01779,"95":0.01779,"96":0.03201,"97":0.0249,"98":0.03201,"99":0.24899,"100":1.35166,"101":0.01423,_:"12 14 15 16 17 79 80 81 83"},E:{"4":0,"13":0.03913,"14":0.12094,"15":0.04624,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.20986,"11.1":0.00711,"12.1":0.01067,"13.1":0.0996,"14.1":0.24899,"15.1":0.12805,"15.2-15.3":0.07825,"15.4":0.38771},G:{"8":0.00143,"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.0057,"9.0-9.2":0.00428,"9.3":0.01568,"10.0-10.2":0.01283,"10.3":0.02709,"11.0-11.2":0.01711,"11.3-11.4":0.02138,"12.0-12.1":0.02709,"12.2-12.5":0.58735,"13.0-13.1":0.0499,"13.2":0.03136,"13.3":0.10692,"13.4-13.7":0.30223,"14.0-14.4":1.13907,"14.5-14.8":2.36082,"15.0-15.1":1.44985,"15.2-15.3":4.10149,"15.4":3.97746},P:{"4":0.09275,"5.0-5.4":0.02024,"6.2-6.4":0.01031,"7.2-7.4":0.16489,"8.2":0.01012,"9.2":0.06183,"10.1":0.01031,"11.1-11.2":0.22672,"12.0":0.07214,"13.0":0.24734,"14.0":0.28856,"15.0":0.19581,"16.0":2.81344},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00155,"4.4":0,"4.4.3-4.4.4":0.01134},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0996,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02281,_:"11"},L:{"0":42.91466},S:{"2.5":0},R:{_:"0"},M:{"0":0.10953},Q:{"10.4":0},O:{"0":0.33504},H:{"0":0.32939}}; +module.exports={C:{"51":0.00803,"52":0.34538,"54":0.00402,"55":0.01205,"56":0.00402,"68":0.00402,"76":0.00402,"78":0.05221,"79":0.01205,"80":0.01205,"81":0.03213,"82":0.01205,"84":0.00803,"88":0.00402,"91":0.03614,"94":0.02008,"95":0.00803,"96":0.01606,"97":0.01205,"98":0.0241,"99":0.24096,"100":1.16062,"101":0.00803,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 77 83 85 86 87 89 90 92 93 102 103 3.5 3.6"},D:{"26":0.00803,"34":0.00402,"45":0.00402,"49":0.0241,"51":0.00803,"57":0.00803,"58":0.00402,"63":0.00803,"64":0.02008,"65":0.02008,"67":0.00803,"68":0.00402,"69":0.00803,"70":0.00803,"71":0.06024,"72":0.00803,"73":0.00803,"74":0.14056,"76":0.00402,"78":0.01205,"79":0.23293,"80":0.07229,"81":0.02008,"83":0.08835,"84":0.07229,"85":0.08835,"86":0.15261,"87":0.09638,"88":0.03614,"89":0.04016,"90":0.06426,"91":0.09638,"92":0.06426,"93":0.02811,"94":0.03614,"95":0.05221,"96":0.12851,"97":0.16064,"98":0.35742,"99":0.34136,"100":4.71077,"101":15.91541,"102":1.55018,"103":0.01606,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 47 48 50 52 53 54 55 56 59 60 61 62 66 75 77 104"},F:{"71":0.03614,"77":0.00803,"79":0.02811,"81":0.00402,"82":0.01205,"83":0.00402,"84":0.0241,"85":1.33331,"86":1.42166,"87":0.09237,_:"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 78 80 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.56626},B:{"18":0.01205,"84":0.01205,"85":0.01205,"86":0.00803,"87":0.01606,"88":0.00803,"89":0.01205,"90":0.01205,"91":0.01205,"92":0.01205,"93":0.00402,"94":0.01205,"95":0.00803,"96":0.02008,"97":0.00803,"98":0.01606,"99":0.01205,"100":0.08434,"101":1.61443,_:"12 13 14 15 16 17 79 80 81 83"},E:{"4":0,"13":0.03614,"14":0.09638,"15":0.04016,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.18474,"9.1":0.00402,"12.1":0.00803,"13.1":0.07229,"14.1":0.23293,"15.1":0.14458,"15.2-15.3":0.07229,"15.4":0.67067,"15.5":0.09638},G:{"8":0.00135,"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.00135,"8.1-8.4":0.00542,"9.0-9.2":0.00271,"9.3":0.01896,"10.0-10.2":0.00813,"10.3":0.03522,"11.0-11.2":0.01761,"11.3-11.4":0.01896,"12.0-12.1":0.02303,"12.2-12.5":0.53102,"13.0-13.1":0.04335,"13.2":0.02709,"13.3":0.10295,"13.4-13.7":0.26957,"14.0-14.4":0.85342,"14.5-14.8":1.74747,"15.0-15.1":0.92386,"15.2-15.3":1.52531,"15.4":7.38273},P:{"4":0.10345,_:"5.0-5.4 8.2","6.2-6.4":0.01035,"7.2-7.4":0.12414,"9.2":0.02069,"10.1":0.01053,"11.1-11.2":0.15518,"12.0":0.03104,"13.0":0.14483,"14.0":0.13449,"15.0":0.10345,"16.0":1.06555},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00319,"4.4":0,"4.4.3-4.4.4":0.02074},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02008,"11":0.09237,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.16154},Q:{"10.4":0},O:{"0":0.48462},H:{"0":0.26622},L:{"0":41.39851},S:{"2.5":0}}; 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 cbaba81c73d8f8..fc5998d42ddc7c 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:{"51":0.01648,"52":0.03295,"53":0.01098,"54":0.00549,"55":0.01373,"56":0.00824,"57":0.01373,"58":0.00275,"59":0.00549,"72":0.00275,"78":0.01373,"84":0.00549,"88":0.00549,"89":0.00275,"91":0.00824,"92":0.00275,"93":0.00275,"94":0.0357,"95":0.00549,"96":0.00824,"97":0.01373,"98":0.46682,"99":1.05721,"100":0.07414,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 90 101 3.5 3.6"},D:{"33":0.00549,"37":0.00549,"39":0.00275,"40":0.00275,"41":0.00275,"42":0.00549,"43":0.02746,"44":0.00549,"45":0.00275,"46":0.00549,"47":0.00824,"48":0.00549,"49":0.02197,"50":0.00275,"51":0.00275,"52":0.00275,"53":0.00549,"54":0.00275,"55":0.00549,"56":0.01098,"57":0.01098,"58":0.01098,"59":0.00549,"60":0.00549,"61":0.00549,"62":0.00549,"63":0.01922,"64":0.00549,"65":0.00824,"66":0.00549,"67":0.00549,"68":0.00275,"69":0.02197,"70":0.00549,"71":0.00549,"72":0.04394,"73":0.00549,"74":0.00824,"75":0.01373,"76":0.00824,"78":0.03295,"79":0.02471,"80":0.02746,"81":0.02471,"83":0.03295,"84":0.01922,"85":0.01648,"86":0.04394,"87":0.0357,"88":0.03295,"89":0.01922,"90":0.04119,"91":0.06865,"92":0.07689,"93":0.02471,"94":0.04394,"95":0.02197,"96":0.18398,"97":0.14279,"98":0.24714,"99":2.79817,"100":14.02108,"101":0.2087,"102":0.01922,_:"4 5 6 7 8 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 77 103 104"},F:{"28":0.01373,"73":0.00824,"84":0.04394,"85":0.32952,"86":0.00275,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 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.01098,"13":0.00824,"14":0.00549,"15":0.00549,"16":0.00824,"17":0.00549,"18":0.01373,"84":0.01098,"85":0.00824,"86":0.00824,"87":0.00824,"88":0.00824,"89":0.01373,"90":0.01098,"91":0.01922,"92":0.01922,"93":0.00824,"94":0.01098,"95":0.00824,"96":0.01373,"97":0.03021,"98":0.02471,"99":0.26911,"100":1.70801,"101":0.01922,_:"79 80 81 83"},E:{"4":0,"13":0.01922,"14":0.05767,"15":0.03021,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00275,"10.1":0.00824,"11.1":0.00275,"12.1":0.01922,"13.1":0.08787,"14.1":0.16201,"15.1":0.0714,"15.2-15.3":0.06865,"15.4":0.31579},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.00572,"7.0-7.1":0.00458,"8.1-8.4":0,"9.0-9.2":0.00458,"9.3":0.08353,"10.0-10.2":0.01373,"10.3":0.09954,"11.0-11.2":0.14874,"11.3-11.4":0.05034,"12.0-12.1":0.04233,"12.2-12.5":1.25288,"13.0-13.1":0.07666,"13.2":0.03776,"13.3":0.17849,"13.4-13.7":0.55836,"14.0-14.4":1.07897,"14.5-14.8":1.88562,"15.0-15.1":0.80093,"15.2-15.3":2.57785,"15.4":2.53895},P:{"4":0.36026,"5.0-5.4":0.01029,"6.2-6.4":0.02059,"7.2-7.4":0.28821,"8.2":0.01014,"9.2":0.07205,"10.1":0.02059,"11.1-11.2":0.1441,"12.0":0.06176,"13.0":0.1441,"14.0":0.28821,"15.0":0.20586,"16.0":1.74983},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01116,"4.4":0,"4.4.3-4.4.4":0.04687},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01161,"9":0.01741,"11":0.22636,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":57.82578},S:{"2.5":0},R:{_:"0"},M:{"0":0.13057},Q:{"10.4":0.15959},O:{"0":1.65391},H:{"0":0.32278}}; +module.exports={C:{"4":0.00547,"43":0.00273,"50":0.00273,"51":0.0082,"52":0.03554,"53":0.00547,"54":0.00547,"55":0.00273,"56":0.00547,"57":0.00547,"58":0.00273,"59":0.00273,"72":0.00273,"77":0.00273,"78":0.01094,"82":0.00547,"84":0.0082,"85":0.00273,"88":0.00273,"91":0.00547,"92":0.00547,"93":0.00547,"94":0.0164,"95":0.00273,"96":0.0082,"97":0.00547,"98":0.01367,"99":0.36636,"100":1.21663,"101":0.05741,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 83 86 87 89 90 102 103 3.5 3.6"},D:{"33":0.00547,"37":0.00547,"39":0.00273,"40":0.00273,"41":0.00547,"43":0.03281,"44":0.00273,"46":0.00547,"47":0.00547,"49":0.0164,"51":0.00273,"55":0.00273,"56":0.02187,"57":0.00547,"58":0.00547,"60":0.00273,"62":0.00273,"63":0.02461,"64":0.00547,"65":0.00273,"68":0.00547,"69":0.02734,"70":0.01094,"71":0.0082,"72":0.0082,"74":0.00547,"75":0.0082,"76":0.0082,"77":0.00273,"78":0.0164,"79":0.03554,"80":0.01914,"81":0.01914,"83":0.03281,"84":0.02187,"85":0.01094,"86":0.04101,"87":0.03554,"88":0.03281,"89":0.01914,"90":0.04374,"91":0.04648,"92":0.06562,"93":0.02187,"94":0.03554,"95":0.02734,"96":0.13123,"97":0.11209,"98":0.16404,"99":0.24059,"100":3.05935,"101":13.00564,"102":1.2467,"103":0.02461,"104":0.00273,_:"4 5 6 7 8 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 42 45 48 50 52 53 54 59 61 66 67 73"},F:{"28":0.01367,"82":0.00273,"84":0.00547,"85":0.1367,"86":0.18865,"87":0.01094,_:"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 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.01094,"13":0.00547,"14":0.00547,"15":0.0082,"16":0.0164,"17":0.0082,"18":0.03007,"84":0.01367,"85":0.00547,"86":0.00547,"87":0.0082,"88":0.00547,"89":0.01094,"90":0.0082,"91":0.01367,"92":0.02734,"94":0.00547,"95":0.0082,"96":0.01094,"97":0.01367,"98":0.01914,"99":0.0164,"100":0.10936,"101":2.11338,_:"79 80 81 83 93"},E:{"4":0,"10":0.00273,"12":0.00547,"13":0.0164,"14":0.04648,"15":0.02461,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01367,"13.1":0.05741,"14.1":0.11483,"15.1":0.04101,"15.2-15.3":0.04648,"15.4":0.47845,"15.5":0.08475},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.00577,"7.0-7.1":0,"8.1-8.4":0.00231,"9.0-9.2":0.00115,"9.3":0.10961,"10.0-10.2":0.01038,"10.3":0.10153,"11.0-11.2":0.03115,"11.3-11.4":0.03577,"12.0-12.1":0.045,"12.2-12.5":1.13761,"13.0-13.1":0.05192,"13.2":0.02538,"13.3":0.10961,"13.4-13.7":0.55611,"14.0-14.4":1.118,"14.5-14.8":1.62911,"15.0-15.1":0.63918,"15.2-15.3":1.22645,"15.4":4.69351},P:{"4":0.26635,"5.0-5.4":0.01018,"6.2-6.4":0.03073,"7.2-7.4":0.2766,"8.2":0.03053,"9.2":0.05122,"10.1":0.02036,"11.1-11.2":0.15367,"12.0":0.08195,"13.0":0.11269,"14.0":0.22538,"15.0":0.11269,"16.0":1.06541},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01211,"4.4":0,"4.4.3-4.4.4":0.04601},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00952,"11":0.24748,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.13077},Q:{"10.4":0.11624},O:{"0":1.66369},H:{"0":0.30263},L:{"0":57.64376},S:{"2.5":0}}; 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 6c0603599a808c..e899e36aae50e5 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:{"43":0.00275,"47":0.0055,"52":0.03298,"66":0.00275,"67":0.0055,"72":0.00275,"78":0.01649,"79":0.0055,"88":0.00824,"89":0.0055,"90":0.0055,"91":0.02748,"92":0.00275,"93":0.0055,"94":0.00824,"95":0.00275,"96":0.00824,"97":0.01649,"98":0.64303,"99":1.1624,"100":0.01099,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 68 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 87 101 3.5 3.6"},D:{"22":0.0055,"28":0.01099,"34":0.0055,"38":0.01374,"49":0.04672,"63":0.0055,"65":0.01924,"66":0.00275,"67":0.0055,"68":0.0055,"70":0.0055,"73":0.0055,"74":0.00275,"76":0.00275,"77":0.00275,"78":0.00275,"79":0.04122,"80":0.01649,"81":0.01649,"83":0.01649,"84":0.01374,"85":0.01099,"86":0.02198,"87":0.09618,"88":0.01374,"89":0.02198,"90":0.01099,"91":0.08244,"92":0.07145,"93":0.01649,"94":0.02198,"95":0.02473,"96":0.10442,"97":0.15114,"98":0.20885,"99":2.72327,"100":13.96534,"101":0.18961,"102":0.01099,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 69 71 72 75 103 104"},F:{"45":0.01099,"84":0.10442,"85":0.39296,"86":0.0055,_:"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 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 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.00824,"13":0.0055,"14":0.0055,"15":0.00824,"16":0.01374,"17":0.01099,"18":0.02748,"84":0.0055,"89":0.01099,"90":0.00824,"91":0.00275,"92":0.01649,"94":0.00275,"95":0.00275,"96":0.01649,"97":0.01924,"98":0.01649,"99":0.2803,"100":1.9923,"101":0.02748,_:"79 80 81 83 85 86 87 88 93"},E:{"4":0,"12":0.0055,"13":0.02198,"14":0.15938,"15":0.05771,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01374,"10.1":0.0055,"11.1":0.01099,"12.1":0.06595,"13.1":0.15938,"14.1":0.32152,"15.1":0.16763,"15.2-15.3":0.10442,"15.4":0.49464},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,"7.0-7.1":0.02651,"8.1-8.4":0,"9.0-9.2":0.00419,"9.3":0.10885,"10.0-10.2":0.01256,"10.3":0.13118,"11.0-11.2":0.0321,"11.3-11.4":0.07257,"12.0-12.1":0.03768,"12.2-12.5":0.99919,"13.0-13.1":0.01675,"13.2":0.00977,"13.3":0.0921,"13.4-13.7":0.20654,"14.0-14.4":0.63914,"14.5-14.8":1.82114,"15.0-15.1":0.81219,"15.2-15.3":4.38888,"15.4":4.5382},P:{"4":0.2738,"5.0-5.4":0.01029,"6.2-6.4":0.02059,"7.2-7.4":0.71998,"8.2":0.01014,"9.2":0.0507,"10.1":0.03042,"11.1-11.2":0.25352,"12.0":0.07098,"13.0":0.30422,"14.0":0.36506,"15.0":0.24338,"16.0":5.88157},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00056,"4.2-4.3":0.00223,"4.4":0,"4.4.3-4.4.4":0.02622},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0056,"11":0.14829,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":51.47412},S:{"2.5":0},R:{_:"0"},M:{"0":0.11602},Q:{"10.4":0},O:{"0":0.23928},H:{"0":0.19908}}; +module.exports={C:{"12":0.00304,"43":0.00304,"47":0.00304,"51":0.00609,"52":0.03044,"67":0.00304,"70":0.00609,"72":0.00609,"78":0.01522,"86":0.00304,"89":0.00304,"90":0.00609,"91":0.02435,"92":0.04262,"94":0.00304,"97":0.00609,"98":0.01218,"99":0.31353,"100":1.63767,"101":0.01522,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 71 73 74 75 76 77 79 80 81 82 83 84 85 87 88 93 95 96 102 103 3.5 3.6"},D:{"22":0.00304,"28":0.01522,"34":0.00609,"38":0.00913,"49":0.04566,"63":0.00609,"64":0.00304,"65":0.01218,"67":0.00609,"68":0.00304,"69":0.01522,"70":0.01218,"71":0.00304,"72":0.00304,"73":0.00304,"74":0.00609,"76":0.00609,"79":0.0487,"80":0.01826,"81":0.00913,"83":0.01826,"84":0.01826,"85":0.01218,"86":0.02131,"87":0.10958,"88":0.01522,"89":0.02131,"90":0.01826,"91":0.05175,"92":0.03044,"93":0.01522,"94":0.02435,"95":0.02435,"96":0.08828,"97":0.06088,"98":0.10045,"99":0.19482,"100":3.32405,"101":14.37986,"102":1.4185,"103":0.01218,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 66 75 77 78 104"},F:{"69":0.00304,"79":0.00304,"85":0.30136,"86":0.25874,"87":0.01522,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 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.00913,"13":0.00304,"14":0.00609,"15":0.00304,"16":0.00913,"17":0.00913,"18":0.03044,"84":0.00609,"86":0.00304,"87":0.00913,"89":0.00609,"90":0.00609,"92":0.01522,"94":0.00609,"96":0.00609,"97":0.01218,"98":0.01218,"99":0.0274,"100":0.11567,"101":2.36519,_:"79 80 81 83 85 88 91 93 95"},E:{"4":0,"7":0.00609,"13":0.03957,"14":0.14611,"15":0.04262,_:"0 5 6 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00913,"10.1":0.00609,"11.1":0.02131,"12.1":0.0487,"13.1":0.12785,"14.1":0.34397,"15.1":0.16438,"15.2-15.3":0.16438,"15.4":0.78231,"15.5":0.08828},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00152,"6.0-6.1":0,"7.0-7.1":0.02285,"8.1-8.4":0.00457,"9.0-9.2":0.00305,"9.3":0.10207,"10.0-10.2":0.00762,"10.3":0.1493,"11.0-11.2":0.02133,"11.3-11.4":0.04875,"12.0-12.1":0.0457,"12.2-12.5":0.86989,"13.0-13.1":0.01828,"13.2":0.00457,"13.3":0.07008,"13.4-13.7":0.18738,"14.0-14.4":0.53473,"14.5-14.8":1.68189,"15.0-15.1":0.55606,"15.2-15.3":1.40919,"15.4":9.49262},P:{"4":0.19388,"5.0-5.4":0.01018,"6.2-6.4":0.03073,"7.2-7.4":0.33674,"8.2":0.03053,"9.2":0.04082,"10.1":0.0102,"11.1-11.2":0.18368,"12.0":0.05102,"13.0":0.27552,"14.0":0.25511,"15.0":0.16327,"16.0":2.12249},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00202,"4.2-4.3":0.00403,"4.4":0,"4.4.3-4.4.4":0.04959},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00304,"11":0.14002,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.11824},Q:{"10.4":0},O:{"0":0.25038},H:{"0":0.2963},L:{"0":48.98665},S:{"2.5":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 8d1a613baefc2a..5d80618e4b25fa 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:{"56":0.01749,"78":0.01749,"87":0.2492,"89":0.01312,"91":0.00437,"94":0.01749,"97":0.00874,"98":0.34102,"99":0.82631,"100":0.00437,"101":0.02186,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 90 92 93 95 96 3.5 3.6"},D:{"29":0.00437,"49":0.01312,"63":0.00874,"69":0.0306,"73":0.00874,"75":0.00874,"76":0.08744,"77":0.01749,"79":0.15302,"81":0.15739,"83":0.0306,"84":0.00437,"85":0.0306,"87":0.03935,"88":0.02186,"89":0.01312,"90":0.00874,"91":0.01312,"92":0.02186,"93":0.06995,"94":0.00874,"95":0.01749,"96":0.16176,"97":0.14428,"98":0.39785,"99":5.83662,"100":18.88267,"101":0.34102,"102":0.01749,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 72 74 78 80 86 103 104"},F:{"28":0.02186,"84":0.17925,"85":0.83942,_:"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 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.01312,"14":0.00437,"15":0.00874,"17":0.01312,"18":0.25358,"90":0.00437,"92":0.0787,"96":0.00874,"97":0.0306,"98":0.01312,"99":0.7957,"100":5.19394,"101":0.03935,_:"13 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95"},E:{"4":0,"13":0.02623,"14":0.05684,"15":0.04809,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.0787,"12.1":0.02186,"13.1":0.16176,"14.1":0.188,"15.1":0.08307,"15.2-15.3":0.1093,"15.4":0.61208},G:{"8":0,"3.2":0.00108,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03133,"6.0-6.1":0,"7.0-7.1":0.00648,"8.1-8.4":0.00216,"9.0-9.2":0.00324,"9.3":0.09508,"10.0-10.2":0,"10.3":0.05727,"11.0-11.2":0.0054,"11.3-11.4":0.02485,"12.0-12.1":0.01837,"12.2-12.5":0.51972,"13.0-13.1":0.00324,"13.2":0.0054,"13.3":0.02809,"13.4-13.7":0.10157,"14.0-14.4":0.37277,"14.5-14.8":1.00702,"15.0-15.1":0.48406,"15.2-15.3":4.05401,"15.4":3.98269},P:{"4":0.14789,"5.0-5.4":0.01116,"6.2-6.4":0.04084,"7.2-7.4":0.65496,"8.2":0.01011,"9.2":0.02062,"10.1":0.02113,"11.1-11.2":0.15846,"12.0":0.01056,"13.0":0.10564,"14.0":0.15846,"15.0":0.16902,"16.0":5.29251},I:{"0":0,"3":0,"4":0.00091,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00242,"4.4":0,"4.4.3-4.4.4":0.02481},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0306,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.25322},H:{"0":0.13851},L:{"0":43.26861},S:{"2.5":0},R:{_:"0"},M:{"0":0.24196},Q:{"10.4":0}}; +module.exports={C:{"47":0.01182,"56":0.01576,"72":0.00788,"87":0.0394,"96":0.01576,"97":0.01182,"98":0.00788,"99":0.13396,"100":0.90226,"101":0.00788,"102":0.00788,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 103 3.5 3.6"},D:{"39":0.00788,"49":0.0197,"58":0.00788,"63":0.00788,"65":0.0197,"66":0.01182,"67":0.01576,"75":0.00394,"76":0.18912,"79":0.0394,"80":0.00394,"81":0.14578,"83":0.00788,"84":0.01182,"85":0.00394,"86":0.00788,"87":0.0197,"88":0.0197,"89":0.00788,"90":0.01576,"91":0.0197,"92":0.00788,"93":0.09062,"94":0.0788,"95":0.01182,"96":0.07486,"97":0.0985,"98":0.4925,"99":0.4531,"100":5.5948,"101":15.55512,"102":1.48538,"103":0.12214,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 68 69 70 71 72 73 74 77 78 104"},F:{"28":0.0197,"36":0.00394,"85":0.41764,"86":0.4925,"87":0.07092,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00394,"15":0.00788,"16":0.00788,"18":0.197,"84":0.00394,"92":0.01576,"96":0.00788,"97":0.00394,"98":0.00788,"99":0.05516,"100":0.53978,"101":4.83832,_:"12 13 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01182,"14":0.0788,"15":0.0197,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.01182,"12.1":0.03546,"13.1":0.15366,"14.1":0.16154,"15.1":0.0591,"15.2-15.3":0.0394,"15.4":0.86286,"15.5":0.0985},G:{"8":0.0034,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02038,"6.0-6.1":0,"7.0-7.1":0.00226,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01359,"10.0-10.2":0,"10.3":0.04415,"11.0-11.2":0.00679,"11.3-11.4":0.00226,"12.0-12.1":0.0034,"12.2-12.5":0.52078,"13.0-13.1":0,"13.2":0.00792,"13.3":0.01811,"13.4-13.7":0.05095,"14.0-14.4":0.24114,"14.5-14.8":0.70192,"15.0-15.1":0.26378,"15.2-15.3":0.65776,"15.4":8.76149},P:{"4":0.15641,"5.0-5.4":0.02027,"6.2-6.4":0.01043,"7.2-7.4":0.46922,"8.2":0.01022,"9.2":0.02051,"10.1":0.04171,"11.1-11.2":0.12512,"12.0":0.02085,"13.0":0.09384,"14.0":0.14598,"15.0":0.12512,"16.0":2.33566},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00308,"4.4":0,"4.4.3-4.4.4":0.0151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06698,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.10302},Q:{"10.4":0},O:{"0":0.2727},H:{"0":0.45324},L:{"0":46.4417},S:{"2.5":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 6e312f7fa05602..52ee6acc027fd0 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:{"52":0.013,"54":0.14948,"66":0.013,"78":0.09099,"84":0.013,"88":0.0065,"91":0.16897,"92":0.013,"93":0.026,"94":0.08449,"95":0.026,"96":0.026,"97":0.05199,"98":2.5736,"99":7.8248,"100":0.04549,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 101 3.5 3.6"},D:{"49":1.08533,"73":0.026,"76":0.0195,"79":0.16897,"84":0.13648,"85":0.0195,"86":0.22097,"87":0.16897,"88":0.0195,"89":0.0065,"90":0.04549,"91":0.03899,"92":0.08449,"93":0.013,"94":0.013,"95":0.0325,"96":0.72139,"97":0.09099,"98":2.33314,"99":5.90759,"100":19.75696,"101":0.22747,"102":0.10398,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 77 78 80 81 83 103 104"},F:{"28":0.0065,"82":0.026,"84":0.71489,"85":0.88386,"86":0.026,_:"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 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0195},B:{"18":0.013,"91":0.0195,"93":0.013,"96":0.0195,"97":0.05199,"98":1.07883,"99":1.03334,"100":7.35687,"101":0.22097,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 92 94 95"},E:{"4":0,"13":0.15598,"14":0.33795,"15":0.11698,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.013,"11.1":0.37044,"12.1":0.0195,"13.1":1.87821,"14.1":0.96835,"15.1":0.27946,"15.2-15.3":0.77338,"15.4":2.16417},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.01517,"10.0-10.2":0.0065,"10.3":0.03684,"11.0-11.2":0.03467,"11.3-11.4":0.02167,"12.0-12.1":0.00433,"12.2-12.5":0.38572,"13.0-13.1":0.03034,"13.2":0.0325,"13.3":0.01083,"13.4-13.7":0.09535,"14.0-14.4":0.38139,"14.5-14.8":1.13117,"15.0-15.1":0.95781,"15.2-15.3":10.26934,"15.4":8.25405},P:{"4":0.06367,"5.0-5.4":0.02018,"6.2-6.4":0.09081,"7.2-7.4":0.89802,"8.2":0.02018,"9.2":0.13117,"10.1":0.04036,"11.1-11.2":0.40361,"12.0":0.11099,"13.0":0.02122,"14.0":0.63568,"15.0":0.34307,"16.0":2.97137},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:{"11":0.35745,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":9.78421},S:{"2.5":0},R:{_:"0"},M:{"0":0.53215},Q:{"10.4":0},O:{"0":0.007},H:{"0":0.06629}}; +module.exports={C:{"54":0.01886,"77":0.01258,"78":0.04402,"84":0.01258,"89":0.01258,"91":0.1572,"92":0.03144,"94":0.08803,"95":0.01258,"96":0.10061,"97":0.01886,"98":0.04402,"99":3.43954,"100":8.23099,"101":0.03773,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 85 86 87 88 90 93 102 103 3.5 3.6"},D:{"49":0.92434,"56":0.01258,"67":0.01258,"73":0.07546,"79":0.08174,"84":0.0503,"85":0.02515,"87":0.03773,"89":0.03144,"90":0.01886,"91":0.0503,"92":0.05659,"93":0.01258,"95":0.00629,"96":0.28925,"97":0.02515,"98":0.20122,"99":0.17606,"100":5.43912,"101":17.73216,"102":1.59715,"103":0.13205,"104":0.01886,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 74 75 76 77 78 80 81 83 86 88 94"},F:{"85":0.43387,"86":1.1507,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"85":0.01258,"97":0.01886,"98":0.42758,"99":0.06917,"100":1.15699,"101":10.50096,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96"},E:{"4":0,"12":0.08803,"13":0.05659,"14":0.28296,"15":0.30811,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.46531,"12.1":0.02515,"13.1":1.4148,"14.1":0.92434,"15.1":0.25152,"15.2-15.3":0.32698,"15.4":3.70363,"15.5":0.48418},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.01226,"10.0-10.2":0,"10.3":0.01226,"11.0-11.2":0.01962,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.16434,"13.0-13.1":0.01472,"13.2":0,"13.3":0.01226,"13.4-13.7":0.0834,"14.0-14.4":0.79963,"14.5-14.8":1.43491,"15.0-15.1":0.34585,"15.2-15.3":2.59266,"15.4":19.03408},P:{"4":0.10305,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.33694,"8.2":0.02038,"9.2":0.07147,"10.1":0.02042,"11.1-11.2":0.17357,"12.0":0.03063,"13.0":0.03092,"14.0":0.25526,"15.0":0.11231,"16.0":0.91718},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00194,"4.2-4.3":0.00452,"4.4":0,"4.4.3-4.4.4":0.00839},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23266,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.6754},Q:{"10.4":0},O:{"0":0.01113},H:{"0":0.43565},L:{"0":8.68023},S:{"2.5":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 b613d832b85ae6..24513389bf29b1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js @@ -1 +1 @@ -module.exports={C:{"52":0.0182,"72":0.00364,"78":0.00728,"84":0.00364,"88":0.00728,"89":0.00728,"90":0.00728,"91":0.0182,"92":0.00728,"93":0.16016,"94":0.00728,"95":0.00728,"96":0.00728,"97":0.02548,"98":0.40768,"99":1.10292,"100":0.08372,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 101 3.5 3.6"},D:{"22":0.00728,"49":0.01092,"63":0.00728,"65":0.00728,"69":0.00364,"70":0.00728,"71":0.00364,"74":0.00728,"75":0.00364,"77":0.00364,"78":0.00364,"79":0.0182,"80":0.02184,"81":0.04004,"83":0.0182,"84":0.00728,"85":0.0182,"86":0.02548,"87":0.04004,"88":0.01456,"89":0.0182,"90":0.01456,"91":0.03276,"92":0.04368,"93":0.02548,"94":0.02912,"95":0.02912,"96":0.07644,"97":0.09828,"98":0.1638,"99":3.13768,"100":17.19536,"101":0.33488,"102":0.00728,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 72 73 76 103 104"},F:{"72":0.00364,"79":0.00364,"80":0.00364,"82":0.01092,"83":0.00364,"84":0.18928,"85":0.91364,"86":0.0182,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 81 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.00728,"15":0.00364,"16":0.00364,"17":0.00364,"18":0.02548,"84":0.01456,"89":0.00728,"90":0.00364,"91":0.00728,"92":0.06552,"94":0.00364,"95":0.00364,"96":0.01092,"97":0.0182,"98":0.03276,"99":1.08108,"100":8.5904,"101":0.0364,_:"13 14 79 80 81 83 85 86 87 88 93"},E:{"4":0,"13":0.01092,"14":0.0364,"15":0.01456,_:"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","12.1":0.00728,"13.1":0.0364,"14.1":0.1092,"15.1":0.04732,"15.2-15.3":0.03276,"15.4":0.13832},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0037,"8.1-8.4":0.00247,"9.0-9.2":0.00185,"9.3":0.02839,"10.0-10.2":0.00802,"10.3":0.03395,"11.0-11.2":0.02592,"11.3-11.4":0.02654,"12.0-12.1":0.03086,"12.2-12.5":0.54501,"13.0-13.1":0.02654,"13.2":0.01852,"13.3":0.07098,"13.4-13.7":0.17529,"14.0-14.4":0.51909,"14.5-14.8":0.82215,"15.0-15.1":0.55921,"15.2-15.3":1.58504,"15.4":1.68503},P:{"4":0.61657,"5.0-5.4":0.01012,"6.2-6.4":0.03083,"7.2-7.4":0.88375,"8.2":0.01012,"9.2":0.08221,"10.1":0.01028,"11.1-11.2":0.2569,"12.0":0.06166,"13.0":0.22608,"14.0":0.29801,"15.0":0.19525,"16.0":1.64419},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00094,"4.2-4.3":0.00314,"4.4":0,"4.4.3-4.4.4":0.04044},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04004,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.6536},H:{"0":1.59563},L:{"0":50.66188},S:{"2.5":0},R:{_:"0"},M:{"0":0.1272},Q:{"10.4":0}}; +module.exports={C:{"52":0.01513,"72":0.00378,"77":0.00378,"78":0.00378,"88":0.00756,"89":0.00378,"91":0.02647,"92":0.00756,"93":0.11724,"94":0.00756,"95":0.00378,"96":0.00756,"97":0.01513,"98":0.01891,"99":0.295,"100":1.26319,"101":0.08699,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 90 102 103 3.5 3.6"},D:{"22":0.00378,"49":0.01135,"63":0.00756,"65":0.00756,"70":0.00756,"74":0.01135,"75":0.00378,"76":0.00378,"77":0.00378,"78":0.00378,"79":0.02269,"80":0.02269,"81":0.03782,"83":0.01513,"84":0.01513,"85":0.01891,"86":0.02647,"87":0.03026,"88":0.01513,"89":0.01891,"90":0.02647,"91":0.03026,"92":0.04917,"93":0.02269,"94":0.02269,"95":0.02647,"96":0.07186,"97":0.07186,"98":0.07942,"99":0.16263,"100":3.66854,"101":15.96382,"102":1.8494,"103":0.01135,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 69 71 72 73 104"},F:{"72":0.00756,"79":0.00378,"82":0.01135,"84":0.01135,"85":0.45762,"86":0.6732,"87":0.04917,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 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:{"12":0.00756,"13":0.00378,"16":0.00378,"17":0.00378,"18":0.02647,"84":0.01513,"85":0.00378,"89":0.00756,"90":0.00378,"91":0.01135,"92":0.03026,"95":0.00378,"96":0.00756,"97":0.00756,"98":0.02269,"99":0.02647,"100":0.62025,"101":9.68192,_:"14 15 79 80 81 83 86 87 88 93 94"},E:{"4":0,"13":0.01135,"14":0.03782,"15":0.01513,_:"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","12.1":0.00756,"13.1":0.03404,"14.1":0.1059,"15.1":0.03782,"15.2-15.3":0.03404,"15.4":0.21936,"15.5":0.03404},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00547,"8.1-8.4":0.00121,"9.0-9.2":0.00182,"9.3":0.02915,"10.0-10.2":0.00729,"10.3":0.03644,"11.0-11.2":0.01943,"11.3-11.4":0.02915,"12.0-12.1":0.02915,"12.2-12.5":0.49617,"13.0-13.1":0.03097,"13.2":0.017,"13.3":0.06984,"13.4-13.7":0.14818,"14.0-14.4":0.48159,"14.5-14.8":0.66682,"15.0-15.1":0.44394,"15.2-15.3":0.70083,"15.4":2.85371},P:{"4":0.55234,"5.0-5.4":0.01011,"6.2-6.4":0.03069,"7.2-7.4":0.83875,"8.2":0.21569,"9.2":0.0716,"10.1":0.02046,"11.1-11.2":0.23526,"12.0":0.05114,"13.0":0.2148,"14.0":0.26594,"15.0":0.15343,"16.0":1.0024},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.00282,"4.4":0,"4.4.3-4.4.4":0.03946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02647,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.13058},Q:{"10.4":0},O:{"0":1.53585},H:{"0":1.58355},L:{"0":49.53834},S:{"2.5":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 6eceb5aaa6cdfe..923a4cbaf7c9da 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:{"24":0.00239,"39":0.00716,"44":0.00239,"47":0.01194,"56":0.00239,"59":0.00239,"72":0.0191,"73":0.00716,"86":0.00239,"91":0.03581,"94":0.00477,"95":0.00239,"97":0.04535,"98":0.27212,"99":0.65165,"100":0.0191,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 45 46 48 49 50 51 52 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 92 93 96 101 3.5 3.6"},D:{"39":0.00239,"43":0.00477,"53":0.00955,"55":0.01194,"60":0.00716,"62":0.00477,"63":0.00477,"64":0.02148,"65":0.00716,"66":0.00239,"67":0.00716,"68":0.00955,"69":0.00955,"70":0.00955,"74":0.01194,"75":0.01671,"76":0.0191,"77":0.00477,"78":0.01432,"79":0.00716,"80":0.05968,"81":0.03103,"83":0.00955,"84":0.00716,"85":0.02626,"86":0.03819,"87":0.02864,"88":0.04058,"89":0.01194,"90":0.0191,"91":0.02387,"92":0.0549,"93":0.02387,"94":0.02626,"95":0.0191,"96":0.05968,"97":0.03103,"98":0.57288,"99":2.58035,"100":5.7288,"101":0.11696,"102":0.00716,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 46 47 48 49 50 51 52 54 56 57 58 59 61 71 72 73 103 104"},F:{"21":0.00955,"72":0.00955,"74":0.00239,"79":0.00477,"80":0.00239,"83":0.15277,"84":0.34373,"85":0.33895,"86":0.00716,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 75 76 77 78 81 82 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.074,"13":0.02626,"14":0.04297,"15":0.02148,"16":0.02148,"17":0.01432,"18":0.19335,"84":0.03342,"85":0.04058,"88":0.00477,"89":0.01432,"90":0.00716,"91":0.00477,"92":0.05729,"93":0.00477,"94":0.00955,"95":0.0191,"96":0.05251,"97":0.03819,"98":0.04774,"99":0.63494,"100":1.52291,"101":0.03342,_:"79 80 81 83 86 87"},E:{"4":0,"13":0.00477,"14":0.01194,"15":0.00955,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00716,"11.1":0.02387,"12.1":0.00239,"13.1":0.06206,"14.1":0.04535,"15.1":0.04297,"15.2-15.3":0.03342,"15.4":0.0549},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00233,"6.0-6.1":0,"7.0-7.1":0.02248,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03333,"10.0-10.2":0.01628,"10.3":0.04031,"11.0-11.2":0.02713,"11.3-11.4":0.01163,"12.0-12.1":0.04263,"12.2-12.5":0.74803,"13.0-13.1":0.02403,"13.2":0.01395,"13.3":0.08062,"13.4-13.7":0.25115,"14.0-14.4":1.34412,"14.5-14.8":1.53326,"15.0-15.1":1.10072,"15.2-15.3":1.21545,"15.4":1.24258},P:{"4":0.21763,"5.0-5.4":0.03109,"6.2-6.4":0.02073,"7.2-7.4":0.13473,"8.2":0.01026,"9.2":0.04145,"10.1":0.01036,"11.1-11.2":0.09327,"12.0":0.03079,"13.0":0.03109,"14.0":0.15545,"15.0":0.06218,"16.0":0.80835},I:{"0":0,"3":0,"4":0.00103,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00155,"4.2-4.3":0.00155,"4.4":0,"4.4.3-4.4.4":0.02632},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.02148,"11":0.06445,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":64.05745},S:{"2.5":0.19794},R:{_:"0"},M:{"0":0.06852},Q:{"10.4":0},O:{"0":1.31705},H:{"0":9.00216}}; +module.exports={C:{"30":0.00233,"36":0.00933,"44":0.00466,"47":0.00466,"48":0.00233,"56":0.00466,"72":0.02798,"91":0.0583,"94":0.00466,"97":0.007,"98":0.01399,"99":0.1749,"100":0.74158,"101":0.02332,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 37 38 39 40 41 42 43 45 46 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 96 102 103 3.5 3.6"},D:{"43":0.007,"49":0.00466,"52":0.00466,"53":0.007,"55":0.00466,"59":0.01166,"60":0.00466,"61":0.00933,"63":0.00233,"64":0.03964,"65":0.00233,"67":0.00233,"68":0.00233,"70":0.00933,"71":0.00233,"72":0.007,"74":0.007,"75":0.01632,"76":0.02099,"77":0.00466,"78":0.00466,"79":0.007,"80":0.01632,"81":0.007,"83":0.007,"84":0.01166,"85":0.007,"86":0.02565,"87":0.01399,"88":0.03731,"89":0.007,"90":0.02565,"91":0.02099,"92":0.02798,"93":0.02099,"94":0.02099,"95":0.01866,"96":0.04198,"97":0.04198,"98":0.88849,"99":0.15624,"100":1.60208,"101":5.03246,"102":0.43608,"103":0.007,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 54 56 57 58 62 66 69 73 104"},F:{"36":0.007,"60":0.01399,"72":0.00233,"79":0.01632,"82":0.00233,"84":0.007,"85":0.13992,"86":0.21454,"87":0.01399,_:"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 62 63 64 65 66 67 68 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:{"12":0.06296,"13":0.05364,"14":0.01166,"15":0.03265,"16":0.01632,"17":0.01632,"18":0.16324,"80":0.00466,"84":0.02565,"85":0.0513,"87":0.00466,"88":0.007,"89":0.01866,"90":0.02099,"91":0.00466,"92":0.02565,"93":0.007,"94":0.007,"95":0.01166,"96":0.04198,"97":0.03731,"98":0.03265,"99":0.07696,"100":0.21921,"101":2.04983,_:"79 81 83 86"},E:{"4":0,"13":0.01166,"14":0.01866,"15":0.01632,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1 10.1 12.1","6.1":0.00466,"9.1":0.01632,"11.1":0.01166,"13.1":0.04897,"14.1":0.78122,"15.1":0.01166,"15.2-15.3":0.01399,"15.4":0.09561,"15.5":0.01866},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0029,"6.0-6.1":0,"7.0-7.1":0.01741,"8.1-8.4":0,"9.0-9.2":0.0029,"9.3":0.07157,"10.0-10.2":0.0058,"10.3":0.059,"11.0-11.2":0.03385,"11.3-11.4":0.03095,"12.0-12.1":0.03772,"12.2-12.5":0.78055,"13.0-13.1":0.08028,"13.2":0.02902,"13.3":0.23213,"13.4-13.7":0.26405,"14.0-14.4":1.62591,"14.5-14.8":1.75648,"15.0-15.1":1.13262,"15.2-15.3":1.07362,"15.4":2.43257},P:{"4":0.063,"5.0-5.4":0.07349,"6.2-6.4":0.08399,"7.2-7.4":0.09449,"8.2":0.02038,"9.2":0.042,"10.1":0.0315,"11.1-11.2":0.09449,"12.0":0.04075,"13.0":0.0315,"14.0":0.10499,"15.0":0.0315,"16.0":0.41997},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00217,"4.4":0,"4.4.3-4.4.4":0.02083},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08628,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.03834},Q:{"10.4":0.00767},O:{"0":0.7668},H:{"0":7.4338},L:{"0":65.42251},S:{"2.5":0.13802}}; 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 9f452c0ff292d1..179e04c8023ec4 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:{"29":0.00959,"52":0.00959,"60":0.01279,"88":0.03197,"89":0.0032,"91":0.00639,"92":0.0032,"94":0.00959,"95":0.01279,"97":0.02558,"98":0.7417,"99":1.62408,"100":0.01279,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 93 96 101 3.5 3.6"},D:{"11":0.00639,"28":0.00959,"33":0.00639,"40":0.00639,"43":0.00639,"49":0.12468,"56":0.01599,"63":0.00639,"69":0.00959,"70":0.01918,"74":0.06074,"75":0.00959,"77":0.00959,"79":0.02877,"80":0.00959,"81":0.01918,"85":0.00639,"86":0.1087,"87":0.04156,"88":0.01279,"90":0.00639,"91":0.00959,"92":0.02877,"93":0.00959,"94":0.05435,"95":0.02558,"96":0.07353,"97":0.20781,"98":0.15665,"99":2.43611,"100":10.35189,"101":0.12149,"102":0.01599,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 34 35 36 37 38 39 41 42 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 67 68 71 72 73 76 78 83 84 89 103 104"},F:{"64":0.0032,"73":0.00959,"82":0.00639,"83":0.00959,"84":0.08312,"85":0.79286,"86":0.00639,_:"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 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 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.05435,"13":0.01599,"14":0.00959,"15":0.00639,"16":0.01599,"17":0.02877,"18":0.18543,"80":0.00959,"84":0.01918,"85":0.02238,"89":0.0032,"90":0.01918,"92":0.03197,"93":0.0032,"94":0.00639,"95":0.0032,"96":0.03836,"97":0.02558,"98":0.08632,"99":0.49234,"100":2.81016,"101":0.03197,_:"79 81 83 86 87 88 91"},E:{"4":0,"15":0.01279,_:"0 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 11.1","9.1":0.0032,"10.1":0.0032,"12.1":0.01279,"13.1":0.02238,"14.1":0.12149,"15.1":0.01599,"15.2-15.3":0.01599,"15.4":0.13427},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00038,"5.0-5.1":0.00115,"6.0-6.1":0,"7.0-7.1":0.00192,"8.1-8.4":0.00077,"9.0-9.2":0,"9.3":0.05869,"10.0-10.2":0.00077,"10.3":0.01419,"11.0-11.2":0.01419,"11.3-11.4":0.00537,"12.0-12.1":0.00882,"12.2-12.5":0.2131,"13.0-13.1":0.00441,"13.2":0.00767,"13.3":0.01707,"13.4-13.7":0.06234,"14.0-14.4":0.16419,"14.5-14.8":0.24206,"15.0-15.1":0.11451,"15.2-15.3":0.51116,"15.4":0.47568},P:{"4":0.52349,"5.0-5.4":0.01029,"6.2-6.4":0.02053,"7.2-7.4":1.242,"8.2":0.01026,"9.2":0.1437,"10.1":0.03042,"11.1-11.2":0.13344,"12.0":0.03079,"13.0":0.13344,"14.0":0.52349,"15.0":0.10264,"16.0":1.21121},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00095,"4.2-4.3":0.00115,"4.4":0,"4.4.3-4.4.4":0.05232},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18543,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01361},N:{"10":0.01484,_:"11"},L:{"0":62.91834},S:{"2.5":0.02721},R:{_:"0"},M:{"0":0.2313},Q:{"10.4":0},O:{"0":1.25175},H:{"0":6.72403}}; +module.exports={C:{"52":0.00732,"78":0.00732,"85":0.00732,"88":0.00732,"91":0.00732,"96":0.01464,"98":0.01831,"99":1.00678,"100":1.58521,"101":0.06224,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 89 90 92 93 94 95 97 102 103 3.5 3.6"},D:{"35":0.00366,"43":0.00366,"49":0.25627,"56":0.01831,"59":0.00366,"63":0.04393,"69":0.01464,"70":0.02929,"72":0.01464,"74":0.03661,"75":0.01464,"78":0.01098,"79":0.01098,"80":0.00732,"81":0.01831,"83":0.00732,"84":0.00366,"85":0.03295,"86":0.04027,"87":0.08786,"88":0.00366,"89":0.00366,"90":0.01098,"91":0.00732,"92":0.02563,"93":0.01464,"94":0.02929,"95":0.01464,"96":0.05492,"97":0.05125,"98":0.09153,"99":0.23797,"100":2.6945,"101":12.4291,"102":0.66264,"103":0.00732,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 57 58 60 61 62 64 65 66 67 68 71 73 76 77 104"},F:{"42":0.00366,"68":0.00732,"78":0.00366,"79":0.00366,"82":0.00366,"85":0.54183,"86":0.75051,"87":0.03295,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 81 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.21234,"13":0.22332,"14":0.01098,"15":0.01464,"16":0.00732,"17":0.01464,"18":0.29654,"80":0.00732,"84":0.02197,"85":0.00732,"88":0.10251,"89":0.01831,"92":0.08054,"93":0.01464,"94":0.00366,"95":0.00366,"96":0.02563,"97":0.04759,"98":0.03295,"99":0.21966,"100":0.29654,"101":5.14737,_:"79 81 83 86 87 90 91"},E:{"4":0,"13":0.00732,"14":0.01098,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.02563,"13.1":0.05492,"14.1":0.05125,"15.1":0.00732,"15.2-15.3":0.01464,"15.4":0.09885,"15.5":0.05125},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00074,"5.0-5.1":0.00316,"6.0-6.1":0.0013,"7.0-7.1":0.00019,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07187,"10.0-10.2":0.00037,"10.3":0.00706,"11.0-11.2":0.00501,"11.3-11.4":0.00613,"12.0-12.1":0.00706,"12.2-12.5":0.16342,"13.0-13.1":0.00316,"13.2":0.00056,"13.3":0.01021,"13.4-13.7":0.07465,"14.0-14.4":0.12368,"14.5-14.8":0.18236,"15.0-15.1":0.13519,"15.2-15.3":0.41263,"15.4":0.64829},P:{"4":0.25472,"5.0-5.4":0.01018,"6.2-6.4":0.02038,"7.2-7.4":1.00868,"8.2":0.02038,"9.2":0.16302,"10.1":0.03057,"11.1-11.2":0.10189,"12.0":0.04075,"13.0":0.0917,"14.0":0.40755,"15.0":0.05094,"16.0":0.85585},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00143,"4.2-4.3":0.00251,"4.4":0,"4.4.3-4.4.4":0.05944},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1318,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01268},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.27887},Q:{"10.4":0},O:{"0":1.32464},H:{"0":5.7964},L:{"0":58.12188},S:{"2.5":0.02535}}; 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 9990b34a15b0c6..8bab8e7cf30dbe 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:{"48":0.03399,"51":0.00486,"52":0.20395,"60":0.00971,"66":0.00971,"68":0.00486,"72":0.00971,"77":0.01457,"78":0.0437,"79":0.00486,"83":0.00486,"84":0.01457,"85":0.00486,"88":0.01457,"90":0.00971,"91":0.09712,"92":0.00486,"93":0.00486,"94":0.01457,"95":0.07284,"96":0.04856,"97":0.03885,"98":1.16058,"99":3.36035,"100":0.03399,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 80 81 82 86 87 89 101 3.5 3.6"},D:{"38":0.00486,"41":0.01942,"43":0.00486,"49":0.04856,"56":0.01457,"60":0.00486,"61":0.00971,"63":0.01457,"64":0.00971,"65":0.01457,"66":0.01457,"68":0.00971,"70":0.00971,"71":0.00971,"72":0.00971,"73":0.01457,"74":0.01457,"75":0.00971,"76":0.00971,"77":0.01942,"78":0.00971,"79":0.08741,"80":0.02914,"81":0.01942,"83":0.04856,"84":0.09226,"85":0.02428,"86":0.10683,"87":0.10198,"88":0.04856,"89":0.0437,"90":0.05827,"91":0.05342,"92":0.07284,"93":0.10198,"94":0.08255,"95":0.07284,"96":0.22823,"97":0.23794,"98":0.3642,"99":5.46786,"100":23.88666,"101":0.32535,"102":0.00971,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 48 50 51 52 53 54 55 57 58 59 62 67 69 103 104"},F:{"36":0.01457,"77":0.00486,"79":0.00971,"80":0.00971,"82":0.03885,"83":0.01457,"84":0.77696,"85":2.56397,"86":0.01942,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 81 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.01457,"89":0.01457,"90":0.00971,"92":0.00971,"94":0.00971,"95":0.00486,"96":0.01457,"97":0.03399,"98":0.02428,"99":0.51959,"100":3.66628,"101":0.08255,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 91 93"},E:{"4":0,"12":0.00486,"13":0.00971,"14":0.14568,"15":0.06798,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00486,"9.1":0.00971,"10.1":0.00486,"11.1":0.00971,"12.1":0.02914,"13.1":0.16025,"14.1":0.3642,"15.1":0.14082,"15.2-15.3":0.16025,"15.4":0.55358},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00177,"6.0-6.1":0.00177,"7.0-7.1":0.00088,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01061,"10.0-10.2":0.00354,"10.3":0.07956,"11.0-11.2":0.00442,"11.3-11.4":0.00707,"12.0-12.1":0.0053,"12.2-12.5":0.10962,"13.0-13.1":0.0221,"13.2":0.0053,"13.3":0.02298,"13.4-13.7":0.12995,"14.0-14.4":0.27493,"14.5-14.8":1.07142,"15.0-15.1":0.50123,"15.2-15.3":3.26641,"15.4":3.3168},P:{"4":0.09425,"5.0-5.4":0.02018,"6.2-6.4":0.09081,"7.2-7.4":0.89802,"8.2":0.02018,"9.2":0.13117,"10.1":0.04036,"11.1-11.2":0.02094,"12.0":0.02094,"13.0":0.04189,"14.0":0.0733,"15.0":0.05236,"16.0":2.59697},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.00613,"4.4":0,"4.4.3-4.4.4":0.03239},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00971,"11":0.25251,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":24.62022},S:{"2.5":0},R:{_:"0"},M:{"0":0.23658},Q:{"10.4":0.00514},O:{"0":0.08743},H:{"0":0.40413}}; +module.exports={C:{"28":0.01705,"48":0.05683,"51":0.00568,"52":0.27278,"60":0.01705,"66":0.01137,"68":0.0341,"72":0.01137,"77":0.01137,"78":0.04546,"79":0.01705,"80":0.00568,"81":0.01705,"82":0.00568,"83":0.01137,"84":0.02273,"85":0.00568,"87":0.01137,"88":0.02273,"89":0.00568,"90":0.01705,"91":0.11366,"92":0.01137,"94":0.01705,"95":0.06251,"96":0.06251,"97":0.0341,"98":0.05115,"99":0.89223,"100":4.3134,"101":0.02842,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 86 93 102 103 3.5 3.6"},D:{"41":0.03978,"49":0.0682,"56":0.11934,"60":0.00568,"61":0.01137,"62":0.00568,"63":0.01705,"64":0.01705,"65":0.01137,"66":0.02273,"68":0.01137,"70":0.01137,"71":0.00568,"72":0.01137,"73":0.02273,"74":0.01137,"75":0.00568,"76":0.02273,"77":0.01137,"78":0.01705,"79":0.07388,"80":0.02842,"81":0.02842,"83":0.06251,"84":0.14776,"85":0.05115,"86":0.09661,"87":0.22732,"88":0.05115,"89":0.05115,"90":0.05683,"91":0.08525,"92":0.10229,"93":0.12503,"94":0.06251,"95":0.10798,"96":0.3012,"97":0.28415,"98":0.18754,"99":0.39213,"100":6.69457,"101":24.94837,"102":2.68238,"103":0.00568,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 67 69 104"},F:{"36":0.01705,"48":0.00568,"70":0.00568,"78":0.00568,"79":0.01137,"80":0.01137,"82":0.06251,"83":0.01137,"84":0.01137,"85":2.10839,"86":2.05725,"87":0.07956,_:"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 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02842,"85":0.00568,"89":0.01137,"90":0.00568,"92":0.01137,"94":0.01137,"95":0.00568,"96":0.01705,"97":0.0341,"98":0.01137,"99":0.05115,"100":0.19322,"101":4.4782,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 91 93"},E:{"4":0,"13":0.02842,"14":0.15912,"15":0.05683,_:"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.01705,"12.1":0.0341,"13.1":0.20459,"14.1":0.38644,"15.1":0.15912,"15.2-15.3":0.11934,"15.4":0.85245,"15.5":0.12503},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.00306,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01633,"10.0-10.2":0.00817,"10.3":0.07962,"11.0-11.2":0.00408,"11.3-11.4":0.01123,"12.0-12.1":0.00919,"12.2-12.5":0.14596,"13.0-13.1":0.00919,"13.2":0.00612,"13.3":0.0245,"13.4-13.7":0.1184,"14.0-14.4":0.31642,"14.5-14.8":0.9707,"15.0-15.1":0.35011,"15.2-15.3":0.94212,"15.4":7.18587},P:{"4":0.08305,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.33694,"8.2":0.02038,"9.2":0.07147,"10.1":0.02076,"11.1-11.2":0.02076,"12.0":0.01038,"13.0":0.03114,"14.0":0.06228,"15.0":0.0519,"16.0":1.06921},I:{"0":0,"3":0,"4":0.0022,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0022,"4.2-4.3":0.0044,"4.4":0,"4.4.3-4.4.4":0.04732},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01137,"11":0.29552,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.03885},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.31514},Q:{"10.4":0},O:{"0":0.05612},H:{"0":0.47819},L:{"0":28.90541},S:{"2.5":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 7ba62dcdf5ce6c..0020a643cbbb22 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:{"24":0.04371,"45":0.00874,"48":0.01311,"50":0.04371,"52":0.1049,"60":0.00437,"66":0.04371,"68":0.02186,"72":0.00437,"77":0.00874,"78":0.11802,"80":0.00437,"82":0.01311,"84":0.01311,"88":0.22292,"89":0.01311,"90":0.00874,"91":0.45458,"92":0.01311,"93":0.00874,"94":1.63475,"95":0.01311,"96":0.01748,"97":0.07868,"98":1.49051,"99":3.96013,"100":0.00874,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 79 81 83 85 86 87 101 3.5 3.6"},D:{"38":0.00874,"41":0.00874,"49":0.03934,"53":0.04808,"60":0.08305,"65":0.05245,"67":0.05682,"68":0.04808,"72":0.22729,"74":0.04808,"76":0.01311,"77":0.24041,"78":0.08742,"79":0.15299,"80":0.05245,"81":0.07868,"83":0.06119,"84":0.09179,"85":0.1355,"86":0.23166,"87":0.39776,"88":0.01748,"89":0.06119,"90":0.10053,"91":0.07431,"92":0.04371,"93":0.02186,"94":0.03934,"95":0.07431,"96":0.1967,"97":0.13113,"98":0.55949,"99":2.81055,"100":12.69338,"101":0.3322,"102":0.00437,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 61 62 63 64 66 69 70 71 73 75 103 104"},F:{"42":0.01748,"79":0.01311,"84":0.16173,"85":0.76055,"86":0.00437,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 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.04371,"16":0.06994,"18":0.00874,"89":0.00874,"91":0.01311,"92":0.00874,"94":0.01748,"95":0.01748,"96":0.04808,"97":0.09616,"98":0.16173,"99":0.72122,"100":4.50213,"101":0.07431,_:"12 13 14 17 79 80 81 83 84 85 86 87 88 90 93"},E:{"4":0,"12":0.00437,"13":0.07431,"14":0.28849,"15":0.15299,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00437,"9.1":0.01311,"10.1":0.01311,"11.1":0.0306,"12.1":0.17484,"13.1":0.62942,"14.1":1.12335,"15.1":0.27974,"15.2-15.3":0.36716,"15.4":2.42153},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.0036,"9.3":0.09009,"10.0-10.2":0.0036,"10.3":0.0991,"11.0-11.2":0.01802,"11.3-11.4":0.04865,"12.0-12.1":0.00721,"12.2-12.5":0.39821,"13.0-13.1":0.02703,"13.2":0.01441,"13.3":0.04144,"13.4-13.7":0.30632,"14.0-14.4":0.51713,"14.5-14.8":2.05412,"15.0-15.1":0.82165,"15.2-15.3":6.79482,"15.4":6.76419},P:{"4":0.15469,"5.0-5.4":0.02018,"6.2-6.4":0.02062,"7.2-7.4":0.02062,"8.2":0.02018,"9.2":0.02062,"10.1":0.04036,"11.1-11.2":0.01031,"12.0":0.11344,"13.0":0.07219,"14.0":0.0825,"15.0":0.07219,"16.0":4.59932},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00188,"4.2-4.3":0.00295,"4.4":0,"4.4.3-4.4.4":0.01769},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.10086,"11":0.28816,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":25.00335},S:{"2.5":0},R:{_:"0"},M:{"0":0.8836},Q:{"10.4":0.01688},O:{"0":0.7035},H:{"0":0.68734}}; +module.exports={C:{"24":0.036,"45":0.009,"48":0.009,"50":0.036,"51":0.0045,"52":0.108,"60":0.0135,"61":0.009,"66":0.0405,"68":0.027,"77":0.009,"78":0.126,"84":0.108,"87":0.0045,"88":0.1755,"89":0.0225,"91":0.6255,"92":0.009,"93":0.0045,"94":1.395,"95":0.0135,"96":0.018,"97":0.045,"98":0.0315,"99":1.0125,"100":3.9735,"101":0.018,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 53 54 55 56 57 58 59 62 63 64 65 67 69 70 71 72 73 74 75 76 79 80 81 82 83 85 86 90 102 103 3.5 3.6"},D:{"38":0.009,"49":0.018,"53":0.0225,"60":0.0765,"62":0.009,"65":0.0405,"67":0.0585,"68":0.0405,"72":0.2295,"74":0.0495,"75":0.018,"76":0.0045,"77":0.009,"78":0.117,"79":0.1665,"80":0.054,"81":0.054,"83":0.054,"84":0.135,"85":0.1485,"86":0.2115,"87":0.5895,"88":0.009,"89":0.0315,"90":0.0945,"91":0.0945,"92":0.0315,"93":0.0225,"94":0.036,"95":0.045,"96":0.108,"97":0.099,"98":0.0855,"99":0.2925,"100":3.1545,"101":12.1455,"102":0.981,"103":0.018,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 61 63 64 66 69 70 71 73 104"},F:{"42":0.0045,"69":0.009,"73":0.009,"75":0.0045,"79":0.0045,"80":0.0045,"82":0.0045,"85":0.6075,"86":0.6525,"87":0.0405,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 74 76 77 78 81 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.036,"16":0.0405,"18":0.0045,"85":0.009,"86":0.0045,"90":0.009,"91":0.0135,"92":0.009,"96":0.0225,"97":0.0135,"98":0.1845,"99":0.072,"100":0.315,"101":4.878,_:"12 13 14 17 79 80 81 83 84 87 88 89 93 94 95"},E:{"4":0,"13":0.594,"14":0.2655,"15":0.1395,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.0135,"10.1":0.018,"11.1":0.0315,"12.1":0.189,"13.1":0.729,"14.1":0.9585,"15.1":0.324,"15.2-15.3":0.2115,"15.4":4.248,"15.5":0.6165},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.03807,"5.0-5.1":0,"6.0-6.1":0.0019,"7.0-7.1":0.0019,"8.1-8.4":0,"9.0-9.2":0.12373,"9.3":0.07805,"10.0-10.2":0,"10.3":0.09327,"11.0-11.2":0.02855,"11.3-11.4":0.04378,"12.0-12.1":0.00571,"12.2-12.5":0.33503,"13.0-13.1":0.02094,"13.2":0.00571,"13.3":0.04188,"13.4-13.7":0.34835,"14.0-14.4":0.4835,"14.5-14.8":1.73033,"15.0-15.1":0.57107,"15.2-15.3":1.64277,"15.4":13.4334},P:{"4":0.13327,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.01025,"8.2":0.02038,"9.2":0.07147,"10.1":0.02076,"11.1-11.2":0.03076,"12.0":0.04101,"13.0":0.06151,"14.0":0.06151,"15.0":0.05126,"16.0":1.42501},I:{"0":0,"3":0.00836,"4":0,"2.1":0.00386,"2.2":0.01222,"2.3":0,"4.1":0.01029,"4.2-4.3":0.01222,"4.4":0,"4.4.3-4.4.4":0.05208},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.07792,"11":0.27758,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.69313},Q:{"10.4":0.44558},O:{"0":0.79765},H:{"0":0.60413},L:{"0":22.03087},S:{"2.5":0}}; 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 587144ed5bfa09..10c97927803289 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:{"52":0.11719,"55":0.01234,"56":0.03084,"60":0.00617,"62":0.0185,"68":0.01234,"78":0.04934,"79":0.0185,"80":0.0185,"81":0.02467,"84":0.0185,"85":0.00617,"87":0.03701,"88":0.04934,"89":0.0185,"90":0.0185,"91":0.09869,"93":0.01234,"94":0.01234,"95":0.04318,"96":0.03084,"97":0.06168,"98":1.34462,"99":3.70697,"100":0.02467,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 57 58 59 61 63 64 65 66 67 69 70 71 72 73 74 75 76 77 82 83 86 92 101 3.5 3.6"},D:{"38":0.01234,"49":0.09869,"53":0.00617,"63":0.00617,"68":0.00617,"70":0.00617,"71":0.01234,"72":0.00617,"74":0.01234,"76":0.00617,"77":0.00617,"78":0.02467,"79":0.1542,"80":0.03084,"81":0.02467,"83":0.0185,"84":0.04318,"85":0.06785,"86":0.11102,"87":0.10486,"88":0.02467,"89":0.04318,"90":0.07402,"91":0.03701,"92":0.06168,"93":0.08018,"94":0.06785,"95":0.12953,"96":0.22205,"97":0.23438,"98":0.69082,"99":8.38231,"100":32.8446,"101":0.39475,"102":0.01234,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 69 73 75 103 104"},F:{"77":0.00617,"82":0.00617,"83":0.01234,"84":0.48727,"85":1.72087,"86":0.0185,"87":0.00617,_:"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 78 79 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00617,"18":0.0185,"84":0.00617,"89":0.00617,"92":0.01234,"96":0.02467,"97":0.1357,"98":0.03701,"99":0.67231,"100":4.27442,"101":0.04934,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.01234,"14":0.17887,"15":0.05551,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00617,"10.1":0.00617,"11.1":0.01234,"12.1":0.04934,"13.1":0.16037,"14.1":0.35158,"15.1":0.16037,"15.2-15.3":0.18504,"15.4":0.88202},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.00101,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01012,"10.0-10.2":0.00101,"10.3":0.0253,"11.0-11.2":0.01923,"11.3-11.4":0.00708,"12.0-12.1":0.00607,"12.2-12.5":0.18218,"13.0-13.1":0.01113,"13.2":0.00708,"13.3":0.02125,"13.4-13.7":0.13866,"14.0-14.4":0.417,"14.5-14.8":1.22064,"15.0-15.1":0.69736,"15.2-15.3":3.60017,"15.4":3.74996},P:{"4":0.06243,"5.0-5.4":0.01029,"6.2-6.4":0.02059,"7.2-7.4":0.28821,"8.2":0.01014,"9.2":0.07205,"10.1":0.03122,"11.1-11.2":0.03122,"12.0":0.01041,"13.0":0.09365,"14.0":0.08324,"15.0":0.08324,"16.0":3.21528},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.04492},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10486,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":23.56404},S:{"2.5":0},R:{_:"0"},M:{"0":0.26831},Q:{"10.4":0},O:{"0":0.13799},H:{"0":0.43546}}; +module.exports={C:{"52":0.06779,"55":0.01356,"56":0.02034,"68":0.00678,"75":0.00678,"76":0.01356,"78":0.02712,"79":0.01356,"81":0.01356,"82":0.00678,"84":0.01356,"86":0.00678,"87":0.02034,"88":0.0339,"89":0.01356,"90":0.01356,"91":0.07457,"92":0.00678,"93":0.02034,"94":0.01356,"95":0.02712,"96":0.02712,"97":0.02034,"98":0.06101,"99":0.73213,"100":3.38272,"101":0.02034,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 77 80 83 85 102 103 3.5 3.6"},D:{"38":0.00678,"49":0.07457,"65":0.01356,"70":0.00678,"71":0.00678,"74":0.01356,"76":0.01356,"78":0.00678,"79":0.15592,"80":0.02034,"81":0.05423,"83":0.07457,"84":0.05423,"85":0.05423,"86":0.12202,"87":0.20337,"88":0.02034,"89":0.04745,"90":0.06101,"91":0.06779,"92":0.08813,"93":0.06779,"94":0.04745,"95":0.04067,"96":0.14914,"97":0.37962,"98":0.42708,"99":0.49487,"100":8.07379,"101":35.57619,"102":4.66395,"103":0.02712,"104":0.00678,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 72 73 75 77"},F:{"77":0.02034,"78":0.01356,"79":0.01356,"80":0.01356,"81":0.01356,"85":0.90839,"86":1.05075,"87":0.04745,_:"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 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:{"18":0.01356,"85":0.00678,"89":0.01356,"92":0.00678,"94":0.11524,"95":0.00678,"96":0.02712,"97":0.06101,"98":0.02712,"99":0.06779,"100":0.2576,"101":5.77571,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 90 91 93"},E:{"4":0,"13":0.01356,"14":0.11524,"15":0.04067,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00678,"11.1":0.01356,"12.1":0.05423,"13.1":0.15592,"14.1":0.25082,"15.1":0.08135,"15.2-15.3":0.1288,"15.4":1.01685,"15.5":0.13558},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.00085,"9.0-9.2":0.00169,"9.3":0.00847,"10.0-10.2":0.00254,"10.3":0.01525,"11.0-11.2":0.01017,"11.3-11.4":0.00424,"12.0-12.1":0.00424,"12.2-12.5":0.14656,"13.0-13.1":0.00678,"13.2":0.00762,"13.3":0.01948,"13.4-13.7":0.10844,"14.0-14.4":0.30328,"14.5-14.8":0.79548,"15.0-15.1":0.37021,"15.2-15.3":0.76752,"15.4":5.89197},P:{"4":0.04197,"5.0-5.4":0.01018,"6.2-6.4":0.03073,"7.2-7.4":0.2766,"8.2":0.03053,"9.2":0.05122,"10.1":0.02036,"11.1-11.2":0.02099,"12.0":0.01049,"13.0":0.04197,"14.0":0.08394,"15.0":0.05246,"16.0":1.11224},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00455,"4.2-4.3":0.00303,"4.4":0,"4.4.3-4.4.4":0.04396},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06779,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00644},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.27056},Q:{"10.4":0},O:{"0":0.08375},H:{"0":0.30799},L:{"0":20.20971},S:{"2.5":0}}; 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 ee0c2e24c76b14..d7351cb5df28af 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:{"15":0.00144,"26":0.00288,"30":0.00144,"34":0.01009,"35":0.00288,"37":0.00144,"39":0.00432,"43":0.00144,"44":0.00288,"45":0.01873,"47":0.00721,"52":0.01153,"56":0.00144,"61":0.00432,"70":0.00288,"72":0.00432,"78":0.00432,"79":0.00432,"81":0.00432,"82":0.00144,"84":0.00144,"88":0.00432,"89":0.00144,"91":0.00865,"94":0.00576,"95":0.01153,"96":0.00721,"97":0.01009,"98":0.21039,"99":0.55623,"100":0.01585,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 27 28 29 31 32 33 36 38 40 41 42 46 48 49 50 51 53 54 55 57 58 59 60 62 63 64 65 66 67 68 69 71 73 74 75 76 77 80 83 85 86 87 90 92 93 101 3.5 3.6"},D:{"11":0.00432,"25":0.02017,"26":0.00144,"31":0.00288,"32":0.00432,"33":0.01441,"37":0.00288,"38":0.00288,"39":0.00144,"40":0.00144,"43":0.01009,"46":0.00144,"48":0.00144,"49":0.00721,"50":0.00288,"54":0.00144,"55":0.00865,"56":0.00432,"57":0.01153,"58":0.00576,"60":0.00576,"61":0.00144,"63":0.01153,"64":0.00432,"65":0.00865,"66":0.00144,"67":0.00576,"68":0.00288,"69":0.00432,"70":0.00432,"71":0.01009,"72":0.00144,"73":0.00865,"74":0.00432,"75":0.00144,"76":0.00288,"77":0.00288,"78":0.01009,"79":0.01585,"80":0.01153,"81":0.02162,"83":0.04035,"84":0.0317,"85":0.02594,"86":0.09943,"87":0.06485,"88":0.03026,"89":0.03891,"90":0.02594,"91":0.03891,"92":0.04323,"93":0.01153,"94":0.03458,"95":0.0245,"96":0.08934,"97":0.08502,"98":0.14266,"99":1.34157,"100":6.81017,"101":0.17148,"102":0.0317,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 34 35 36 41 42 44 45 47 51 52 53 59 62 103 104"},F:{"70":0.00144,"73":0.00144,"78":0.00432,"79":0.00432,"80":0.00144,"82":0.01729,"83":0.01729,"84":0.1124,"85":0.40492,"86":0.00576,_:"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 71 72 74 75 76 77 81 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.00288,"14":0.00432,"15":0.00144,"16":0.00288,"17":0.00721,"18":0.03603,"84":0.01441,"85":0.00865,"86":0.00721,"87":0.00721,"88":0.00721,"89":0.01441,"90":0.01009,"91":0.01009,"92":0.02306,"93":0.00432,"94":0.00721,"95":0.01009,"96":0.01441,"97":0.03891,"98":0.02882,"99":0.21759,"100":0.93665,"101":0.01153,_:"13 79 80 81 83"},E:{"4":0,"13":0.01729,"14":0.09222,"15":0.01441,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00576,"10.1":0.01441,"11.1":0.00288,"12.1":0.00288,"13.1":0.01729,"14.1":0.04899,"15.1":0.02306,"15.2-15.3":0.02882,"15.4":0.12249},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.00978,"8.1-8.4":0.0021,"9.0-9.2":0.0028,"9.3":0.0622,"10.0-10.2":0.0021,"10.3":0.05312,"11.0-11.2":0.02027,"11.3-11.4":0.02935,"12.0-12.1":0.03494,"12.2-12.5":0.63739,"13.0-13.1":0.03774,"13.2":0.01048,"13.3":0.06989,"13.4-13.7":0.13838,"14.0-14.4":0.58777,"14.5-14.8":0.96168,"15.0-15.1":0.63879,"15.2-15.3":1.84018,"15.4":1.84438},P:{"4":0.37334,"5.0-5.4":0.02018,"6.2-6.4":0.09081,"7.2-7.4":0.89802,"8.2":0.02018,"9.2":0.13117,"10.1":0.04036,"11.1-11.2":0.40361,"12.0":0.11099,"13.0":0.34307,"14.0":0.63568,"15.0":0.34307,"16.0":2.84542},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00039,"4.2-4.3":0.00148,"4.4":0,"4.4.3-4.4.4":0.0238},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00432,"9":0.00288,"10":0.00144,"11":0.07781,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":70.19268},S:{"2.5":0},R:{_:"0"},M:{"0":0.06846},Q:{"10.4":0},O:{"0":0.31665},H:{"0":2.51167}}; +module.exports={C:{"30":0.00223,"31":0.00112,"34":0.00558,"37":0.00223,"42":0.00112,"43":0.00223,"45":0.00893,"47":0.00335,"52":0.00446,"61":0.00223,"70":0.00112,"72":0.00223,"78":0.00223,"84":0.00223,"87":0.00112,"88":0.00223,"89":0.00112,"91":0.00446,"93":0.00112,"94":0.0067,"95":0.00335,"96":0.00558,"97":0.00558,"98":0.01339,"99":0.0904,"100":0.44417,"101":0.01339,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 35 36 38 39 40 41 44 46 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 71 73 74 75 76 77 79 80 81 82 83 85 86 90 92 102 103 3.5 3.6"},D:{"25":0.00558,"31":0.00112,"32":0.00335,"33":0.0067,"37":0.00223,"38":0.00335,"39":0.00223,"40":0.00112,"43":0.01004,"49":0.00893,"50":0.00223,"53":0.00335,"54":0.00223,"55":0.00335,"56":0.00335,"57":0.00112,"58":0.00335,"60":0.00335,"61":0.00112,"62":0.00223,"63":0.01451,"64":0.00335,"65":0.00893,"66":0.00223,"67":0.00223,"68":0.00335,"69":0.00558,"70":0.00223,"71":0.00446,"72":0.00223,"73":0.00335,"74":0.00335,"75":0.00223,"76":0.00558,"77":0.00335,"78":0.00781,"79":0.02455,"80":0.0067,"81":0.01004,"83":0.0346,"84":0.0279,"85":0.01451,"86":0.06584,"87":0.05245,"88":0.0279,"89":0.0212,"90":0.01562,"91":0.0212,"92":0.02567,"93":0.01339,"94":0.02678,"95":0.01451,"96":0.05692,"97":0.04352,"98":0.077,"99":0.14062,"100":1.0948,"101":4.97624,"102":0.48323,"103":0.0067,"104":0.00223,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 34 35 36 41 42 44 45 46 47 48 51 52 59"},F:{"28":0.00112,"75":0.00223,"79":0.0067,"80":0.00112,"81":0.00223,"82":0.01116,"83":0.00558,"84":0.02567,"85":0.18414,"86":0.22543,"87":0.0212,_:"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 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.00335,"13":0.00112,"14":0.00223,"17":0.00335,"18":0.04129,"84":0.01116,"85":0.00335,"86":0.00335,"87":0.00223,"88":0.00335,"89":0.00893,"90":0.00446,"91":0.00558,"92":0.01004,"93":0.00223,"94":0.00781,"95":0.00223,"96":0.0067,"97":0.01116,"98":0.00781,"99":0.0279,"100":0.05692,"101":0.68857,_:"15 16 79 80 81 83"},E:{"4":0,"12":0.00112,"13":0.04018,"14":0.05692,"15":0.03013,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00446,"10.1":0.00335,"11.1":0.00335,"12.1":0.00223,"13.1":0.03125,"14.1":0.05468,"15.1":0.01674,"15.2-15.3":0.01674,"15.4":0.11941,"15.5":0.0212},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00111,"6.0-6.1":0,"7.0-7.1":0.0083,"8.1-8.4":0.00387,"9.0-9.2":0.00387,"9.3":0.0498,"10.0-10.2":0.00221,"10.3":0.0332,"11.0-11.2":0.02822,"11.3-11.4":0.01937,"12.0-12.1":0.02213,"12.2-12.5":0.44325,"13.0-13.1":0.03652,"13.2":0.00719,"13.3":0.05921,"13.4-13.7":0.0985,"14.0-14.4":0.46815,"14.5-14.8":0.68341,"15.0-15.1":0.37574,"15.2-15.3":0.69724,"15.4":2.48517},P:{"4":0.19399,"5.0-5.4":0.07349,"6.2-6.4":0.03063,"7.2-7.4":0.33694,"8.2":0.02038,"9.2":0.07147,"10.1":0.02042,"11.1-11.2":0.17357,"12.0":0.03063,"13.0":0.14294,"14.0":0.25526,"15.0":0.11231,"16.0":1.01081},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00073,"4.2-4.3":0.0066,"4.4":0,"4.4.3-4.4.4":0.09929},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00361,"11":0.04214,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.07108},Q:{"10.4":0},O:{"0":0.32875},H:{"0":2.48988},L:{"0":77.83746},S:{"2.5":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 79d807535d3a1c..a6e7a545b3ac82 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.30349,"15":0.31072,"18":0.31794,"21":0.31433,"23":0.31072,"25":0.60337,"29":0.00361,"30":0.31433,"47":0.00361,"50":0.00361,"51":0.31433,"52":0.09394,"55":0.01084,"65":0.04697,"66":0.00361,"72":0.00361,"78":0.02529,"79":0.00361,"80":0.00361,"81":0.01445,"83":0.00361,"84":0.00723,"87":0.00723,"88":0.00361,"89":0.04336,"91":0.05781,"93":0.03974,"94":0.00723,"95":0.01084,"96":0.00723,"97":0.02168,"98":0.41911,"99":1.14532,"100":0.02529,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 28 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 53 54 56 57 58 59 60 61 62 63 64 67 68 69 70 71 73 74 75 76 77 82 85 86 90 92 101 3.5 3.6"},D:{"19":0.31433,"22":0.00361,"24":0.92493,"30":0.31072,"33":0.31794,"34":0.00361,"35":0.63228,"38":0.01084,"43":0.00723,"49":0.07587,"53":0.01084,"54":0.30349,"55":0.30711,"56":1.5572,"63":0.01445,"64":0.00723,"65":0.01084,"66":0.00361,"67":0.79486,"68":0.01445,"69":0.01445,"70":0.00723,"72":0.00723,"73":0.00723,"74":0.00723,"75":0.0542,"76":0.00361,"77":0.00361,"78":0.01084,"79":0.0831,"80":0.01445,"81":0.01807,"83":0.04697,"84":0.04697,"85":0.04336,"86":0.0831,"87":0.10116,"88":0.02529,"89":0.03613,"90":0.06142,"91":0.05781,"92":0.04336,"93":0.0542,"94":0.02529,"95":0.04336,"96":0.10478,"97":0.10839,"98":0.21678,"99":2.52187,"100":12.81531,"101":0.18065,"102":0.01084,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 23 25 26 27 28 29 31 32 36 37 39 40 41 42 44 45 46 47 48 50 51 52 57 58 59 60 61 62 71 103 104"},F:{"28":0.01445,"36":0.00361,"40":0.00723,"43":0.31794,"46":0.00723,"82":0.00361,"83":0.00723,"84":0.20594,"85":0.84906,"86":0.01445,_:"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 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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.31794},B:{"17":0.00361,"18":0.01445,"83":0.00361,"84":0.00723,"85":0.00361,"86":0.00723,"89":0.00723,"90":0.00361,"91":0.00361,"92":0.01445,"95":0.00361,"96":0.01084,"97":0.02168,"98":0.01807,"99":0.23485,"100":1.43436,"101":0.02168,_:"12 13 14 15 16 79 80 81 87 88 93 94"},E:{"4":0,"5":0.30711,"13":0.01445,"14":0.05058,"15":0.01807,_:"0 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00361,"11.1":0.01084,"12.1":0.01445,"13.1":0.06503,"14.1":0.10116,"15.1":0.0289,"15.2-15.3":0.0289,"15.4":0.10478},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01173,"6.0-6.1":5.77813,"7.0-7.1":0.05606,"8.1-8.4":0.00261,"9.0-9.2":0.0013,"9.3":0.12646,"10.0-10.2":0.82917,"10.3":0.11212,"11.0-11.2":0.18513,"11.3-11.4":0.13559,"12.0-12.1":0.21772,"12.2-12.5":1.29982,"13.0-13.1":0.01564,"13.2":0.00782,"13.3":0.04563,"13.4-13.7":0.12516,"14.0-14.4":0.39764,"14.5-14.8":0.81222,"15.0-15.1":0.39633,"15.2-15.3":1.19291,"15.4":1.28026},P:{"4":0.79219,"5.0-5.4":0.03059,"6.2-6.4":0.02085,"7.2-7.4":0.26059,"8.2":0.01006,"9.2":0.09381,"10.1":0.01042,"11.1-11.2":0.15635,"12.0":0.04169,"13.0":0.18762,"14.0":0.14593,"15.0":0.12508,"16.0":2.06387},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02189,"4.2-4.3":0.19134,"4.4":0,"4.4.3-4.4.4":0.50212},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.62505,"9":0.64673,"10":0.63589,"11":0.04697,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.00879,_:"11"},L:{"0":46.39927},S:{"2.5":0},R:{_:"0"},M:{"0":0.13413},Q:{"10.4":0},O:{"0":0.08303},H:{"0":0.34467}}; +module.exports={C:{"50":0.00366,"52":0.14266,"55":0.01097,"56":0.07682,"64":0.00366,"65":0.05853,"66":0.00366,"68":0.00366,"72":0.00732,"78":0.02561,"79":0.00732,"80":0.01097,"81":0.01097,"82":0.01097,"83":0.00732,"84":0.01097,"87":0.00366,"88":0.00732,"89":0.0695,"90":0.00366,"91":0.07316,"93":0.04755,"94":0.00732,"95":0.01097,"96":0.00732,"97":0.01463,"98":0.02926,"99":0.3658,"100":1.66073,"101":0.03292,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 57 58 59 60 61 62 63 67 69 70 71 73 74 75 76 77 85 86 92 102 103 3.5 3.6"},D:{"11":0.00366,"22":0.00732,"34":0.00732,"38":0.01463,"41":0.00366,"43":0.00732,"48":0.00366,"49":0.08413,"53":0.01463,"55":0.00732,"56":0.01463,"58":0.00732,"62":0.00366,"63":0.01463,"64":0.01097,"65":0.01097,"66":0.00732,"67":4.25425,"68":0.02195,"69":0.02195,"70":0.01463,"71":0.00366,"72":0.01463,"73":0.00732,"74":0.00732,"75":0.04024,"76":0.01097,"77":0.00732,"78":0.01097,"79":0.14266,"80":0.02561,"81":0.02926,"83":0.06219,"84":0.07316,"85":0.08779,"86":0.14266,"87":0.15364,"88":0.03292,"89":0.03658,"90":0.2963,"91":0.08048,"92":0.05121,"93":0.02926,"94":0.02926,"95":0.0439,"96":0.11706,"97":0.13535,"98":0.139,"99":0.2524,"100":3.54826,"101":15.67087,"102":1.70463,"103":0.01097,"104":0.00366,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 44 45 46 47 50 51 52 54 57 59 60 61"},F:{"28":0.02561,"36":0.00366,"40":0.00732,"46":0.01097,"68":0.00366,"69":0.00732,"72":0.00732,"79":0.00366,"82":0.00366,"83":0.00732,"84":0.01829,"85":0.68039,"86":0.75721,"87":0.0439,_:"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 70 71 73 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00366,"17":0.00732,"18":0.02195,"84":0.01829,"89":0.00732,"92":0.01829,"96":0.01097,"97":0.01463,"98":0.01097,"99":0.03658,"100":0.10974,"101":2.01556,_:"12 13 14 15 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"12":0.00732,"13":0.01463,"14":0.06584,"15":0.01829,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00732,"10.1":0.00366,"11.1":0.01097,"12.1":0.02561,"13.1":0.09511,"14.1":0.12803,"15.1":0.03292,"15.2-15.3":0.03658,"15.4":0.22314,"15.5":0.05121},G:{"8":0.00152,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01819,"6.0-6.1":0.00076,"7.0-7.1":0.07956,"8.1-8.4":0.00606,"9.0-9.2":0.00076,"9.3":0.10835,"10.0-10.2":0.03258,"10.3":0.09926,"11.0-11.2":0.13639,"11.3-11.4":0.09471,"12.0-12.1":0.15079,"12.2-12.5":1.01534,"13.0-13.1":0.0197,"13.2":0.00909,"13.3":0.05607,"13.4-13.7":0.14245,"14.0-14.4":0.47357,"14.5-14.8":0.95624,"15.0-15.1":0.40083,"15.2-15.3":0.64633,"15.4":3.13013},P:{"4":0.9642,"5.0-5.4":0.0204,"6.2-6.4":0.03077,"7.2-7.4":0.25644,"8.2":0.01019,"9.2":0.0718,"10.1":0.01026,"11.1-11.2":0.16412,"12.0":0.05129,"13.0":0.21541,"14.0":0.1436,"15.0":0.12309,"16.0":1.22064},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00335,"4.2-4.3":0.00503,"4.4":0,"4.4.3-4.4.4":0.04235},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10974,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.15855},Q:{"10.4":0},O:{"0":0.10147},H:{"0":0.40829},L:{"0":51.31504},S:{"2.5":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 07a2e506246540..41de155229b54b 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:{"52":0.00623,"65":0.01246,"67":0.00623,"72":0.00623,"75":0.03115,"78":0.64169,"80":0.01869,"82":0.01246,"84":0.01869,"91":0.16198,"94":0.08722,"95":0.04984,"96":0.01869,"97":0.01246,"98":1.23354,"99":3.32059,"100":0.01246,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 73 74 76 77 79 81 83 85 86 87 88 89 90 92 93 101 3.5 3.6"},D:{"18":3.20222,"65":0.01246,"79":0.05607,"80":0.03115,"81":0.04361,"83":0.11837,"84":0.02492,"85":0.18067,"86":0.04984,"87":0.65415,"89":0.08722,"90":0.03115,"92":0.03115,"93":0.06853,"94":0.41118,"95":0.01869,"96":0.34265,"97":0.05607,"98":1.6821,"99":5.87489,"100":20.88296,"101":0.98434,"102":0.04361,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 88 91 103 104"},F:{"82":0.01246,"83":0.01246,"84":0.04361,"85":0.24297,"86":0.00623,_:"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 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.01869,"95":0.00623,"97":0.02492,"98":0.03738,"99":0.72268,"100":3.78784,"101":0.04361,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96"},E:{"4":0,"12":0.00623,"13":0.0623,"14":1.20239,"15":0.19313,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.0623,"12.1":0.21805,"13.1":1.02795,"14.1":2.87203,"15.1":0.27412,"15.2-15.3":0.61054,"15.4":5.12729},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.01196,"9.0-9.2":0.00718,"9.3":0.04067,"10.0-10.2":0.02871,"10.3":0.03589,"11.0-11.2":0,"11.3-11.4":0.0957,"12.0-12.1":0.03589,"12.2-12.5":0.34213,"13.0-13.1":0.06699,"13.2":0.04546,"13.3":0.14594,"13.4-13.7":0.36366,"14.0-14.4":0.5431,"14.5-14.8":2.82079,"15.0-15.1":1.44509,"15.2-15.3":10.10124,"15.4":7.78767},P:{"4":0.04201,"5.0-5.4":0.06035,"6.2-6.4":0.01062,"7.2-7.4":0.05252,"8.2":0.01006,"9.2":0.03061,"10.1":0.09052,"11.1-11.2":0.04299,"12.0":0.02101,"13.0":0.05252,"14.0":0.09453,"15.0":0.06302,"16.0":1.69828},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.1093},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05607,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00879,_:"11"},L:{"0":11.56826},S:{"2.5":0},R:{_:"0"},M:{"0":0.34675},Q:{"10.4":0.00377},O:{"0":0.00377},H:{"0":0.04282}}; +module.exports={C:{"48":0.00632,"52":0.01265,"72":0.00632,"78":0.4679,"91":0.14543,"94":0.23395,"95":0.21498,"96":0.01265,"97":0.03794,"98":0.08852,"99":0.73347,"100":2.5292,"101":0.01897,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 102 103 3.5 3.6"},D:{"18":1.90955,"53":0.00632,"62":0.01897,"77":0.25924,"84":0.00632,"86":0.10749,"87":0.35409,"88":0.06955,"89":0.10117,"90":0.03162,"92":0.01897,"93":0.02529,"94":0.33512,"95":0.09485,"96":0.12646,"97":0.02529,"98":0.54378,"99":1.22034,"100":6.05743,"101":21.09353,"102":1.17608,"103":0.00632,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 83 85 91 104"},F:{"85":0.43629,"86":0.86625,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.10117,"92":0.00632,"97":0.00632,"98":0.00632,"99":0.01897,"100":0.3288,"101":5.87407,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"12":0.01265,"13":0.00632,"14":1.03065,"15":0.12646,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02529,"11.1":0.05058,"12.1":0.15175,"13.1":1.03697,"14.1":1.1824,"15.1":0.25292,"15.2-15.3":0.37306,"15.4":8.98498,"15.5":1.35312},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00473,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00946,"10.0-10.2":0.02838,"10.3":0.11351,"11.0-11.2":0,"11.3-11.4":0.03074,"12.0-12.1":0.02601,"12.2-12.5":0.52025,"13.0-13.1":0.00946,"13.2":0.00946,"13.3":0.05439,"13.4-13.7":0.15371,"14.0-14.4":0.31215,"14.5-14.8":2.23472,"15.0-15.1":1.03341,"15.2-15.3":3.39583,"15.4":15.7069},P:{"4":0.05169,"5.0-5.4":0.04028,"6.2-6.4":0.0705,"7.2-7.4":0.03101,"8.2":0.01019,"9.2":0.01034,"10.1":0.06042,"11.1-11.2":0.04227,"12.0":0.02068,"13.0":0.05169,"14.0":0.07237,"15.0":0.03101,"16.0":0.52844},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.01103},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00632,"11":0.07588,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.21327},Q:{"10.4":0},O:{"0":0.00735},H:{"0":0.10443},L:{"0":11.13017},S:{"2.5":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 1e41a03d575fc6..00742970c2bd0b 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:{"38":0.0045,"51":0.01351,"52":0.12611,"53":0.01351,"54":0.00901,"55":0.01351,"56":0.00901,"57":0.00901,"77":0.0045,"78":0.02252,"80":0.01351,"82":0.00901,"85":0.0045,"86":0.0045,"87":0.15314,"88":0.01351,"89":0.01351,"90":0.0045,"91":0.1171,"93":0.02252,"94":0.04954,"95":0.01351,"96":0.23421,"97":0.01802,"98":0.49544,"99":1.52686,"100":0.00901,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 81 83 84 92 101 3.5","3.6":0.00901},D:{"39":0.0045,"41":0.00901,"42":0.0045,"43":0.0045,"44":0.0045,"45":0.0045,"46":0.0045,"47":0.0045,"48":0.0045,"49":0.08558,"53":0.01802,"55":0.0045,"56":0.0045,"57":0.0045,"58":0.00901,"59":0.27925,"60":0.00901,"61":0.0045,"62":0.0045,"63":0.01351,"64":0.02252,"65":0.00901,"66":0.0045,"67":0.04954,"68":0.00901,"69":0.01351,"70":0.01351,"71":0.02252,"72":0.00901,"73":0.0045,"74":0.03603,"75":0.01351,"76":0.04504,"77":0.00901,"78":0.01351,"79":0.04054,"80":0.31528,"81":0.01351,"83":0.07657,"84":0.07206,"85":0.05405,"86":0.46842,"87":0.09458,"88":0.02252,"89":0.02702,"90":0.27024,"91":0.08107,"92":0.1171,"93":0.02702,"94":0.21169,"95":0.02252,"96":0.14863,"97":0.23871,"98":0.69362,"99":5.58046,"100":23.29919,"101":0.31528,"102":0.00901,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 50 51 52 54 103 104"},F:{"70":0.03603,"82":0.0045,"83":0.00901,"84":0.52697,"85":2.01779,"86":0.05855,_:"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 71 72 73 74 75 76 77 78 79 80 81 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.0045,"18":0.00901,"84":0.01802,"85":0.01351,"86":0.01802,"87":0.01802,"89":0.0045,"92":0.00901,"97":0.00901,"98":0.01351,"99":0.21169,"100":1.26562,"101":0.01351,_:"12 14 15 16 17 79 80 81 83 88 90 91 93 94 95 96"},E:{"4":0,"13":0.03153,"14":0.29726,"15":0.03153,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02702,"11.1":0.0045,"12.1":0.00901,"13.1":0.09458,"14.1":0.26123,"15.1":0.08558,"15.2-15.3":0.13062,"15.4":0.34681},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.00298,"8.1-8.4":0,"9.0-9.2":0.00496,"9.3":0.04961,"10.0-10.2":0.00992,"10.3":0.04365,"11.0-11.2":0.01091,"11.3-11.4":0.01091,"12.0-12.1":0.0129,"12.2-12.5":0.30756,"13.0-13.1":0.01191,"13.2":0.00695,"13.3":0.03076,"13.4-13.7":0.14585,"14.0-14.4":0.4296,"14.5-14.8":1.32749,"15.0-15.1":0.60025,"15.2-15.3":3.38718,"15.4":3.52509},P:{"4":0.04201,"5.0-5.4":0.06035,"6.2-6.4":0.01062,"7.2-7.4":0.05252,"8.2":0.01006,"9.2":0.03061,"10.1":0.09052,"11.1-11.2":0.05252,"12.0":0.02101,"13.0":0.05252,"14.0":0.09453,"15.0":0.06302,"16.0":2.11112},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00275,"4.2-4.3":0.00618,"4.4":0,"4.4.3-4.4.4":0.02954},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00901,"9":0.00901,"11":0.08558,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00879,_:"11"},L:{"0":42.96376},S:{"2.5":0},R:{_:"0"},M:{"0":0.13738},Q:{"10.4":0},O:{"0":0.06594},H:{"0":0.27572}}; +module.exports={C:{"51":0.01007,"52":0.08053,"53":0.01007,"55":0.01007,"56":0.00503,"57":0.00503,"78":0.0151,"87":0.03523,"88":0.02013,"89":0.01007,"91":0.11576,"93":0.01007,"94":0.0151,"95":0.01007,"96":0.14596,"97":0.0151,"98":0.02013,"99":9.93011,"100":1.39414,"101":0.01007,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 54 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 90 92 102 103 3.5","3.6":0.0151},D:{"38":0.01007,"49":0.08556,"51":0.01007,"53":0.03523,"58":0.00503,"59":0.09563,"63":0.00503,"64":0.0151,"65":0.00503,"67":0.02517,"69":0.0151,"70":0.0151,"71":0.0151,"73":0.01007,"74":0.0755,"75":0.01007,"76":0.0302,"78":0.01007,"79":0.04026,"80":0.11073,"81":0.0151,"83":0.06543,"84":0.0302,"85":0.06543,"86":0.20635,"87":0.08053,"88":0.02013,"89":0.02013,"90":0.11576,"91":0.06543,"92":0.0453,"93":0.02013,"94":0.10569,"95":0.02517,"96":0.09059,"97":0.11576,"98":0.39257,"99":0.32211,"100":5.16889,"101":19.85015,"102":1.82698,"103":0.01007,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 54 55 56 57 60 61 62 66 68 72 77 104"},F:{"68":0.02013,"70":0.03523,"82":0.01007,"83":0.0151,"84":0.02517,"85":1.21295,"86":2.06353,"87":0.0604,_:"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 71 72 73 74 75 76 77 78 79 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01007,"84":0.01007,"85":0.04026,"86":0.01007,"98":0.02013,"99":0.01007,"100":0.05536,"101":1.29851,_:"12 13 14 15 16 17 79 80 81 83 87 88 89 90 91 92 93 94 95 96 97"},E:{"4":0,"13":0.02517,"14":0.15099,"15":0.0151,_:"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","12.1":0.0151,"13.1":0.07046,"14.1":0.16609,"15.1":0.05536,"15.2-15.3":0.08053,"15.4":0.4429,"15.5":0.07046},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.00191,"7.0-7.1":0.00766,"8.1-8.4":0.00096,"9.0-9.2":0.00383,"9.3":0.02968,"10.0-10.2":0.00479,"10.3":0.02776,"11.0-11.2":0.00766,"11.3-11.4":0.00957,"12.0-12.1":0.0067,"12.2-12.5":0.25274,"13.0-13.1":0.0134,"13.2":0.01053,"13.3":0.03063,"13.4-13.7":0.11775,"14.0-14.4":0.34177,"14.5-14.8":1.04062,"15.0-15.1":0.35326,"15.2-15.3":0.90276,"15.4":6.4055},P:{"4":0.05169,"5.0-5.4":0.04028,"6.2-6.4":0.0705,"7.2-7.4":0.03101,"8.2":0.01019,"9.2":0.01034,"10.1":0.06042,"11.1-11.2":0.04135,"12.0":0.02068,"13.0":0.05169,"14.0":0.07237,"15.0":0.03101,"16.0":0.72365},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00385,"4.2-4.3":0.00771,"4.4":0,"4.4.3-4.4.4":0.03314},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0151,"11":0.0604,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.09932},Q:{"10.4":0},O:{"0":0.07449},H:{"0":0.18806},L:{"0":38.36716},S:{"2.5":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 6c637b3396be11..59e39721585a78 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:{"31":0.01566,"52":0.94743,"68":0.00392,"72":0.00392,"75":0.00783,"78":0.00392,"81":0.00783,"85":0.00783,"88":0.02349,"89":0.00783,"91":0.03132,"94":0.03132,"96":0.01958,"97":0.01958,"98":0.49329,"99":1.34676,"100":0.01175,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 82 83 84 86 87 90 92 93 95 101 3.5 3.6"},D:{"22":0.00392,"38":0.02349,"49":0.07439,"53":0.07439,"56":0.00783,"58":0.00783,"59":0.00783,"62":0.00392,"63":0.00783,"64":0.00783,"66":0.08222,"67":0.00392,"68":0.0509,"69":0.00392,"70":0.00392,"74":0.01175,"75":0.00392,"76":0.00392,"78":0.03915,"79":0.18792,"80":0.01175,"81":0.01566,"83":0.04307,"84":0.1292,"85":0.07047,"86":0.02349,"87":0.0783,"88":0.03915,"89":0.0509,"90":0.01566,"91":0.03915,"92":0.03132,"93":0.02349,"94":0.00783,"95":0.01566,"96":0.10179,"97":0.14094,"98":0.37193,"99":3.69968,"100":16.50173,"101":0.21533,"102":0.00392,_:"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 47 48 50 51 52 54 55 57 60 61 65 71 72 73 77 103 104"},F:{"28":0.01566,"40":0.00392,"42":0.01566,"46":0.04307,"68":9.12978,"84":0.21141,"85":0.88088,"86":0.01958,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00783,"92":0.01958,"96":0.01175,"97":0.00783,"98":0.00783,"99":0.14486,"100":1.14318,"101":0.01175,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01958,"14":0.05481,"15":0.01566,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00392,"11.1":0.00783,"12.1":0.02349,"13.1":0.06264,"14.1":0.20358,"15.1":0.03132,"15.2-15.3":0.10571,"15.4":0.36801},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.0354,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05532,"10.0-10.2":0.00332,"10.3":0.09957,"11.0-11.2":0.02545,"11.3-11.4":0.02434,"12.0-12.1":0.02213,"12.2-12.5":0.53324,"13.0-13.1":0.0177,"13.2":0.00885,"13.3":0.03651,"13.4-13.7":0.23232,"14.0-14.4":0.49231,"14.5-14.8":1.76014,"15.0-15.1":0.61732,"15.2-15.3":3.42292,"15.4":3.66962},P:{"4":0.15383,"5.0-5.4":0.03059,"6.2-6.4":0.0102,"7.2-7.4":0.04102,"8.2":0.01006,"9.2":0.10198,"10.1":0.09052,"11.1-11.2":0.0923,"12.0":0.02051,"13.0":0.07179,"14.0":0.11281,"15.0":0.06153,"16.0":3.07669},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00031,"4.2-4.3":0.00185,"4.4":0,"4.4.3-4.4.4":0.01001},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0509,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00879,_:"11"},L:{"0":44.60104},S:{"2.5":0},R:{_:"0"},M:{"0":0.13387},Q:{"10.4":0},O:{"0":0.06085},H:{"0":0.25924}}; +module.exports={C:{"52":0.72221,"72":0.00374,"75":0.00748,"78":0.00374,"84":0.00748,"88":0.02245,"91":0.02994,"94":0.01123,"95":0.00748,"96":0.00748,"97":0.01123,"98":0.02619,"99":0.27317,"100":1.871,"101":0.00748,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 76 77 79 80 81 82 83 85 86 87 89 90 92 93 102 103 3.5 3.6"},D:{"38":0.02245,"49":0.03742,"53":0.05613,"58":0.00748,"62":0.00374,"63":0.01123,"65":0.00748,"66":0.02619,"67":0.01497,"68":0.02994,"69":0.02245,"70":0.00748,"78":0.02245,"79":0.15342,"80":0.01123,"81":0.01871,"83":0.01871,"84":0.13471,"85":0.0449,"86":0.03742,"87":0.11226,"88":0.03368,"89":0.03368,"90":0.00748,"91":0.02994,"92":0.02245,"93":0.03742,"94":0.01497,"95":0.01871,"96":0.16465,"97":0.08607,"98":0.38168,"99":0.26942,"100":4.20601,"101":14.75096,"102":1.57538,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 64 71 72 73 74 75 76 77 103 104"},F:{"28":0.02245,"40":0.00374,"42":0.02994,"46":0.01871,"68":6.6907,"79":0.00748,"84":0.00748,"85":0.58001,"86":0.68479,"87":0.09729,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 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 82 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.00748,"81":0.05239,"92":0.01497,"99":0.00748,"100":0.05613,"101":1.3097,_:"12 13 14 15 16 17 79 80 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.01123,"14":0.05239,"15":0.01123,_:"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.01123,"12.1":0.03368,"13.1":0.09729,"14.1":0.15342,"15.1":0.0449,"15.2-15.3":0.04116,"15.4":0.58749,"15.5":0.06361},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.00121,"7.0-7.1":0.01821,"8.1-8.4":0.00243,"9.0-9.2":0.00121,"9.3":0.04005,"10.0-10.2":0.00485,"10.3":0.12987,"11.0-11.2":0.01821,"11.3-11.4":0.01092,"12.0-12.1":0.03398,"12.2-12.5":0.3714,"13.0-13.1":0.0267,"13.2":0.00364,"13.3":0.03398,"13.4-13.7":0.17235,"14.0-14.4":0.45879,"14.5-14.8":1.82547,"15.0-15.1":0.36048,"15.2-15.3":1.00134,"15.4":7.62108},P:{"4":0.1861,"5.0-5.4":0.0204,"6.2-6.4":0.0102,"7.2-7.4":0.04135,"8.2":0.01019,"9.2":0.01034,"10.1":0.06042,"11.1-11.2":0.12406,"12.0":0.03102,"13.0":0.06203,"14.0":0.08271,"15.0":0.03102,"16.0":1.10624},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00103,"4.2-4.3":0.00377,"4.4":0,"4.4.3-4.4.4":0.02023},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0711,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.19403},Q:{"10.4":0},O:{"0":0.01878},H:{"0":0.2548},L:{"0":46.84723},S:{"2.5":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 06b5a04f8d84ac..69b653eb1dd506 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js @@ -1 +1 @@ -module.exports={C:{"40":0.00436,"43":0.00436,"47":0.01309,"48":0.01745,"52":0.10035,"53":0.00873,"56":0.02618,"60":0.00436,"68":0.00436,"70":0.00436,"72":0.06545,"74":0.00873,"78":0.0349,"81":0.00873,"84":0.02182,"85":0.01309,"86":0.00873,"87":0.00436,"88":0.02618,"89":0.03927,"91":0.07853,"92":0.03054,"93":0.02182,"94":0.02618,"95":0.03927,"96":0.03927,"97":0.13962,"98":1.15183,"99":3.41623,"100":0.06108,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 49 50 51 54 55 57 58 59 61 62 63 64 65 66 67 69 71 73 75 76 77 79 80 82 83 90 101 3.5 3.6"},D:{"11":0.0349,"38":0.00436,"39":0.00436,"40":0.00873,"42":0.01745,"43":0.02182,"47":0.84642,"49":0.06108,"50":0.00436,"51":0.00436,"55":0.00873,"57":0.04363,"58":0.00873,"60":0.02182,"62":0.01745,"63":0.04363,"64":0.02618,"65":0.01745,"69":0.10908,"70":0.01309,"71":0.03927,"72":0.02182,"73":0.00873,"74":0.01745,"75":0.01745,"77":0.00873,"78":0.01745,"79":0.02182,"80":0.03054,"81":0.09162,"83":0.05672,"84":0.01745,"85":0.02618,"86":0.10035,"87":0.08726,"88":0.09162,"89":0.2836,"90":0.06981,"91":0.0829,"92":0.0349,"93":0.16579,"94":0.10471,"95":0.12653,"96":0.19197,"97":0.30977,"98":0.29668,"99":2.77923,"100":15.26614,"101":0.23997,"102":0.00436,_:"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 41 44 45 46 48 52 53 54 56 59 61 66 67 68 76 103 104"},F:{"37":0.02182,"38":0.00436,"53":0.06981,"62":0.00873,"68":0.00436,"71":0.00873,"79":0.00873,"81":0.00436,"82":0.00873,"83":0.01309,"84":0.13525,"85":0.81588,"86":0.01745,_:"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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 63 64 65 66 67 69 70 72 73 74 75 76 77 78 80 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.00436,"15":0.01309,"16":0.00436,"17":0.01309,"18":0.02618,"84":0.01745,"89":0.00873,"90":0.01745,"91":0.00873,"92":0.02182,"93":0.01745,"94":0.00436,"95":0.00436,"96":0.01745,"97":0.01745,"98":0.01745,"99":0.23124,"100":1.57068,"101":0.01745,_:"13 14 79 80 81 83 85 86 87 88"},E:{"4":0,"12":0.01309,"13":0.00873,"14":0.01309,"15":0.01309,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.03927,"12.1":0.03054,"13.1":0.06981,"14.1":0.13962,"15.1":0.01309,"15.2-15.3":0.00873,"15.4":0.09599},G:{"8":0.00039,"3.2":0,"4.0-4.1":0.00135,"4.2-4.3":0.00482,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03452,"8.1-8.4":0,"9.0-9.2":0.00386,"9.3":0.03201,"10.0-10.2":0.00405,"10.3":0.07443,"11.0-11.2":0.01408,"11.3-11.4":0.00501,"12.0-12.1":0.01408,"12.2-12.5":0.23486,"13.0-13.1":0.00752,"13.2":0.0054,"13.3":0.00926,"13.4-13.7":0.05804,"14.0-14.4":0.20131,"14.5-14.8":0.2229,"15.0-15.1":0.14288,"15.2-15.3":0.39664,"15.4":0.46046},P:{"4":0.08858,"5.0-5.4":0.02018,"6.2-6.4":0.02062,"7.2-7.4":0.04429,"8.2":0.02018,"9.2":0.01039,"10.1":0.04036,"11.1-11.2":0.08311,"12.0":0.01107,"13.0":0.02215,"14.0":0.06644,"15.0":0.02215,"16.0":0.67543},I:{"0":0,"3":0,"4":0.00188,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00964,"4.2-4.3":0.02759,"4.4":0,"4.4.3-4.4.4":0.09054},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00873,"11":0.05236,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01127},N:{"10":0.01484,_:"11"},L:{"0":60.37804},S:{"2.5":0.07328},R:{_:"0"},M:{"0":0.47351},Q:{"10.4":0.03382},O:{"0":0.96956},H:{"0":3.26609}}; +module.exports={C:{"41":0.00456,"43":0.00913,"47":0.00913,"48":0.00913,"52":0.0867,"56":0.02738,"57":0.00456,"61":0.00456,"64":0.00456,"68":0.01369,"69":0.00913,"70":0.00456,"72":0.03194,"75":0.02282,"77":0.00913,"78":0.05476,"79":0.00456,"80":0.00456,"81":0.02738,"82":0.00456,"84":0.00913,"85":0.00456,"86":0.00913,"88":0.02738,"89":0.04107,"90":0.00456,"91":0.09126,"92":0.02738,"93":0.01369,"94":0.05932,"95":0.05476,"96":0.05476,"97":0.09126,"98":0.06845,"99":1.10425,"100":3.94243,"101":0.05019,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 46 49 50 51 53 54 55 58 59 60 62 63 65 66 67 71 73 74 76 83 87 102 103 3.5 3.6"},D:{"11":0.04563,"38":0.01825,"40":0.00913,"42":0.02738,"43":0.01369,"49":0.09582,"50":0.00913,"51":0.00456,"55":0.00456,"56":0.00913,"57":0.07301,"58":0.00913,"60":0.01369,"63":0.01369,"64":0.04563,"65":0.01369,"69":0.01369,"70":0.04107,"71":0.02282,"72":0.00456,"73":0.00456,"74":0.02738,"75":0.00913,"76":0.00913,"77":0.00456,"78":0.01825,"79":0.01825,"80":0.03194,"81":0.15514,"83":0.10951,"84":0.03194,"85":0.02282,"86":0.0867,"87":0.09126,"88":0.09582,"89":0.16427,"90":0.07301,"91":0.09582,"92":0.04107,"93":0.2464,"94":0.06388,"95":0.06388,"96":0.13233,"97":0.30572,"98":0.25553,"99":0.4198,"100":3.8603,"101":14.20006,"102":1.29133,"103":0.01825,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 44 45 46 47 48 52 53 54 59 61 62 66 67 68 104"},F:{"37":0.01369,"53":0.05019,"62":0.00913,"68":0.00913,"76":0.01369,"79":0.01369,"80":0.00456,"84":0.01825,"85":0.52931,"86":0.54756,"87":0.0365,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 63 64 65 66 67 69 70 71 72 73 74 75 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.00456,"14":0.00913,"15":0.00913,"17":0.00913,"18":0.04563,"84":0.05019,"85":0.00913,"89":0.00913,"90":0.02282,"92":0.01825,"93":0.00913,"96":0.04107,"97":0.00456,"98":0.00913,"99":0.01825,"100":0.13233,"101":2.245,_:"13 16 79 80 81 83 86 87 88 91 94 95"},E:{"4":0,"13":0.00913,"14":0.01369,"15":0.00913,_:"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.02282,"12.1":0.01369,"13.1":0.05932,"14.1":0.06388,"15.1":0.01825,"15.2-15.3":0.01369,"15.4":0.18252,"15.5":0.02738},G:{"8":0.00215,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00351,"5.0-5.1":0.00098,"6.0-6.1":0.00312,"7.0-7.1":0.02791,"8.1-8.4":0.00078,"9.0-9.2":0.00234,"9.3":0.02479,"10.0-10.2":0.00625,"10.3":0.07906,"11.0-11.2":0.00625,"11.3-11.4":0.00234,"12.0-12.1":0.00976,"12.2-12.5":0.23035,"13.0-13.1":0.04509,"13.2":0.00273,"13.3":0.01659,"13.4-13.7":0.0732,"14.0-14.4":0.17783,"14.5-14.8":0.14406,"15.0-15.1":0.09019,"15.2-15.3":0.17334,"15.4":0.82924},P:{"4":0.01118,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.01118,"8.2":0.02038,"9.2":0.06499,"10.1":0.02076,"11.1-11.2":0.08259,"12.0":0.03097,"13.0":0.05591,"14.0":0.03355,"15.0":0.04129,"16.0":0.43613},I:{"0":0,"3":0,"4":0.00133,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01731,"4.2-4.3":0.0253,"4.4":0,"4.4.3-4.4.4":0.11917},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05932,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01087},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.33709},Q:{"10.4":0.00544},O:{"0":0.97322},H:{"0":3.41787},L:{"0":58.37023},S:{"2.5":0.05437}}; 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 222b776e45fefc..e351eef6abc416 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:{"68":0.02243,"77":0.01602,"88":0.01282,"91":0.01602,"98":0.04806,"99":0.41332,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 100 101 3.5 3.6"},D:{"57":0.00961,"72":0.0032,"73":0.4037,"76":0.06088,"79":0.39089,"80":0.03524,"81":0.01282,"87":0.0032,"89":0.00961,"91":0.0032,"93":0.04486,"96":0.07049,"97":0.10573,"98":0.10894,"99":4.3286,"100":18.56398,"101":0.34283,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 77 78 83 84 85 86 88 90 92 94 95 102 103 104"},F:{"85":0.05767,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.10253,"18":0.01282,"84":0.01282,"89":0.0032,"90":0.07049,"92":0.04486,"98":0.24991,"99":0.25952,"100":1.59239,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 101"},E:{"4":0,"13":0.03524,"14":0.04806,"15":0.03204,_:"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.03204,"12.1":0.02243,"13.1":0.38768,"14.1":0.17302,"15.1":0.10573,"15.2-15.3":0.28516,"15.4":0.26273},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.93147,"10.0-10.2":0,"10.3":0.02717,"11.0-11.2":0.07762,"11.3-11.4":0.0132,"12.0-12.1":0.03726,"12.2-12.5":0.24373,"13.0-13.1":0,"13.2":0.01009,"13.3":0.09159,"13.4-13.7":0.40596,"14.0-14.4":0.38889,"14.5-14.8":0.99977,"15.0-15.1":1.14881,"15.2-15.3":1.73796,"15.4":1.64637},P:{"4":0.09475,"5.0-5.4":0.02018,"6.2-6.4":0.01025,"7.2-7.4":0.04099,"8.2":0.02018,"9.2":0.0208,"10.1":0.04036,"11.1-11.2":0.03158,"12.0":0.01053,"13.0":0.01025,"14.0":0.01025,"15.0":0.03074,"16.0":1.16819},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.03748,_:"11"},L:{"0":21.09577},S:{"2.5":0},R:{_:"0"},M:{"0":0.04757},Q:{"10.4":0},O:{"0":0.16988},H:{"0":1.20298}}; +module.exports={C:{"63":0.00481,"71":0.01442,"77":0.00481,"78":0.01442,"89":0.01442,"90":0.00481,"91":0.02884,"92":0.01442,"94":0.01922,"98":0.01442,"99":0.14418,"100":0.73532,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 93 95 96 97 101 102 103 3.5 3.6"},D:{"56":0.00481,"72":0.00481,"73":0.27394,"75":0.15379,"76":0.04806,"79":0.7209,"84":0.0817,"87":0.01922,"91":0.01442,"92":0.01922,"93":0.2403,"94":0.01922,"96":0.0817,"97":0.05287,"98":0.13937,"99":1.45141,"100":7.22342,"101":24.41448,"102":1.80225,"103":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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 77 78 80 81 83 85 86 88 89 90 95 104"},F:{"79":0.01442,"80":0.02884,"85":0.03364,"86":0.09612,_:"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 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:{"18":0.00481,"84":0.00481,"89":0.01442,"92":0.00481,"98":0.01442,"99":0.04325,"100":0.33161,"101":4.61857,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97"},E:{"4":0,"14":0.05287,"15":0.01922,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00481,"11.1":0.02884,"12.1":0.01442,"13.1":1.06693,"14.1":0.18743,"15.1":0.14418,"15.2-15.3":0.04806,"15.4":0.79299,"15.5":0.28836},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.06863,"8.1-8.4":0,"9.0-9.2":0,"9.3":2.77473,"10.0-10.2":0,"10.3":0.0619,"11.0-11.2":0.18705,"11.3-11.4":0,"12.0-12.1":0.01077,"12.2-12.5":0.19243,"13.0-13.1":0.07401,"13.2":0.00538,"13.3":0.07401,"13.4-13.7":1.03346,"14.0-14.4":0.39697,"14.5-14.8":0.76029,"15.0-15.1":1.42908,"15.2-15.3":2.16784,"15.4":4.21592},P:{"4":0.02196,"5.0-5.4":0.02196,"6.2-6.4":0.02083,"7.2-7.4":0.07685,"8.2":0.02038,"9.2":0.04166,"10.1":0.01051,"11.1-11.2":0.0549,"12.0":0.01051,"13.0":0.04392,"14.0":0.04392,"15.0":0.09461,"16.0":0.3184},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00107,"4.4":0,"4.4.3-4.4.4":0.01451},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01442,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.24931},Q:{"10.4":0},O:{"0":0.25451},H:{"0":0},L:{"0":37.53703},S:{"2.5":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 00ddb2b4bca9a8..b58231fff1cff2 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:{"40":0.0289,"43":0.00413,"47":0.00826,"48":0.00826,"50":0.00413,"51":0.02064,"52":0.21053,"56":0.02064,"61":0.01238,"65":0.01238,"68":0.00413,"72":0.01651,"77":0.01651,"78":0.02477,"79":0.02477,"80":0.00826,"81":0.01238,"82":0.01238,"83":0.00826,"88":0.00826,"89":0.00413,"91":0.04541,"93":0.00826,"94":0.01238,"95":0.0289,"96":0.00826,"97":0.02477,"98":0.73478,"99":2.10115,"100":0.02064,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 49 53 54 55 57 58 59 60 62 63 64 66 67 69 70 71 73 74 75 76 84 85 86 87 90 92 101 3.5 3.6"},D:{"22":0.01238,"28":0.00826,"34":0.00413,"38":0.01238,"47":0.02477,"49":0.12797,"53":0.04128,"56":0.00826,"57":0.02064,"63":0.01651,"64":0.01651,"65":0.00826,"66":0.00826,"68":0.02064,"69":0.04954,"70":0.00413,"71":0.02477,"73":0.01238,"74":0.00826,"76":0.00413,"77":0.00826,"78":0.02064,"79":0.22291,"80":0.03302,"81":0.01238,"83":0.14448,"84":0.14035,"85":0.26006,"86":0.18576,"87":0.2353,"88":0.02064,"89":0.0289,"90":0.02064,"91":0.03715,"92":0.04954,"93":0.01651,"94":0.0289,"95":0.09907,"96":0.09907,"97":0.11558,"98":0.24768,"99":4.65226,"100":24.0167,"101":0.28483,"102":0.01651,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 58 59 60 61 62 67 72 75 103 104"},F:{"28":0.01238,"36":0.00826,"40":0.00413,"46":0.00826,"70":0.01651,"71":0.02064,"73":0.00826,"84":0.26832,"85":1.3127,"86":0.00826,_:"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 72 74 75 76 77 78 79 80 81 82 83 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.0289,"84":0.01238,"86":0.01651,"90":0.00413,"92":0.00413,"96":0.00826,"97":0.02064,"98":0.02064,"99":0.2353,"100":1.72138,"101":0.02477,_:"12 13 14 15 16 17 79 80 81 83 85 87 88 89 91 93 94 95"},E:{"4":0,"13":0.00826,"14":0.03715,"15":0.01651,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1","11.1":0.00826,"13.1":0.04128,"14.1":0.09082,"15.1":0.03715,"15.2-15.3":0.03715,"15.4":0.21878},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.00088,"7.0-7.1":0.0254,"8.1-8.4":0,"9.0-9.2":0.00175,"9.3":0.03503,"10.0-10.2":0.00263,"10.3":0.03503,"11.0-11.2":0.01489,"11.3-11.4":0.01226,"12.0-12.1":0.02189,"12.2-12.5":0.35378,"13.0-13.1":0.00788,"13.2":0.00788,"13.3":0.03678,"13.4-13.7":0.14011,"14.0-14.4":0.29598,"14.5-14.8":1.16204,"15.0-15.1":0.40457,"15.2-15.3":2.9861,"15.4":3.2059},P:{"4":0.20778,"5.0-5.4":0.02018,"6.2-6.4":0.02062,"7.2-7.4":0.02078,"8.2":0.02018,"9.2":0.01039,"10.1":0.04036,"11.1-11.2":0.08311,"12.0":0.02078,"13.0":0.0935,"14.0":0.0935,"15.0":0.06233,"16.0":2.15052},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00483,"4.2-4.3":0.00402,"4.4":0,"4.4.3-4.4.4":0.02052},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00826,"9":0.01238,"11":0.16925,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":47.26799},S:{"2.5":0},R:{_:"0"},M:{"0":0.11159},Q:{"10.4":0},O:{"0":0.01762},H:{"0":0.20573}}; +module.exports={C:{"40":0.01869,"43":0.00374,"47":0.00374,"48":0.00374,"51":0.01495,"52":0.14578,"56":0.00748,"61":0.01121,"65":0.01121,"68":0.01121,"72":0.02617,"78":0.01869,"79":0.02243,"80":0.05233,"81":0.01869,"82":0.04112,"83":0.01495,"84":0.00374,"88":0.00748,"89":0.00374,"91":0.03738,"93":0.00374,"94":0.00748,"95":0.01121,"96":0.00374,"97":0.01869,"98":0.01869,"99":0.42987,"100":1.86152,"101":0.01495,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 49 50 53 54 55 57 58 59 60 62 63 64 66 67 69 70 71 73 74 75 76 77 85 86 87 90 92 102 103 3.5 3.6"},D:{"22":0.00748,"31":0.00374,"34":0.00374,"38":0.00748,"41":0.00748,"47":0.0299,"48":0.01869,"49":0.14204,"53":0.02617,"55":0.00748,"56":0.00748,"63":0.16821,"64":0.01495,"65":0.00374,"66":0.00748,"68":0.01121,"69":0.02617,"70":0.00374,"71":0.00748,"72":0.01495,"73":0.00748,"74":0.01121,"75":0.01495,"76":0.00748,"77":0.02243,"78":0.00374,"79":0.16821,"80":0.01869,"81":0.02617,"83":0.17195,"84":0.26914,"85":0.35511,"86":0.38128,"87":0.20933,"88":0.02243,"89":0.01869,"90":0.02243,"91":0.02617,"92":0.0299,"93":0.01869,"94":0.01869,"95":0.03738,"96":0.0785,"97":0.05981,"98":0.12335,"99":0.20933,"100":4.95659,"101":18.86942,"102":2.03347,"103":0.00748,_:"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 32 33 35 36 37 39 40 42 43 44 45 46 50 51 52 54 57 58 59 60 61 62 67 104"},F:{"28":0.01121,"31":0.00748,"36":0.01495,"46":0.00748,"68":0.03738,"70":0.01121,"71":0.03738,"72":0.00748,"73":0.00748,"84":0.00374,"85":0.69153,"86":0.69153,"87":0.03364,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 74 75 76 77 78 79 80 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:{"13":0.00374,"18":0.01495,"84":0.01869,"86":0.03738,"92":0.00374,"96":0.00374,"97":0.00748,"98":0.00374,"99":0.01495,"100":0.09345,"101":1.75686,_:"12 14 15 16 17 79 80 81 83 85 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01121,"14":0.02617,"15":0.01121,_:"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.02243,"12.1":0.00374,"13.1":0.02617,"14.1":0.08224,"15.1":0.02617,"15.2-15.3":0.0299,"15.4":0.24671,"15.5":0.04859},G:{"8":0,"3.2":0.00129,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00129,"6.0-6.1":0,"7.0-7.1":0.02187,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02573,"10.0-10.2":0.00386,"10.3":0.03474,"11.0-11.2":0.02573,"11.3-11.4":0.01287,"12.0-12.1":0.01287,"12.2-12.5":0.48248,"13.0-13.1":0.00643,"13.2":0.01029,"13.3":0.05404,"13.4-13.7":0.21358,"14.0-14.4":0.46576,"14.5-14.8":1.68547,"15.0-15.1":0.39371,"15.2-15.3":0.87747,"15.4":8.52642},P:{"4":0.18582,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.01032,"8.2":0.02038,"9.2":0.06499,"10.1":0.02076,"11.1-11.2":0.08259,"12.0":0.03097,"13.0":0.08259,"14.0":0.08259,"15.0":0.04129,"16.0":0.77423},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00489,"4.2-4.3":0.00294,"4.4":0,"4.4.3-4.4.4":0.02348},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01121,"9":0.00748,"11":0.08224,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.11898},Q:{"10.4":0},O:{"0":0.01879},H:{"0":0.15414},L:{"0":47.67113},S:{"2.5":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 63af01942169a6..c321e85e9b5f7f 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:{"47":0.0025,"48":0.0025,"52":0.0025,"72":0.00501,"78":0.0025,"89":0.01001,"91":0.00501,"92":0.0025,"93":0.0025,"94":0.00501,"96":0.34291,"97":0.01752,"98":0.62575,"99":2.49799,"100":0.02253,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 95 101 3.5 3.6"},D:{"28":0.0025,"33":0.0025,"37":0.00501,"43":0.0025,"50":0.0025,"57":0.0025,"64":0.01001,"70":0.03755,"73":0.0025,"75":0.0025,"79":0.01001,"80":0.00501,"81":0.00501,"83":0.00501,"86":0.0025,"87":0.00501,"89":0.01252,"90":0.07509,"91":0.00751,"92":0.02253,"93":0.18773,"94":0.00501,"95":0.01502,"96":0.12014,"97":0.02002,"98":0.08761,"99":1.94984,"100":9.25609,"101":0.06508,"102":0.00751,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 34 35 36 38 39 40 41 42 44 45 46 47 48 49 51 52 53 54 55 56 58 59 60 61 62 63 65 66 67 68 69 71 72 74 76 77 78 84 85 88 103 104"},F:{"84":0.07008,"85":0.21526,"86":0.0025,_:"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 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.00751,"13":0.00501,"14":0.01252,"15":0.01252,"17":0.00501,"18":0.32539,"84":0.00501,"85":0.00501,"89":0.04005,"90":0.02002,"91":0.0025,"92":0.01252,"93":0.05006,"95":0.01001,"96":0.01252,"97":0.01502,"98":0.02002,"99":0.44804,"100":2.06247,"101":0.07759,_:"16 79 80 81 83 86 87 88 94"},E:{"4":0,"13":0.00751,"14":0.02253,"15":0.00751,_:"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","12.1":0.00501,"13.1":0.01252,"14.1":0.05757,"15.1":0.00501,"15.2-15.3":0.00751,"15.4":0.05507},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.14449,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03065,"10.0-10.2":0,"10.3":0.49329,"11.0-11.2":0.1007,"11.3-11.4":0.03649,"12.0-12.1":0.08173,"12.2-12.5":3.55522,"13.0-13.1":0.02773,"13.2":0.01168,"13.3":0.23643,"13.4-13.7":0.64946,"14.0-14.4":1.28724,"14.5-14.8":1.61269,"15.0-15.1":1.43756,"15.2-15.3":2.45188,"15.4":2.42999},P:{"4":0.24963,"5.0-5.4":0.02018,"6.2-6.4":0.0104,"7.2-7.4":0.23923,"8.2":0.02018,"9.2":0.0208,"10.1":0.04036,"11.1-11.2":0.07281,"12.0":0.0208,"13.0":0.16642,"14.0":0.27043,"15.0":0.13521,"16.0":0.98811},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00107,"4.2-4.3":0.00587,"4.4":0,"4.4.3-4.4.4":0.06053},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02753,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.0075},N:{"10":0.03748,_:"11"},L:{"0":61.61952},S:{"2.5":0.04498},R:{_:"0"},M:{"0":0.07496},Q:{"10.4":0.0075},O:{"0":0.85454},H:{"0":0.89419}}; +module.exports={C:{"37":0.00229,"43":0.00457,"49":0.00229,"56":0.01601,"67":0.00457,"68":0.00457,"72":0.00457,"78":0.00686,"89":0.00915,"91":0.00686,"93":0.00229,"95":0.00457,"96":0.00229,"97":0.00915,"98":0.00915,"99":0.99256,"100":1.63749,"101":0.01144,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 44 45 46 47 48 50 51 52 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 88 90 92 94 102 103 3.5 3.6"},D:{"11":0.00229,"28":0.00457,"43":0.00457,"57":0.00457,"62":0.00229,"63":0.00457,"64":0.00686,"71":0.00457,"72":0.00457,"74":0.05718,"76":0.00686,"79":0.00686,"80":0.00457,"83":0.00457,"84":0.00915,"86":0.00457,"87":0.00686,"88":0.00229,"89":0.00457,"90":0.02287,"91":0.02744,"92":0.00457,"93":0.07318,"94":0.00915,"95":0.00457,"96":0.02058,"97":0.01372,"98":0.01601,"99":0.04803,"100":1.78386,"101":7.93132,"102":0.47112,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 61 65 66 67 68 69 70 73 75 77 78 81 85 103 104"},F:{"79":0.00229,"85":0.04574,"86":0.12121,"87":0.00457,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02516,"13":0.00686,"16":0.01601,"17":0.00915,"18":0.35906,"84":0.00457,"85":0.00915,"89":0.0183,"90":0.0183,"92":0.00686,"94":0.00229,"95":0.00229,"98":0.00915,"99":0.03659,"100":0.25614,"101":2.42879,_:"14 15 79 80 81 83 86 87 88 91 93 96 97"},E:{"4":0,"7":0.00229,"13":0.00686,"14":0.09605,"15":0.00686,_:"0 5 6 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 12.1","9.1":0.00229,"11.1":0.00686,"13.1":0.01372,"14.1":0.02973,"15.1":0.00457,"15.2-15.3":0.00686,"15.4":0.08691,"15.5":0.00457},G:{"8":0.00149,"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.06844,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02678,"10.0-10.2":0,"10.3":0.08034,"11.0-11.2":0.06546,"11.3-11.4":0.02083,"12.0-12.1":0.07439,"12.2-12.5":2.76738,"13.0-13.1":0.0119,"13.2":0.00744,"13.3":0.5133,"13.4-13.7":0.15027,"14.0-14.4":1.57116,"14.5-14.8":1.47891,"15.0-15.1":1.41791,"15.2-15.3":1.81814,"15.4":4.80423},P:{"4":0.05207,"5.0-5.4":0.03124,"6.2-6.4":0.02083,"7.2-7.4":0.19788,"8.2":0.02038,"9.2":0.04166,"10.1":0.02076,"11.1-11.2":0.05207,"12.0":0.02083,"13.0":0.08332,"14.0":0.13539,"15.0":0.05207,"16.0":0.68737},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.00484,"4.4":0,"4.4.3-4.4.4":0.07132},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0095,"11":0.05225,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.08484},Q:{"10.4":0.00771},O:{"0":1.04897},H:{"0":0.97119},L:{"0":63.56522},S:{"2.5":0.05399}}; 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 1d27e24a079906..4f62f88d297b80 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:{"29":0.00266,"30":0.00533,"36":0.00533,"37":0.00533,"38":0.00533,"39":0.00533,"40":0.01066,"41":0.01066,"43":0.00533,"44":0.00266,"45":0.00266,"46":0.00533,"47":0.01066,"48":0.00533,"49":0.00533,"50":0.00266,"51":0.01598,"52":0.02664,"53":0.01598,"54":0.01066,"55":0.01598,"56":0.02131,"57":0.01865,"58":0.00799,"59":0.00533,"60":0.22111,"61":0.00533,"62":0.01066,"66":0.05594,"67":0.00266,"69":0.00533,"71":0.00266,"72":0.02131,"76":0.00533,"78":0.0373,"79":0.00266,"81":0.00533,"82":0.00799,"83":0.00266,"84":0.01066,"85":0.01066,"86":0.00533,"87":0.00533,"88":0.02664,"89":0.01332,"90":0.00533,"91":0.30636,"92":0.00799,"93":0.00799,"94":0.01332,"95":0.0293,"96":0.01865,"97":0.05062,"98":0.63936,"99":1.87013,"100":0.10123,"101":0.00533,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 33 34 35 42 63 64 65 68 70 73 74 75 77 80 3.5 3.6"},D:{"11":0.00533,"22":0.00533,"31":0.00533,"32":0.00799,"35":0.02131,"37":0.00533,"38":0.01066,"39":0.00533,"40":0.00533,"41":0.00533,"42":0.00533,"43":0.00799,"44":0.00533,"45":0.00799,"46":0.00799,"47":0.00799,"48":0.00533,"49":0.01865,"50":0.00533,"51":0.00533,"52":0.00266,"53":0.01332,"54":0.00533,"55":0.00533,"56":0.00799,"57":0.00533,"58":0.00799,"59":0.00533,"60":0.00799,"61":0.01066,"62":0.01066,"63":0.01332,"64":0.01332,"65":0.02131,"67":0.00799,"69":0.00266,"70":0.01332,"71":0.01598,"73":0.00266,"74":0.00799,"75":0.00799,"78":0.01066,"79":0.07726,"80":0.02131,"81":0.01332,"83":0.01598,"84":0.01332,"85":0.01332,"86":0.01332,"87":0.03463,"88":0.04262,"89":0.02664,"90":0.01332,"91":0.03197,"92":0.04795,"93":0.01865,"94":0.01865,"95":0.02664,"96":0.0666,"97":0.09857,"98":0.16517,"99":2.40293,"100":12.17448,"101":0.21046,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 33 34 36 66 68 72 76 77 102 103 104"},F:{"28":0.01332,"36":0.00533,"46":0.00266,"76":0.00266,"79":0.00266,"82":0.01066,"83":0.00799,"84":0.07726,"85":0.38095,"86":0.01066,"87":0.00799,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01332,"13":0.00266,"14":0.00266,"15":0.00533,"16":0.00533,"17":0.00533,"18":0.05594,"84":0.01066,"85":0.00533,"86":0.00266,"88":0.00266,"89":0.01332,"90":0.00533,"91":0.00533,"92":0.02398,"93":0.00266,"94":0.00266,"95":0.00533,"96":0.01066,"97":0.01332,"98":0.02131,"99":0.22644,"100":1.69963,"101":0.03197,_:"79 80 81 83 87"},E:{"4":0,"11":0.00266,"13":0.02131,"14":0.15185,"15":0.05328,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01865,"11.1":0.01865,"12.1":0.01332,"13.1":0.11189,"14.1":0.31702,"15.1":0.14918,"15.2-15.3":0.14386,"15.4":0.54612},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00083,"5.0-5.1":0.00578,"6.0-6.1":0.00083,"7.0-7.1":0.01074,"8.1-8.4":0.00578,"9.0-9.2":0.01239,"9.3":0.17681,"10.0-10.2":0.00991,"10.3":0.11649,"11.0-11.2":0.02148,"11.3-11.4":0.01652,"12.0-12.1":0.0157,"12.2-12.5":0.50894,"13.0-13.1":0.01405,"13.2":0.00991,"13.3":0.04379,"13.4-13.7":0.13467,"14.0-14.4":0.3594,"14.5-14.8":0.78158,"15.0-15.1":0.60147,"15.2-15.3":2.48355,"15.4":2.9297},P:{"4":0.2084,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":0.04168,"8.2":0.083,"9.2":0.01042,"10.1":0.01037,"11.1-11.2":0.06252,"12.0":0.02084,"13.0":0.06252,"14.0":0.04168,"15.0":0.04168,"16.0":1.14619},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00211,"4.2-4.3":0.00423,"4.4":0,"4.4.3-4.4.4":0.30177},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0109,"9":0.0109,"11":0.05812,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":2.42822},H:{"0":0.6598},L:{"0":58.63367},S:{"2.5":0},R:{_:"0"},M:{"0":0.25676},Q:{"10.4":0.06602}}; +module.exports={C:{"29":0.00294,"30":0.00882,"35":0.00588,"36":0.00588,"37":0.00588,"38":0.00588,"39":0.00294,"40":0.00882,"41":0.01176,"42":0.00294,"43":0.00294,"44":0.00588,"45":0.00588,"47":0.01176,"48":0.00588,"49":0.00294,"50":0.00588,"52":0.00588,"54":0.00294,"56":0.01176,"57":0.01176,"58":0.00588,"59":0.00294,"60":0.26745,"61":0.0147,"62":0.00588,"66":0.0147,"67":0.00294,"69":0.00588,"70":0.00588,"72":0.02057,"76":0.00294,"77":0.00588,"78":0.02939,"79":0.00588,"82":0.00294,"83":0.00588,"84":0.00882,"85":0.00588,"88":0.01763,"89":0.01176,"90":0.00294,"91":0.28214,"92":0.01176,"93":0.00882,"94":0.01176,"95":0.01763,"96":0.02939,"97":0.02645,"98":0.03527,"99":0.50257,"100":2.43643,"101":0.14107,"102":0.00588,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 33 34 46 51 53 55 63 64 65 68 71 73 74 75 80 81 86 87 103 3.5 3.6"},D:{"11":0.00294,"31":0.00588,"32":0.00882,"37":0.00294,"38":0.00588,"40":0.00294,"47":0.00294,"49":0.00882,"53":0.01176,"56":0.00588,"58":0.00294,"61":0.00882,"62":0.00882,"63":0.0147,"64":0.00588,"65":0.00882,"67":0.00588,"68":0.00294,"69":0.00588,"70":0.0147,"71":0.0147,"72":0.00294,"74":0.01763,"75":0.02057,"76":0.00588,"78":0.00882,"79":0.09993,"80":0.02057,"81":0.01763,"83":0.01763,"84":0.01176,"85":0.01176,"86":0.0147,"87":0.02939,"88":0.03233,"89":0.02645,"90":0.01763,"91":0.02057,"92":0.07348,"93":0.01176,"94":0.02351,"95":0.02939,"96":0.06172,"97":0.07935,"98":0.07641,"99":0.13226,"100":2.83907,"101":12.42021,"102":1.28728,"103":0.0147,_:"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 33 34 35 36 39 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 66 73 77 104"},F:{"28":0.01176,"36":0.00588,"73":0.00294,"79":0.00588,"82":0.00294,"83":0.00294,"84":0.00882,"85":0.19104,"86":0.27921,"87":0.02645,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0147,"13":0.00294,"14":0.00588,"15":0.00882,"16":0.00882,"17":0.00588,"18":0.07054,"83":0.00882,"84":0.00882,"85":0.00294,"88":0.00294,"89":0.01176,"90":0.00588,"91":0.00294,"92":0.02645,"95":0.00588,"96":0.00588,"97":0.0147,"98":0.01176,"99":0.01763,"100":0.07935,"101":2.23952,_:"79 80 81 86 87 93 94"},E:{"4":0,"11":0.00294,"12":0.00294,"13":0.01763,"14":0.13813,"15":0.05878,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02939,"11.1":0.0147,"12.1":0.02645,"13.1":0.14401,"14.1":0.27333,"15.1":0.09993,"15.2-15.3":0.09699,"15.4":1.04041,"15.5":0.09699},G:{"8":0.00084,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00167,"6.0-6.1":0.00167,"7.0-7.1":0.0159,"8.1-8.4":0.00837,"9.0-9.2":0.00586,"9.3":0.08789,"10.0-10.2":0.01004,"10.3":0.10295,"11.0-11.2":0.0226,"11.3-11.4":0.01758,"12.0-12.1":0.01674,"12.2-12.5":0.46706,"13.0-13.1":0.01172,"13.2":0.00837,"13.3":0.03264,"13.4-13.7":0.10798,"14.0-14.4":0.28877,"14.5-14.8":0.5809,"15.0-15.1":0.44363,"15.2-15.3":0.90985,"15.4":5.22306},P:{"4":0.18978,"5.0-5.4":0.0204,"6.2-6.4":0.03077,"7.2-7.4":0.02109,"8.2":0.02049,"9.2":0.01054,"10.1":0.01025,"11.1-11.2":0.04217,"12.0":0.01054,"13.0":0.04217,"14.0":0.04217,"15.0":0.04217,"16.0":0.49555},I:{"0":0,"3":0,"4":0.00108,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00108,"4.2-4.3":0.00539,"4.4":0,"4.4.3-4.4.4":0.28192},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07054,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.24004},Q:{"10.4":0.02824},O:{"0":2.24508},H:{"0":0.61492},L:{"0":55.58705},S:{"2.5":0}}; 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 dec41cf90e8e0a..b3cf6148efa4d2 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:{"47":0.004,"52":0.03202,"72":0.004,"78":0.01201,"79":0.01201,"87":0.01201,"88":0.02001,"89":0.02401,"90":0.008,"91":0.01601,"92":0.008,"93":0.008,"94":0.004,"95":0.008,"96":0.01601,"97":0.008,"98":0.36818,"99":1.33267,"100":0.05203,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 101 3.5 3.6"},D:{"49":0.02801,"50":0.004,"58":0.004,"63":0.01201,"65":0.008,"66":0.008,"69":0.004,"70":0.01201,"71":0.004,"72":0.008,"73":0.008,"74":0.03202,"76":0.008,"77":0.004,"78":0.01601,"79":0.03202,"80":0.02001,"81":0.01201,"83":0.01601,"84":0.02801,"85":0.01601,"86":0.07204,"87":0.05203,"88":0.02401,"89":0.04002,"90":0.03202,"91":0.04802,"92":0.08404,"93":0.02401,"94":0.03602,"95":0.03202,"96":0.18009,"97":0.18409,"98":0.34017,"99":4.47824,"100":22.88344,"101":0.36418,"102":0.01601,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 59 60 61 62 64 67 68 75 103 104"},F:{"28":0.008,"46":0.004,"69":0.004,"70":0.01201,"79":0.004,"84":0.22011,"85":0.7924,"86":0.02001,_:"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 71 72 73 74 75 76 77 78 80 81 82 83 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.004,"16":0.008,"18":0.02001,"84":0.03202,"85":0.01201,"86":0.01201,"87":0.01201,"88":0.01601,"89":0.02001,"90":0.01601,"91":0.02401,"92":0.02801,"93":0.008,"94":0.01201,"95":0.01601,"96":0.04802,"97":0.02801,"98":0.04002,"99":0.36018,"100":2.69335,"101":0.02401,_:"13 14 15 17 79 80 81 83"},E:{"4":0,"13":0.06403,"14":0.16408,"15":0.06803,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.008,"11.1":0.008,"12.1":0.03202,"13.1":0.08404,"14.1":0.31216,"15.1":0.26813,"15.2-15.3":0.14407,"15.4":0.47624},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.06112,"10.0-10.2":0,"10.3":0.05886,"11.0-11.2":0.01358,"11.3-11.4":0.03396,"12.0-12.1":0.02264,"12.2-12.5":0.94627,"13.0-13.1":0.0498,"13.2":0.02717,"13.3":0.22185,"13.4-13.7":0.28524,"14.0-14.4":1.15907,"14.5-14.8":2.66676,"15.0-15.1":2.16646,"15.2-15.3":9.10728,"15.4":5.80439},P:{"4":0.30594,"5.0-5.4":0.03059,"6.2-6.4":0.0102,"7.2-7.4":0.14277,"8.2":0.01006,"9.2":0.10198,"10.1":0.09052,"11.1-11.2":0.07139,"12.0":0.0204,"13.0":0.14277,"14.0":0.17336,"15.0":0.15297,"16.0":3.61005},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.00268,"4.4":0,"4.4.3-4.4.4":0.02571},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04402,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00879,_:"11"},L:{"0":33.83019},S:{"2.5":0},R:{_:"0"},M:{"0":0.17394},Q:{"10.4":0.012},O:{"0":0.10796},H:{"0":0.13628}}; +module.exports={C:{"30":0.00405,"52":0.03242,"78":0.00811,"87":0.00405,"88":0.01621,"89":0.01621,"90":0.00405,"91":0.01621,"94":0.00405,"96":0.00811,"97":0.00811,"98":0.00811,"99":0.37288,"100":1.22401,"101":0.04864,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 92 93 95 102 103 3.5 3.6"},D:{"37":0.00405,"49":0.02837,"50":0.01216,"63":0.00811,"67":0.00811,"69":0.02027,"70":0.01216,"71":0.00405,"72":0.00405,"73":0.00405,"74":0.02837,"75":0.01621,"76":0.00405,"78":0.01216,"79":0.03242,"80":0.02027,"81":0.02027,"83":0.01621,"84":0.02432,"85":0.04053,"86":0.04864,"87":0.05269,"88":0.03242,"89":0.04053,"90":0.04053,"91":0.04864,"92":0.05674,"93":0.02027,"94":0.04053,"95":0.02837,"96":0.10538,"97":0.1378,"98":0.15807,"99":0.32424,"100":5.68636,"101":20.79189,"102":1.75495,"103":0.02027,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 77 104"},F:{"28":0.00405,"36":0.01216,"84":0.00811,"85":0.535,"86":0.52284,"87":0.04864,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.04458,"84":0.01621,"85":0.00405,"86":0.00811,"87":0.00405,"88":0.00405,"89":0.00811,"90":0.01216,"91":0.00811,"92":0.02432,"93":0.00811,"94":0.00811,"95":0.00811,"96":0.02432,"97":0.01216,"98":0.02027,"99":0.03648,"100":0.2067,"101":2.92627,_:"12 13 14 15 16 17 79 80 81 83"},E:{"4":0,"11":0.00811,"13":0.02432,"14":0.12564,"15":0.04458,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00405,"11.1":0.01621,"12.1":0.02837,"13.1":0.07295,"14.1":0.28776,"15.1":0.09727,"15.2-15.3":0.09727,"15.4":0.82276,"15.5":0.04864},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.03817,"10.0-10.2":0,"10.3":0.05302,"11.0-11.2":0.01485,"11.3-11.4":0.03817,"12.0-12.1":0.01909,"12.2-12.5":0.86738,"13.0-13.1":0.04029,"13.2":0.01697,"13.3":0.10392,"13.4-13.7":0.26297,"14.0-14.4":1.03916,"14.5-14.8":2.13559,"15.0-15.1":1.39757,"15.2-15.3":2.88845,"15.4":12.28546},P:{"4":0.21417,"5.0-5.4":0.0204,"6.2-6.4":0.0102,"7.2-7.4":0.18357,"8.2":0.01019,"9.2":0.10199,"10.1":0.06042,"11.1-11.2":0.05099,"12.0":0.0204,"13.0":0.15298,"14.0":0.13258,"15.0":0.14278,"16.0":1.78475},I:{"0":0,"3":0,"4":0.00053,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0008,"4.2-4.3":0.0016,"4.4":0,"4.4.3-4.4.4":0.01491},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06485,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.15462},Q:{"10.4":0.01784},O:{"0":0.09515},H:{"0":0.19706},L:{"0":35.17046},S:{"2.5":0}}; 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 75c5b1696d1079..88fd42a7a7f89c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js @@ -1 +1 @@ -module.exports={C:{"34":0.07619,"47":0.00448,"51":0.06723,"52":0.08516,"53":0.06275,"54":0.03137,"55":0.06275,"56":0.04034,"57":0.0493,"58":0.01793,"59":0.01793,"78":0.04034,"87":0.00896,"88":0.01345,"91":0.00896,"93":0.01793,"94":0.04034,"95":0.00448,"97":0.01793,"98":0.25996,"99":0.80228,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 96 100 101 3.5 3.6"},D:{"22":0.04482,"26":0.04482,"30":0.01345,"34":0.06723,"38":0.17928,"39":0.01793,"40":0.01793,"41":0.02241,"42":0.01793,"43":0.02241,"44":0.02241,"45":0.03137,"46":0.02689,"47":0.02689,"48":0.02241,"49":0.12101,"50":0.01345,"51":0.01793,"52":0.01345,"53":0.11653,"54":0.02689,"55":0.0493,"56":0.01793,"57":0.02241,"58":0.0493,"59":0.03137,"60":0.02689,"61":0.12998,"62":0.04034,"63":0.02689,"64":0.02689,"65":0.04034,"66":0.00896,"67":0.02689,"68":0.05378,"69":0.02241,"70":0.03137,"71":0.05827,"72":0.01793,"73":0.02241,"74":0.04034,"75":0.03137,"76":0.02241,"77":0.05827,"78":0.04034,"79":0.44372,"80":0.06275,"81":0.0493,"83":0.05378,"84":0.01345,"85":0.00896,"86":0.0493,"87":0.09412,"88":0.01345,"89":0.07619,"90":0.01345,"91":0.05827,"92":0.19273,"93":0.03586,"94":0.08068,"95":0.07619,"96":0.2734,"97":0.61403,"98":0.52888,"99":4.34306,"100":17.72183,"101":0.26892,"102":0.03586,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 103 104"},F:{"28":0.01793,"36":0.04482,"40":0.00448,"46":0.05378,"84":0.04034,"85":0.11205,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00448,"17":0.00896,"18":0.0986,"94":0.01793,"97":0.02241,"98":0.01345,"99":0.43924,"100":2.80125,"101":0.0493,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96"},E:{"4":0,"8":0.00896,"11":0.00896,"12":0.00448,"13":0.17928,"14":0.7709,"15":0.28237,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01345,"11.1":0.04482,"12.1":0.08964,"13.1":0.47061,"14.1":2.49199,"15.1":0.32719,"15.2-15.3":0.45716,"15.4":2.16032},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.06974,"7.0-7.1":0.07265,"8.1-8.4":0.09299,"9.0-9.2":0.13948,"9.3":0.40391,"10.0-10.2":0.11623,"10.3":0.37485,"11.0-11.2":0.18597,"11.3-11.4":0.15401,"12.0-12.1":0.18016,"12.2-12.5":1.51683,"13.0-13.1":0.10461,"13.2":0.09008,"13.3":0.20922,"13.4-13.7":0.50852,"14.0-14.4":1.5517,"14.5-14.8":4.6522,"15.0-15.1":1.13908,"15.2-15.3":8.42394,"15.4":9.06612},P:{"4":0.87329,"5.0-5.4":0.02018,"6.2-6.4":0.02062,"7.2-7.4":0.02062,"8.2":0.02018,"9.2":0.06633,"10.1":0.04036,"11.1-11.2":0.01031,"12.0":0.11344,"13.0":0.02211,"14.0":0.07738,"15.0":0.01105,"16.0":2.27719},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00154,"4.2-4.3":0.00115,"4.4":0,"4.4.3-4.4.4":0.04146},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04822,"9":0.0675,"10":0.01929,"11":0.50144,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":22.86831},S:{"2.5":0},R:{_:"0"},M:{"0":0.19865},Q:{"10.4":0.08277},O:{"0":0.56835},H:{"0":0.09403}}; +module.exports={C:{"34":0.04871,"51":0.06199,"52":0.1107,"53":0.06199,"54":0.031,"55":0.05756,"56":0.04428,"57":0.04428,"58":0.01771,"59":0.01328,"78":0.01328,"81":0.00443,"84":0.00443,"91":0.01328,"92":0.00886,"93":0.00443,"94":0.02657,"95":0.00443,"97":0.00443,"98":0.02657,"99":0.1904,"100":0.87674,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 85 86 87 88 89 90 96 101 102 103 3.5 3.6"},D:{"22":0.031,"26":0.03985,"30":0.01771,"34":0.05756,"38":0.16826,"39":0.01771,"40":0.01771,"41":0.01771,"42":0.01771,"43":0.02214,"44":0.01771,"45":0.03542,"46":0.02214,"47":0.02657,"48":0.02214,"49":0.10184,"50":0.01328,"51":0.01771,"52":0.01328,"53":0.11513,"54":0.01771,"55":0.03985,"56":0.02214,"57":0.02214,"58":0.04871,"59":0.02657,"60":0.02657,"61":0.12398,"62":0.03542,"63":0.02657,"64":0.02657,"65":0.04871,"66":0.00443,"67":0.01771,"68":0.03985,"69":0.01328,"70":0.02214,"71":0.03985,"72":0.01771,"73":0.02214,"74":0.04428,"75":0.02657,"76":0.02657,"77":0.04871,"78":0.07085,"79":0.42509,"80":0.04871,"81":0.0797,"83":0.03542,"84":0.02214,"85":0.00886,"86":0.04428,"87":0.08856,"88":0.01328,"89":0.05756,"90":0.01328,"91":0.03985,"92":0.18155,"93":0.031,"94":0.04871,"95":0.05314,"96":0.18155,"97":0.43837,"98":0.33653,"99":0.54907,"100":4.69811,"101":15.23675,"102":1.5188,"103":0.06199,"104":0.00886,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37"},F:{"28":0.02657,"36":0.04428,"46":0.05756,"85":0.06642,"86":0.07085,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 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.00886,"18":0.05756,"97":0.00443,"99":0.01771,"100":0.18598,"101":2.92691,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98"},E:{"4":0,"11":0.00443,"12":0.00886,"13":0.11956,"14":0.71291,"15":0.19483,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01771,"11.1":0.031,"12.1":0.06642,"13.1":0.34981,"14.1":2.09002,"15.1":0.23026,"15.2-15.3":0.27011,"15.4":5.66784,"15.5":0.29668},G:{"8":0.00598,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00299,"6.0-6.1":0.05683,"7.0-7.1":0.07777,"8.1-8.4":0.08375,"9.0-9.2":0.12862,"9.3":0.34397,"10.0-10.2":0.09571,"10.3":0.35893,"11.0-11.2":0.14357,"11.3-11.4":0.09272,"12.0-12.1":0.16152,"12.2-12.5":1.42972,"13.0-13.1":0.0658,"13.2":0.04187,"13.3":0.17049,"13.4-13.7":0.52942,"14.0-14.4":1.21138,"14.5-14.8":3.46364,"15.0-15.1":0.72982,"15.2-15.3":1.86043,"15.4":18.85558},P:{"4":0.84485,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.01025,"8.2":0.02038,"9.2":0.06499,"10.1":0.02076,"11.1-11.2":0.03076,"12.0":0.04101,"13.0":0.03249,"14.0":0.04333,"15.0":0.02166,"16.0":0.67155},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00062,"4.2-4.3":0.00062,"4.4":0,"4.4.3-4.4.4":0.02662},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05502,"9":0.07703,"10":0.02201,"11":0.59426,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.20059},Q:{"10.4":0.08358},O:{"0":0.47362},H:{"0":0.07385},L:{"0":22.79935},S:{"2.5":0}}; 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 363e0dbc6cd515..1660867b74e1d1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js @@ -1 +1 @@ -module.exports={C:{"52":0.03049,"77":0.0122,"78":0.0122,"97":0.0122,"98":0.34759,"99":1.85989,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 100 101 3.5 3.6"},D:{"23":0.01829,"29":0.0122,"49":0.02439,"53":0.35978,"63":0.04878,"65":0.03659,"67":0.04269,"71":0.0061,"73":0.03659,"76":0.21953,"78":0.0122,"79":0.07318,"83":0.06098,"86":0.0061,"87":0.12196,"88":0.06708,"90":0.0122,"91":0.06098,"92":0.10976,"93":0.01829,"94":0.0122,"95":0.04878,"96":0.52443,"97":0.17684,"98":0.88421,"99":7.87862,"100":29.66067,"101":0.49394,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 68 69 70 72 74 75 77 80 81 84 85 89 102 103 104"},F:{"83":0.21953,"84":0.58541,"85":1.59158,_:"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 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.0061,"97":0.0122,"98":0.0061,"99":0.97568,"100":5.5004,"101":0.04878,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96"},E:{"4":0,"13":0.22563,"14":1.2318,"15":0.04269,_:"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.06708,"12.1":0.10367,"13.1":0.23782,"14.1":2.57945,"15.1":0.2988,"15.2-15.3":0.47564,"15.4":0.93299},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.22792,"10.0-10.2":0,"10.3":0.25175,"11.0-11.2":0.26314,"11.3-11.4":0.01243,"12.0-12.1":0.00518,"12.2-12.5":1.31572,"13.0-13.1":0.00414,"13.2":0.00311,"13.3":0.10256,"13.4-13.7":0.08184,"14.0-14.4":0.65993,"14.5-14.8":1.04947,"15.0-15.1":0.30044,"15.2-15.3":3.18156,"15.4":2.90184},P:{"4":0.10989,"5.0-5.4":0.0308,"6.2-6.4":0.07186,"7.2-7.4":0.01099,"8.2":0.01122,"9.2":0.17596,"10.1":0.01054,"11.1-11.2":0.02198,"12.0":0.45055,"13.0":0.02198,"14.0":0.35191,"15.0":0.03297,"16.0":5.17584},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00172,"4.2-4.3":0.00052,"4.4":0,"4.4.3-4.4.4":0.00947},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08537,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.04432},L:{"0":22.36214},S:{"2.5":0},R:{_:"0"},M:{"0":0.48763},Q:{"10.4":0.0039}}; +module.exports={C:{"52":0.08589,"96":0.01718,"97":0.00573,"99":0.39509,"100":1.39714,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 98 101 102 103 3.5 3.6"},D:{"29":0.01718,"53":0.04581,"63":0.19468,"67":0.05153,"71":0.01718,"76":0.01145,"79":0.32638,"83":0.04008,"87":0.1317,"90":0.02863,"91":0.05153,"92":0.01718,"93":0.05726,"94":0.02863,"95":0.04008,"96":0.2863,"97":0.05153,"98":0.66422,"99":1.11657,"100":11.29167,"101":24.0492,"102":1.86095,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 68 69 70 72 73 74 75 77 78 80 81 84 85 86 88 89 103 104"},F:{"69":0.00573,"84":0.00573,"85":0.81882,"86":1.89531,"87":0.05153,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0229,"92":0.04581,"96":0.00573,"99":0.04581,"100":0.16605,"101":4.2945,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98"},E:{"4":0,"13":0.66994,"14":0.73293,"15":0.06299,_:"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.05726,"12.1":0.04581,"13.1":0.30348,"14.1":1.67772,"15.1":0.18323,"15.2-15.3":0.40082,"15.4":1.95829,"15.5":0.06299},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.02936,"9.3":0.1897,"10.0-10.2":0.00565,"10.3":0.12195,"11.0-11.2":0.11743,"11.3-11.4":0.01694,"12.0-12.1":0,"12.2-12.5":1.47692,"13.0-13.1":0,"13.2":0,"13.3":0.06549,"13.4-13.7":0.12985,"14.0-14.4":1.28609,"14.5-14.8":0.78588,"15.0-15.1":0.17953,"15.2-15.3":0.74862,"15.4":6.13688},P:{"4":0.13774,"5.0-5.4":0.02027,"6.2-6.4":0.07095,"7.2-7.4":0.02119,"8.2":0.01022,"9.2":0.02119,"10.1":0.1419,"11.1-11.2":0.02119,"12.0":0.011,"13.0":0.02119,"14.0":0.65692,"15.0":0.02119,"16.0":2.19325},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00023,"4.4":0,"4.4.3-4.4.4":0.01687},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01718,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.7353},Q:{"10.4":0},O:{"0":0.00855},H:{"0":0.06071},L:{"0":24.08326},S:{"2.5":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 0d087f4b8e8647..fcac6b44ba6844 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:{"52":0.02059,"60":0.00824,"78":0.03294,"82":0.21825,"88":0.02059,"89":0.01235,"91":0.0906,"95":0.02059,"96":0.05353,"97":0.0906,"98":1.34659,"99":2.84554,"100":0.01647,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 90 92 93 94 101 3.5 3.6"},D:{"23":0.00412,"29":0.00824,"38":0.01235,"49":0.02471,"63":0.00824,"67":0.04118,"68":0.01647,"73":0.01647,"76":0.00412,"78":0.00412,"79":0.02059,"81":0.00412,"83":0.02471,"84":0.02471,"85":0.04942,"86":0.01235,"87":0.20178,"88":0.00412,"89":0.02059,"90":0.00412,"91":0.01235,"92":0.00824,"93":0.00412,"95":0.00824,"96":0.06177,"97":0.10295,"98":0.39533,"99":3.88739,"100":17.04028,"101":0.23473,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 69 70 71 72 74 75 77 80 94 102 103 104"},F:{"40":0.16884,"46":0.00824,"84":0.14001,"85":0.39945,"86":0.00412,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00412,"15":0.00824,"16":0.01647,"18":0.19355,"84":0.00412,"88":0.00824,"89":0.02883,"91":0.00412,"92":0.00412,"93":0.00412,"95":0.00824,"96":0.01235,"97":0.03294,"98":0.05765,"99":0.83595,"100":5.88874,"101":0.05765,_:"12 14 17 79 80 81 83 85 86 87 90 94"},E:{"4":0,"12":0.00412,"13":0.02471,"14":0.28826,"15":0.11942,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.03294,"12.1":0.11119,"13.1":0.32532,"14.1":1.05833,"15.1":0.29238,"15.2-15.3":0.23884,"15.4":1.28482},G:{"8":0.00137,"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.08629,"10.0-10.2":0,"10.3":0.25886,"11.0-11.2":0.01644,"11.3-11.4":0.00822,"12.0-12.1":0.00411,"12.2-12.5":0.49991,"13.0-13.1":0.02465,"13.2":0.00548,"13.3":0.06026,"13.4-13.7":0.1082,"14.0-14.4":0.66289,"14.5-14.8":1.31482,"15.0-15.1":1.07103,"15.2-15.3":4.44573,"15.4":5.12506},P:{"4":0.04204,"5.0-5.4":0.02018,"6.2-6.4":0.01025,"7.2-7.4":0.02102,"8.2":0.02018,"9.2":0.02102,"10.1":0.04036,"11.1-11.2":0.21022,"12.0":0.02102,"13.0":0.35738,"14.0":0.31533,"15.0":0.13665,"16.0":4.69849},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0369,"4.4":0,"4.4.3-4.4.4":0.09839},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14413,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03748,_:"11"},L:{"0":38.19844},S:{"2.5":0},R:{_:"0"},M:{"0":0.59408},Q:{"10.4":0},O:{"0":0.01765},H:{"0":0.07239}}; +module.exports={C:{"52":0.00792,"60":0.00396,"78":0.02772,"83":0.00396,"86":0.00792,"91":0.06336,"94":0.00396,"95":0.01188,"96":0.00396,"98":0.03168,"99":1.01376,"100":4.25304,"101":0.00396,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 87 88 89 90 92 93 97 102 103 3.5 3.6"},D:{"49":0.02772,"65":0.00792,"67":0.01584,"68":0.00396,"76":0.00792,"77":0.0198,"79":0.01584,"80":0.01188,"83":0.01188,"84":0.0396,"86":0.25344,"87":0.01188,"88":0.00396,"89":0.01188,"90":0.0198,"91":0.00792,"92":0.00792,"94":0.00792,"95":0.00792,"96":0.02772,"97":0.02376,"98":0.20196,"99":0.19404,"100":3.861,"101":15.9786,"102":1.3662,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 69 70 71 72 73 74 75 78 81 85 93 103 104"},F:{"40":0.01584,"85":0.44352,"86":0.3762,"87":0.00792,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00792,"16":0.01188,"17":0.00396,"18":0.02376,"85":0.00396,"90":0.00396,"92":0.00792,"96":0.00396,"97":0.01188,"98":0.00792,"99":0.04356,"100":0.43956,"101":4.68072,_:"12 13 14 79 80 81 83 84 86 87 88 89 91 93 94 95"},E:{"4":0,"13":0.0198,"14":0.20988,"15":0.13464,_:"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.18216,"12.1":0.0792,"13.1":0.19008,"14.1":0.88308,"15.1":0.26928,"15.2-15.3":0.1386,"15.4":1.68696,"15.5":0.12276},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.00157,"9.0-9.2":0,"9.3":0.22623,"10.0-10.2":0,"10.3":0.16339,"11.0-11.2":0.00157,"11.3-11.4":0.02357,"12.0-12.1":0.01728,"12.2-12.5":0.35662,"13.0-13.1":0.00786,"13.2":0.00471,"13.3":0.09112,"13.4-13.7":0.08484,"14.0-14.4":0.52629,"14.5-14.8":1.52233,"15.0-15.1":0.67554,"15.2-15.3":1.32438,"15.4":10.67671},P:{"4":0.02196,"5.0-5.4":0.02196,"6.2-6.4":0.02083,"7.2-7.4":0.07288,"8.2":0.02038,"9.2":0.01041,"10.1":0.01051,"11.1-11.2":0.20824,"12.0":0.01041,"13.0":0.28112,"14.0":0.22906,"15.0":0.09371,"16.0":1.73881},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03706,"4.4":0,"4.4.3-4.4.4":0.12602},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11484,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.3624},Q:{"10.4":0},O:{"0":0.02416},H:{"0":0.21158},L:{"0":38.60772},S:{"2.5":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 febbee98c5cf75..a425b74fc8eb33 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:{"16":0.00566,"34":0.00142,"36":0.00425,"38":0.00708,"47":0.00425,"52":0.0085,"56":0.00425,"65":0.00283,"72":0.00425,"82":0.00283,"88":0.00708,"89":0.00991,"91":0.01841,"94":0.01133,"95":0.00425,"96":0.00425,"97":0.00708,"98":0.29311,"99":0.83119,"100":0.00708,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 83 84 85 86 87 90 92 93 101 3.5 3.6"},D:{"11":0.00991,"25":0.00283,"33":0.01274,"38":0.00425,"39":0.00425,"40":0.00566,"43":0.00566,"46":0.00283,"49":0.00991,"50":0.01133,"55":0.00283,"59":0.00566,"60":0.00283,"61":0.00142,"62":0.00142,"63":0.00283,"65":0.01841,"67":0.00425,"68":0.00142,"69":0.00708,"70":0.00566,"71":0.00708,"72":0.00425,"74":0.01416,"75":0.00283,"76":0.00283,"78":0.00425,"79":0.0085,"80":0.00425,"81":0.00708,"83":0.02124,"84":0.01416,"85":0.01416,"86":0.01416,"87":0.01416,"88":0.00566,"89":0.00425,"90":0.00708,"91":0.01982,"92":0.00991,"93":0.0085,"94":0.18408,"95":0.01699,"96":0.04956,"97":0.02407,"98":0.08071,"99":1.08182,"100":5.83675,"101":0.23506,"102":0.00566,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 34 35 36 37 41 42 44 45 47 48 51 52 53 54 56 57 58 64 66 73 77 103 104"},F:{"28":0.00566,"36":0.00283,"71":0.00283,"79":0.00142,"82":0.04248,"84":0.02974,"85":0.11045,"86":0.00425,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 80 81 83 87 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00425},B:{"12":0.01133,"13":0.00283,"14":0.00566,"15":0.00142,"16":0.01841,"17":0.02974,"18":0.02832,"84":0.0085,"85":0.00425,"89":0.0085,"90":0.00708,"92":0.01133,"93":0.00142,"95":0.00142,"96":0.0085,"97":0.03965,"98":0.05239,"99":0.4517,"100":1.27865,"101":0.03823,_:"79 80 81 83 86 87 88 91 94"},E:{"4":0,"8":0.0269,"11":0.00283,"13":0.01133,"14":0.0354,"15":0.00708,_:"0 5 6 7 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00283,"11.1":0.00142,"12.1":0.00425,"13.1":0.08638,"14.1":0.13594,"15.1":0.04531,"15.2-15.3":0.02832,"15.4":0.19541},G:{"8":0.00509,"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.01356,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02204,"10.0-10.2":0,"10.3":0.0373,"11.0-11.2":0.14073,"11.3-11.4":0.20516,"12.0-12.1":0.04748,"12.2-12.5":3.28765,"13.0-13.1":0.08139,"13.2":0.03391,"13.3":0.33233,"13.4-13.7":0.30689,"14.0-14.4":1.99734,"14.5-14.8":2.53822,"15.0-15.1":1.74979,"15.2-15.3":3.47585,"15.4":2.68064},P:{"4":0.9354,"5.0-5.4":0.06035,"6.2-6.4":0.15087,"7.2-7.4":2.57488,"8.2":0.01006,"9.2":0.27157,"10.1":0.09052,"11.1-11.2":0.91529,"12.0":0.15087,"13.0":0.42244,"14.0":1.01587,"15.0":0.56325,"16.0":3.38959},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00027,"4.2-4.3":0.00082,"4.4":0,"4.4.3-4.4.4":0.01608},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00142,"11":0.14585,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03748,_:"11"},L:{"0":58.79802},S:{"2.5":0},R:{_:"0"},M:{"0":0.14595},Q:{"10.4":0},O:{"0":0.24038},H:{"0":0.95907}}; +module.exports={C:{"24":0.003,"30":0.0015,"34":0.02547,"36":0.003,"38":0.0015,"43":0.0015,"47":0.003,"49":0.00749,"52":0.02547,"56":0.003,"66":0.003,"68":0.003,"72":0.00449,"76":0.003,"78":0.00449,"81":0.00749,"88":0.01049,"89":0.00749,"91":0.00599,"92":0.0015,"95":0.003,"97":0.00449,"98":0.01798,"99":0.2277,"100":1.08006,"101":0.00749,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 31 32 33 35 37 39 40 41 42 44 45 46 48 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 77 79 80 82 83 84 85 86 87 90 93 94 96 102 103 3.5 3.6"},D:{"11":0.01049,"19":0.00749,"22":0.00749,"25":0.00599,"26":0.0015,"33":0.02547,"34":0.00599,"39":0.0015,"40":0.01198,"43":0.02696,"44":0.003,"46":0.01798,"49":0.03445,"50":0.003,"52":0.00599,"53":0.00449,"55":0.003,"58":0.00449,"60":0.00449,"63":0.01198,"65":0.02696,"66":0.00599,"67":0.0015,"69":0.003,"70":0.00749,"72":0.01348,"74":0.01198,"75":0.003,"76":0.01049,"77":0.00749,"78":0.01198,"79":0.01947,"80":0.01049,"81":0.01798,"83":0.03296,"84":0.01498,"85":0.00749,"86":0.02996,"87":0.01648,"88":0.00899,"89":0.01947,"90":0.02846,"91":0.04943,"92":0.00599,"93":0.02996,"94":0.10186,"95":0.00899,"96":0.03296,"97":0.02846,"98":0.05992,"99":0.15729,"100":1.38565,"101":5.68791,"102":0.53778,"103":0.003,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 23 24 27 28 29 30 31 32 35 36 37 38 41 42 45 47 48 51 54 56 57 59 61 62 64 68 71 73 104"},F:{"28":0.00599,"65":0.00899,"79":0.00449,"82":0.01798,"83":0.01198,"85":0.1468,"86":0.24567,"87":0.01798,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 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.01947,"13":0.00599,"14":0.00449,"15":0.00449,"16":0.02097,"17":0.0719,"18":0.03445,"83":0.0015,"84":0.01348,"85":0.00449,"89":0.00599,"91":0.0015,"92":0.01498,"96":0.02846,"97":0.01348,"98":0.00599,"99":0.31009,"100":0.10336,"101":1.27779,_:"79 80 81 86 87 88 90 93 94 95"},E:{"4":0,"8":0.02547,"13":0.00449,"14":0.04194,"15":0.00599,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.003,"12.1":0.02397,"13.1":0.04794,"14.1":0.11385,"15.1":0.06441,"15.2-15.3":0.03296,"15.4":0.20073,"15.5":0.01049},G:{"8":0.00159,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00318,"7.0-7.1":0.03179,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02226,"10.0-10.2":0,"10.3":0.04928,"11.0-11.2":0.08902,"11.3-11.4":0.1081,"12.0-12.1":0.05882,"12.2-12.5":1.99191,"13.0-13.1":0.04133,"13.2":0.02067,"13.3":0.12241,"13.4-13.7":0.25912,"14.0-14.4":2.08571,"14.5-14.8":2.1795,"15.0-15.1":1.31628,"15.2-15.3":2.2574,"15.4":5.26037},P:{"4":0.58411,"5.0-5.4":0.04028,"6.2-6.4":0.0705,"7.2-7.4":1.24878,"8.2":0.02038,"9.2":0.1712,"10.1":0.06042,"11.1-11.2":0.4834,"12.0":0.39276,"13.0":0.22156,"14.0":0.43305,"15.0":0.25177,"16.0":1.87317},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00111,"4.4":0,"4.4.3-4.4.4":0.0414},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23668,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.17854},Q:{"10.4":0},O:{"0":0.26356},H:{"0":1.4086},L:{"0":61.76366},S:{"2.5":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 ddb64560c081bb..e116c1975e0f2c 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:{"78":0.01718,"91":0.01718,"95":0.01718,"98":0.29203,"99":0.64131,"100":0.05726,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 101 3.5 3.6"},D:{"55":0.01718,"67":0.02863,"75":0.1317,"85":0.01718,"86":0.01718,"87":1.38569,"91":0.01718,"94":0.01718,"95":0.23477,"96":0.02863,"99":7.42662,"100":33.08483,"101":0.99632,"102":0.04581,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 76 77 78 79 80 81 83 84 88 89 90 92 93 97 98 103 104"},F:{"84":0.24622,"85":0.17751,"86":0.01718,_:"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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.04581,"18":0.04581,"94":0.01718,"96":2.2675,"97":0.01718,"98":0.02863,"99":0.49816,"100":4.64951,"101":0.1317,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95"},E:{"4":0,"13":0.52679,"14":0.14888,"15":0.16033,_:"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 12.1","13.1":0.3092,"14.1":0.5726,"15.1":0.11452,"15.2-15.3":0.10307,"15.4":0.55542},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.10346,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.0406,"13.0-13.1":0,"13.2":0.00975,"13.3":0.00975,"13.4-13.7":1.45294,"14.0-14.4":0.02849,"14.5-14.8":0.42209,"15.0-15.1":0.29089,"15.2-15.3":2.58726,"15.4":1.55565},P:{"4":0.11307,"5.0-5.4":0.03059,"6.2-6.4":0.0102,"7.2-7.4":0.02261,"8.2":0.01006,"9.2":0.10198,"10.1":0.09052,"11.1-11.2":0.21484,"12.0":0.02051,"13.0":0.14699,"14.0":0.05654,"15.0":0.03392,"16.0":2.09183},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.03419},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14888,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00879,_:"11"},L:{"0":32.98267},S:{"2.5":0},R:{_:"0"},M:{"0":0.12395},Q:{"10.4":0},O:{"0":0.0171},H:{"0":0.03237}}; +module.exports={C:{"52":0.04773,"78":0.0179,"91":0.02983,"99":0.14318,"100":0.6145,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 101 102 103 3.5 3.6"},D:{"49":0.02983,"76":0.19091,"79":0.0179,"85":0.06563,"87":0.0179,"92":0.0179,"95":0.45342,"99":0.86507,"100":5.76912,"101":37.49631,"102":3.06056,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 84 86 88 89 90 91 93 94 96 97 98 103 104"},F:{"84":0.02983,"85":0.04773,"86":0.22074,_:"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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.0179,"16":0.0179,"18":0.0179,"96":0.06563,"97":0.02983,"98":0.09546,"99":0.04773,"100":0.19091,"101":5.89441,_:"12 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95"},E:{"4":0,"13":0.0179,"14":0.19091,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.5","12.1":0.0179,"13.1":0.12529,"14.1":0.40569,"15.1":0.0179,"15.4":1.24093},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.05905,"10.3":0.02952,"11.0-11.2":0,"11.3-11.4":0.04428,"12.0-12.1":0,"12.2-12.5":0.2229,"13.0-13.1":0,"13.2":0,"13.3":0.01476,"13.4-13.7":0.44506,"14.0-14.4":0.02952,"14.5-14.8":0.10407,"15.0-15.1":0.17861,"15.2-15.3":0.93514,"15.4":5.31709},P:{"4":0.04393,"5.0-5.4":0.0204,"6.2-6.4":0.0102,"7.2-7.4":0.07687,"8.2":0.01019,"9.2":0.01034,"10.1":0.06042,"11.1-11.2":0.12406,"12.0":0.03102,"13.0":0.03295,"14.0":0.08785,"15.0":0.03102,"16.0":0.70284},I:{"0":0,"3":0,"4":0.00371,"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.03261},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.12316,_:"11"},R:{_:"0"},M:{"0":0.02018},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":32.3321},S:{"2.5":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 07a6b5dc51b9bb..f8b354a12387dd 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:{"48":0.00494,"52":0.03954,"68":0.03954,"78":0.02472,"88":0.00494,"91":0.00989,"97":0.01977,"98":0.42016,"99":1.23575,"100":0.00494,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 101 3.5 3.6"},D:{"26":0.00494,"38":0.00494,"49":0.04449,"55":0.00494,"65":0.00494,"69":0.51407,"70":0.01977,"74":0.00989,"76":0.03954,"77":0.10875,"78":0.01977,"79":0.04943,"80":0.00989,"81":0.00989,"83":0.01977,"84":0.00494,"85":0.00989,"86":0.01977,"87":0.04943,"89":0.02472,"90":0.00989,"91":0.32624,"92":0.01977,"93":0.05437,"94":0.01483,"95":0.0346,"96":0.0692,"97":0.09392,"98":0.40533,"99":6.21829,"100":27.0135,"101":0.41027,"102":0.00989,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 68 71 72 73 75 88 103 104"},F:{"28":0.01977,"37":0.04943,"46":0.00494,"71":0.00989,"84":0.19772,"85":0.55856,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01483,"18":0.02472,"86":0.00989,"88":0.00494,"92":0.00494,"96":0.01977,"97":0.02472,"98":0.02966,"99":0.70685,"100":5.15061,"101":0.05932,_:"12 13 15 16 17 79 80 81 83 84 85 87 89 90 91 93 94 95"},E:{"4":0,"13":0.02966,"14":0.18783,"15":0.08897,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00989,"11.1":0.09392,"12.1":0.0346,"13.1":0.25704,"14.1":0.5981,"15.1":0.14335,"15.2-15.3":0.18289,"15.4":1.06769},G:{"8":0,"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.00345,"8.1-8.4":0.00115,"9.0-9.2":0.0023,"9.3":0.038,"10.0-10.2":0.00461,"10.3":0.45836,"11.0-11.2":0.01497,"11.3-11.4":0.01382,"12.0-12.1":0.00576,"12.2-12.5":0.29943,"13.0-13.1":0.00921,"13.2":0.00345,"13.3":0.01958,"13.4-13.7":0.05643,"14.0-14.4":0.43878,"14.5-14.8":1.23688,"15.0-15.1":0.49406,"15.2-15.3":4.23466,"15.4":4.17592},P:{"4":0.09475,"5.0-5.4":0.02018,"6.2-6.4":0.0104,"7.2-7.4":0.01053,"8.2":0.02018,"9.2":0.0208,"10.1":0.04036,"11.1-11.2":0.03158,"12.0":0.01053,"13.0":0.03158,"14.0":0.09475,"15.0":0.10528,"16.0":2.97949},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0036,"4.4":0,"4.4.3-4.4.4":0.02675},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00989,"9":0.01483,"11":0.36084,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03748,_:"11"},L:{"0":27.62208},S:{"2.5":0},R:{_:"0"},M:{"0":0.2529},Q:{"10.4":0},O:{"0":0.12645},H:{"0":0.11971}}; +module.exports={C:{"48":0.00537,"52":0.06976,"68":0.00537,"78":0.01073,"91":0.02146,"97":0.01073,"98":0.0161,"99":0.32196,"100":1.54541,"101":0.02146,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 102 103 3.5 3.6"},D:{"49":0.04293,"63":0.00537,"69":0.44538,"70":0.01073,"72":0.01073,"76":0.02146,"77":0.18781,"78":0.03756,"79":0.05366,"80":0.0161,"83":0.02683,"84":0.02146,"85":0.01073,"86":0.0161,"87":0.05366,"88":0.0161,"89":0.02146,"90":0.00537,"91":0.01073,"92":0.02146,"93":0.04829,"94":0.02146,"95":0.0161,"96":0.04293,"97":0.04293,"98":0.11269,"99":0.66002,"100":6.2031,"101":26.8622,"102":2.84935,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 71 73 74 75 81 103 104"},F:{"28":0.0161,"46":0.01073,"85":0.61172,"86":0.72978,"87":0.0161,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.0161,"18":0.0161,"85":0.00537,"92":0.00537,"94":0.00537,"96":0.00537,"97":0.01073,"98":0.00537,"99":0.03756,"100":0.27367,"101":6.27822,_:"12 13 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 95"},E:{"4":0,"13":0.02683,"14":0.20391,"15":0.10195,_:"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.12342,"12.1":0.0322,"13.1":0.2361,"14.1":0.56343,"15.1":0.31659,"15.2-15.3":0.13415,"15.4":2.05518,"15.5":0.16635},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.00141,"9.0-9.2":0,"9.3":0.08181,"10.0-10.2":0.00141,"10.3":0.38648,"11.0-11.2":0.00282,"11.3-11.4":0.00987,"12.0-12.1":0.01552,"12.2-12.5":0.25812,"13.0-13.1":0.00987,"13.2":0.00141,"13.3":0.01693,"13.4-13.7":0.06911,"14.0-14.4":0.38648,"14.5-14.8":1.35691,"15.0-15.1":0.41187,"15.2-15.3":1.12418,"15.4":9.95819},P:{"4":0.09461,"5.0-5.4":0.03124,"6.2-6.4":0.02083,"7.2-7.4":0.19788,"8.2":0.02038,"9.2":0.04166,"10.1":0.01051,"11.1-11.2":0.01051,"12.0":0.01051,"13.0":0.03154,"14.0":0.06308,"15.0":0.09461,"16.0":0.94615},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00434,"4.4":0,"4.4.3-4.4.4":0.042},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12878,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.28731},Q:{"10.4":0},O:{"0":0.12512},H:{"0":0.13162},L:{"0":28.28134},S:{"2.5":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 dab87c5cb26680..80fa4755b65077 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:{"24":0.00708,"52":0.06018,"72":0.00708,"78":0.0177,"84":0.00354,"87":0.00708,"88":0.00708,"89":0.00354,"90":0.00354,"91":0.04602,"92":0.06726,"93":0.00354,"94":0.00354,"95":0.00354,"96":0.01416,"97":0.01416,"98":0.5841,"99":1.7346,"100":0.00708,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 101 3.5 3.6"},D:{"26":0.00708,"34":0.00354,"38":0.02478,"39":0.00708,"47":0.01062,"49":0.03186,"53":0.01416,"55":0.01062,"58":0.00354,"59":0.00708,"62":0.00708,"65":0.01416,"67":0.00708,"68":0.00354,"69":0.01062,"70":0.00708,"71":0.00708,"73":0.01062,"74":0.00354,"76":0.01416,"78":0.02832,"79":0.13098,"80":0.02478,"81":0.0177,"83":0.02124,"84":0.02832,"85":0.0177,"86":0.02124,"87":0.04248,"88":0.01062,"89":0.02478,"90":0.0177,"91":0.0354,"92":0.0531,"93":0.03894,"94":0.0177,"95":0.0177,"96":0.08496,"97":0.16284,"98":0.26904,"99":3.98958,"100":17.93364,"101":0.32214,"102":0.00708,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 48 50 51 52 54 56 57 60 61 63 64 66 72 75 77 103 104"},F:{"28":0.1416,"83":0.00708,"84":0.11328,"85":0.59826,"86":0.02124,_:"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 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.00708,"15":0.00354,"16":0.00708,"17":0.01062,"18":0.0354,"83":0.01416,"84":0.00708,"92":0.00708,"96":0.00708,"97":0.01416,"98":0.04248,"99":0.39648,"100":2.60544,"101":0.03186,_:"13 14 79 80 81 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.01062,"13":0.01416,"14":0.20886,"15":0.03894,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02832,"12.1":0.02478,"13.1":0.16638,"14.1":0.32568,"15.1":0.10266,"15.2-15.3":0.11328,"15.4":0.73986},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02058,"6.0-6.1":0.00199,"7.0-7.1":0.0259,"8.1-8.4":0.00664,"9.0-9.2":0,"9.3":0.06375,"10.0-10.2":0.00266,"10.3":0.04648,"11.0-11.2":0.00664,"11.3-11.4":0.00531,"12.0-12.1":0.0093,"12.2-12.5":0.26959,"13.0-13.1":0.00332,"13.2":0.00199,"13.3":0.01262,"13.4-13.7":0.07636,"14.0-14.4":0.14874,"14.5-14.8":0.54715,"15.0-15.1":0.26694,"15.2-15.3":2.50535,"15.4":2.61957},P:{"4":0.18365,"5.0-5.4":0.06035,"6.2-6.4":0.15087,"7.2-7.4":0.28568,"8.2":0.01006,"9.2":0.03061,"10.1":0.09052,"11.1-11.2":0.09183,"12.0":0.06122,"13.0":0.16325,"14.0":0.27548,"15.0":0.09183,"16.0":4.74434},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00068,"4.2-4.3":0.00204,"4.4":0,"4.4.3-4.4.4":0.03604},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16284,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03748,_:"11"},L:{"0":51.9114},S:{"2.5":0},R:{_:"0"},M:{"0":0.34238},Q:{"10.4":0},O:{"0":0.96254},H:{"0":0.47704}}; +module.exports={C:{"34":0.00701,"48":0.0035,"52":0.05256,"69":0.0035,"78":0.01752,"80":0.01752,"89":0.0035,"91":0.05256,"92":0.02102,"96":0.01051,"97":0.02102,"98":0.03504,"99":0.40296,"100":1.96925,"101":0.01051,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 88 90 93 94 95 102 103 3.5 3.6"},D:{"26":0.01051,"34":0.0035,"38":0.01051,"39":0.00701,"48":0.0035,"49":0.02453,"53":0.01051,"55":0.01051,"58":0.01051,"62":0.01402,"63":0.0035,"67":0.0035,"73":0.0035,"74":0.01051,"77":0.01051,"78":0.01051,"79":0.1752,"80":0.03504,"81":0.01752,"83":0.01752,"84":0.09461,"85":0.01402,"86":0.01051,"87":0.06307,"88":0.01051,"89":0.02803,"90":0.01051,"91":0.04555,"92":0.04555,"93":0.02102,"94":0.00701,"95":0.01402,"96":0.04555,"97":0.09811,"98":0.0876,"99":0.31186,"100":3.74227,"101":16.45128,"102":1.64688,"103":0.00701,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 47 50 51 52 54 56 57 59 60 61 64 65 66 68 69 70 71 72 75 76 104"},F:{"28":0.05957,"85":0.438,"86":0.45902,"87":0.01752,_:"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:{"16":0.00701,"17":0.01051,"18":0.05256,"83":0.01051,"84":0.01402,"91":0.00701,"92":0.00701,"93":0.0035,"97":0.00701,"98":0.01752,"99":0.03504,"100":0.12264,"101":2.90131,_:"12 13 14 15 79 80 81 85 86 87 88 89 90 94 95 96"},E:{"4":0,"12":0.01402,"13":0.01402,"14":0.15768,"15":0.05957,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0035,"11.1":0.01402,"12.1":0.04205,"13.1":0.20323,"14.1":0.29434,"15.1":0.09461,"15.2-15.3":0.10512,"15.4":1.12128,"15.5":0.16118},G:{"8":0.00218,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03121,"6.0-6.1":0,"7.0-7.1":0.01742,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07403,"10.0-10.2":0.00073,"10.3":0.06532,"11.0-11.2":0.00653,"11.3-11.4":0.00435,"12.0-12.1":0.01234,"12.2-12.5":0.26781,"13.0-13.1":0.00653,"13.2":0.00218,"13.3":0.01161,"13.4-13.7":0.07258,"14.0-14.4":0.12629,"14.5-14.8":0.42168,"15.0-15.1":0.19378,"15.2-15.3":0.61329,"15.4":5.32506},P:{"4":0.15279,"5.0-5.4":0.04028,"6.2-6.4":0.0705,"7.2-7.4":0.20372,"8.2":0.01019,"9.2":0.02037,"10.1":0.06042,"11.1-11.2":0.10186,"12.0":0.05093,"13.0":0.19354,"14.0":0.24447,"15.0":0.08149,"16.0":1.94554},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00162,"4.2-4.3":0.00162,"4.4":0,"4.4.3-4.4.4":0.05521},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10862,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.30527},Q:{"10.4":0},O:{"0":0.66249},H:{"0":0.38739},L:{"0":52.30388},S:{"2.5":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 b159d3577fed58..15d3a4d4a28ccb 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:{"34":0.00259,"51":0.01037,"52":0.01037,"53":0.01037,"54":0.00519,"55":0.01037,"56":0.00778,"57":0.00519,"58":0.00259,"59":0.00259,"66":0.00259,"72":0.00778,"78":0.00778,"80":0.03371,"83":0.01297,"85":0.01037,"89":0.04149,"90":0.00519,"91":0.00778,"95":0.00778,"96":0.03371,"97":0.01297,"98":0.30338,"99":0.71308,"100":0.01815,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 81 82 84 86 87 88 92 93 94 101 3.5 3.6"},D:{"39":0.00519,"40":0.00519,"41":0.00519,"42":0.00259,"43":0.00519,"44":0.00519,"45":0.00259,"46":0.00259,"47":0.00519,"49":0.00259,"51":0.00778,"52":0.00259,"53":0.00259,"54":0.00259,"55":0.00259,"57":0.00259,"58":0.00519,"59":0.00259,"60":0.00259,"61":0.00519,"62":0.00259,"63":0.01037,"64":0.00519,"65":0.00259,"67":0.01815,"73":0.02074,"74":0.00778,"76":0.00519,"77":0.00519,"79":0.01297,"80":0.01297,"83":0.09335,"84":0.00259,"85":0.04667,"86":0.00519,"87":0.02593,"88":0.00259,"89":0.02852,"90":0.00519,"91":0.04667,"92":0.02852,"93":0.00519,"94":0.01815,"95":0.0752,"96":0.0363,"97":0.05705,"98":0.1841,"99":3.26199,"100":15.31167,"101":0.16336,"102":0.01037,"103":0.00519,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 48 50 56 66 68 69 70 71 72 75 78 81 104"},F:{"28":0.00259,"83":0.00519,"84":0.05964,"85":0.19448,"86":0.01037,_:"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 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.00259,"15":0.01037,"16":0.02074,"18":0.03371,"84":0.00259,"92":0.01815,"95":0.00519,"96":0.00778,"97":0.02593,"98":0.03112,"99":0.1867,"100":1.17982,"101":0.02074,_:"13 14 17 79 80 81 83 85 86 87 88 89 90 91 93 94"},E:{"4":0,"9":0.00519,"13":0.01556,"14":0.08038,"15":0.06742,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01815,"13.1":0.05964,"14.1":0.28264,"15.1":0.09335,"15.2-15.3":0.15299,"15.4":0.38376},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00413,"6.0-6.1":0.01858,"7.0-7.1":0,"8.1-8.4":0.00413,"9.0-9.2":0,"9.3":0.00619,"10.0-10.2":0.00413,"10.3":0.01445,"11.0-11.2":0.02477,"11.3-11.4":0.02064,"12.0-12.1":0.02271,"12.2-12.5":0.25185,"13.0-13.1":0.01032,"13.2":0.01239,"13.3":0.07845,"13.4-13.7":0.13212,"14.0-14.4":0.65853,"14.5-14.8":1.77742,"15.0-15.1":1.36661,"15.2-15.3":7.93336,"15.4":8.2905},P:{"4":0.71413,"5.0-5.4":0.02018,"6.2-6.4":0.02062,"7.2-7.4":0.03131,"8.2":0.02018,"9.2":0.0105,"10.1":0.04036,"11.1-11.2":0.03131,"12.0":0.02087,"13.0":0.05218,"14.0":0.09392,"15.0":0.07305,"16.0":1.86792},I:{"0":0,"3":0,"4":0.00208,"2.1":0,"2.2":0.00521,"2.3":0.00104,"4.1":0,"4.2-4.3":0.00208,"4.4":0,"4.4.3-4.4.4":0.12293},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01556,"9":0.01037,"10":0.00259,"11":0.03371,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":50.27376},S:{"2.5":0},R:{_:"0"},M:{"0":0.57042},Q:{"10.4":0},O:{"0":0.76302},H:{"0":0.70134}}; +module.exports={C:{"34":0.00806,"52":0.00269,"53":0.00269,"55":0.00537,"57":0.00269,"78":0.0188,"80":0.01074,"81":0.06715,"83":0.01612,"89":0.01074,"90":0.00537,"91":0.01074,"93":0.00806,"94":0.00269,"95":0.00269,"96":0.00269,"97":0.00537,"98":0.0188,"99":0.12087,"100":0.80311,"101":0.02686,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 54 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 82 84 85 86 87 88 92 102 103 3.5 3.6"},D:{"38":0.0188,"43":0.00269,"49":0.00537,"61":0.00537,"63":0.00806,"65":0.00269,"67":0.00269,"69":0.01074,"71":0.00269,"73":0.00806,"74":0.00806,"76":0.00269,"79":0.00806,"80":0.01343,"83":0.05103,"85":0.06446,"86":0.15579,"87":0.01343,"88":0.00537,"89":0.02686,"90":0.00537,"91":0.08864,"92":0.02149,"93":0.01074,"94":0.01612,"95":0.08595,"96":0.03223,"97":0.04029,"98":0.05103,"99":0.17459,"100":3.65565,"101":14.60647,"102":1.34031,"103":0.01074,"104":0.02149,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 66 68 70 72 75 77 78 81 84"},F:{"28":0.00537,"75":0.00537,"85":0.16116,"86":0.14773,"87":0.01074,_:"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 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:{"12":0.00269,"15":0.01074,"16":0.01074,"18":0.01612,"84":0.00269,"89":0.01074,"92":0.00537,"94":0.00269,"95":0.00269,"96":0.00269,"97":0.01343,"98":0.01343,"99":0.01343,"100":0.09401,"101":1.26511,_:"13 14 17 79 80 81 83 85 86 87 88 90 91 93"},E:{"4":0,"12":0.00537,"13":0.0188,"14":0.11013,"15":0.04835,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.04566,"13.1":0.07252,"14.1":0.19876,"15.1":0.09938,"15.2-15.3":0.08864,"15.4":0.8434,"15.5":0.06715},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00618,"6.0-6.1":0.00618,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04325,"10.0-10.2":0,"10.3":0.01648,"11.0-11.2":0.00412,"11.3-11.4":0.02265,"12.0-12.1":0.01854,"12.2-12.5":0.26567,"13.0-13.1":0.01854,"13.2":0.01236,"13.3":0.03913,"13.4-13.7":0.14004,"14.0-14.4":0.5437,"14.5-14.8":1.36748,"15.0-15.1":0.85879,"15.2-15.3":2.29835,"15.4":14.93928},P:{"4":0.01044,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.02087,"8.2":0.02038,"9.2":0.06313,"10.1":0.02076,"11.1-11.2":0.03131,"12.0":0.01044,"13.0":0.03131,"14.0":0.05219,"15.0":0.03131,"16.0":0.83496},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.13895},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02417,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.48997},Q:{"10.4":0},O:{"0":0.68011},H:{"0":0.51234},L:{"0":49.71448},S:{"2.5":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 8bccb0199e4c6a..7c98bbb140bf01 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:{"29":0.00939,"34":0.00313,"45":0.00313,"52":0.01252,"61":0.01252,"63":0.04695,"65":0.00626,"69":0.00939,"72":0.00939,"77":0.00626,"78":0.02191,"79":0.00313,"82":0.00626,"83":0.00313,"85":0.00939,"88":0.03756,"89":0.00313,"91":0.03443,"92":0.00626,"94":0.01565,"95":0.00626,"96":0.01565,"97":0.02504,"98":1.09237,"99":1.50866,"100":0.07825,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 64 66 67 68 70 71 73 74 75 76 80 81 84 86 87 90 93 101 3.5 3.6"},D:{"48":0.00313,"49":0.00939,"50":0.00939,"51":0.00626,"55":0.00313,"57":0.00939,"62":0.01252,"63":0.0313,"64":0.00626,"65":0.00626,"68":0.00313,"69":0.00939,"70":0.00939,"71":0.01565,"72":0.00626,"74":0.02504,"75":0.03443,"76":0.00626,"78":0.00939,"79":0.02504,"80":0.02191,"81":0.01565,"83":0.01252,"84":0.00939,"85":0.00939,"86":0.02504,"87":0.09703,"88":0.0626,"89":0.03756,"90":0.01252,"91":0.04069,"92":0.05321,"93":0.02191,"94":0.02504,"95":0.0313,"96":0.15337,"97":0.13459,"98":0.21597,"99":4.04083,"100":9.96279,"101":0.1252,"102":0.00626,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 52 53 54 56 58 59 60 61 66 67 73 77 103 104"},F:{"36":0.00939,"42":0.00939,"44":0.00626,"54":0.00939,"63":0.00313,"64":0.1878,"68":0.00313,"78":0.00313,"79":0.02504,"82":0.00313,"83":0.00939,"84":0.17841,"85":0.78876,"86":0.03756,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 65 66 67 69 70 71 72 73 74 75 76 77 80 81 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.08764,"13":0.03443,"14":0.02504,"15":0.05008,"16":0.05947,"17":0.04069,"18":0.22849,"80":0.00313,"84":0.0313,"85":0.02817,"86":0.02817,"89":0.05634,"90":0.0313,"91":0.02191,"92":0.07512,"93":0.00313,"94":0.00626,"95":0.02504,"96":0.03443,"97":0.02191,"98":0.10329,"99":0.73868,"100":2.86708,"101":0.01252,_:"79 81 83 87 88"},E:{"4":0,"10":0.00626,"14":0.02191,_:"0 5 6 7 8 9 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.01565,"9.1":0.00313,"12.1":0.00939,"13.1":0.0313,"14.1":0.20658,"15.1":0.00939,"15.2-15.3":0.01252,"15.4":0.05321},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0006,"5.0-5.1":0.00218,"6.0-6.1":0,"7.0-7.1":0.00655,"8.1-8.4":0.00238,"9.0-9.2":0.00298,"9.3":0.09133,"10.0-10.2":0.00179,"10.3":0.0407,"11.0-11.2":0.00576,"11.3-11.4":0.00496,"12.0-12.1":0.01072,"12.2-12.5":0.22357,"13.0-13.1":0.01112,"13.2":0.00179,"13.3":0.02522,"13.4-13.7":0.06076,"14.0-14.4":0.2339,"14.5-14.8":0.32662,"15.0-15.1":0.13958,"15.2-15.3":0.38241,"15.4":0.41021},P:{"4":0.22923,"5.0-5.4":0.02018,"6.2-6.4":0.02062,"7.2-7.4":0.14587,"8.2":0.02018,"9.2":0.1042,"10.1":0.04036,"11.1-11.2":0.03126,"12.0":0.02084,"13.0":0.06252,"14.0":0.16671,"15.0":0.12504,"16.0":1.2712},I:{"0":0,"3":0,"4":0.00177,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00353,"4.2-4.3":0.00883,"4.4":0,"4.4.3-4.4.4":0.10951},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00313,"11":0.1252,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.01374},N:{"10":0.01484,_:"11"},L:{"0":55.2374},S:{"2.5":0.03435},R:{_:"0"},M:{"0":0.27476},Q:{"10.4":0.00687},O:{"0":6.18897},H:{"0":7.57614}}; +module.exports={C:{"29":0.00877,"34":0.00292,"47":0.00585,"52":0.00585,"59":0.00585,"61":0.00877,"63":0.04092,"69":0.00292,"72":0.00877,"78":0.01169,"80":0.00877,"81":0.01169,"82":0.00585,"87":0.00877,"88":0.01754,"91":0.02631,"94":0.00877,"95":0.00585,"96":0.00585,"97":0.01462,"98":0.02631,"99":0.53783,"100":1.92918,"101":0.09061,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 60 62 64 65 66 67 68 70 71 73 74 75 76 77 79 83 84 85 86 89 90 92 93 102 103 3.5 3.6"},D:{"11":0.00585,"25":0.00585,"40":0.00585,"42":0.00292,"49":0.00292,"50":0.00585,"55":0.00292,"57":0.00877,"61":0.00877,"63":0.00585,"64":0.01169,"67":0.00585,"69":0.01169,"70":0.01754,"71":0.02631,"74":0.01462,"75":0.03215,"76":0.00585,"77":0.00292,"78":0.00877,"79":0.02338,"80":0.01754,"81":0.02631,"83":0.00292,"84":0.01169,"85":0.00585,"86":0.04677,"87":0.10523,"88":0.04092,"89":0.02046,"90":0.01169,"91":0.07308,"92":0.06431,"93":0.02631,"94":0.00877,"95":0.02631,"96":0.13154,"97":0.08184,"98":0.07308,"99":0.21046,"100":2.40271,"101":8.77485,"102":0.75706,"103":0.00292,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 46 47 48 51 52 53 54 56 58 59 60 62 65 66 68 72 73 104"},F:{"34":0.00292,"36":0.00585,"37":0.00877,"42":0.00877,"45":0.00292,"54":0.01169,"64":0.04092,"69":0.01169,"79":0.02923,"80":0.00292,"81":0.00585,"82":0.00292,"84":0.00585,"85":0.37999,"86":0.5846,"87":0.05846,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 38 39 40 41 43 44 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 65 66 67 68 70 71 72 73 74 75 76 77 78 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.07308,"13":0.02631,"14":0.02923,"15":0.04677,"16":0.04092,"17":0.04969,"18":0.2163,"81":0.00292,"84":0.03508,"85":0.02046,"86":0.00585,"88":0.00292,"89":0.02923,"90":0.04385,"91":0.00585,"92":0.08477,"94":0.00292,"95":0.01169,"96":0.01462,"97":0.01462,"98":0.04092,"99":0.09938,"100":0.31861,"101":2.60147,_:"79 80 83 87 93"},E:{"4":0,"9":0.00585,"10":0.00585,"12":0.00585,"14":0.03215,"15":0.00292,_:"0 5 6 7 8 11 13 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.01462,"10.1":0.00292,"12.1":0.00585,"13.1":0.04385,"14.1":0.12277,"15.1":0.00877,"15.2-15.3":0.01462,"15.4":0.08184,"15.5":0.00585},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00124,"5.0-5.1":0.00082,"6.0-6.1":0.01421,"7.0-7.1":0.0103,"8.1-8.4":0,"9.0-9.2":0.00185,"9.3":0.13202,"10.0-10.2":0.00062,"10.3":0.03069,"11.0-11.2":0.00124,"11.3-11.4":0.00721,"12.0-12.1":0.00947,"12.2-12.5":0.1625,"13.0-13.1":0.00515,"13.2":0.00309,"13.3":0.01071,"13.4-13.7":0.06261,"14.0-14.4":0.23562,"14.5-14.8":0.2039,"15.0-15.1":0.16024,"15.2-15.3":0.1625,"15.4":0.84341},P:{"4":0.18938,"5.0-5.4":0.01031,"6.2-6.4":0.03063,"7.2-7.4":0.14729,"8.2":0.02038,"9.2":0.06313,"10.1":0.02076,"11.1-11.2":0.02104,"12.0":0.03097,"13.0":0.03156,"14.0":0.17886,"15.0":0.08417,"16.0":0.87323},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00257,"4.2-4.3":0.00836,"4.4":0,"4.4.3-4.4.4":0.10229},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00877,"11":0.09938,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.01415},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.38216},Q:{"10.4":0.01415},O:{"0":7.12654},H:{"0":7.83235},L:{"0":56.84131},S:{"2.5":0.04246}}; 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 eec9a2b089a1b5..a1c5c07ec16465 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js @@ -1 +1 @@ -module.exports={C:{"4":0.85889,"34":0.00919,"52":0.03215,"56":0.00459,"66":0.00459,"73":0.00459,"78":0.03674,"88":0.00919,"90":0.01378,"91":0.02756,"93":0.00459,"94":0.0643,"95":0.01378,"96":0.19291,"97":0.01837,"98":0.43174,"99":1.13906,"100":0.01378,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 92 101 3.5 3.6"},D:{"22":0.00919,"38":0.01378,"49":0.07808,"52":0.01837,"53":0.00459,"63":0.00919,"65":0.01378,"66":0.02756,"67":0.01378,"69":0.01378,"70":0.00459,"72":0.00459,"73":0.00459,"74":0.00919,"75":0.01378,"76":0.07808,"77":0.00919,"78":0.00919,"79":0.08727,"80":0.01378,"81":0.01837,"83":0.01837,"84":0.01837,"85":0.01837,"86":0.01837,"87":0.0689,"88":0.02756,"89":0.02297,"90":0.04134,"91":0.07808,"92":0.05512,"93":0.04134,"94":0.04593,"95":0.22506,"96":0.1286,"97":0.14698,"98":0.23884,"99":5.74584,"100":25.82185,"101":0.395,"102":0.00459,_:"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 47 48 50 51 54 55 56 57 58 59 60 61 62 64 68 71 103 104"},F:{"28":0.00919,"84":0.21587,"85":0.74407,"86":0.00919,_:"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 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.01378,"15":0.00919,"16":0.00459,"17":0.00919,"18":0.02297,"84":0.00459,"85":0.00459,"89":0.00459,"90":0.00459,"91":0.00459,"92":0.01378,"94":0.00459,"95":0.00459,"96":0.01378,"97":0.16076,"98":0.02756,"99":0.51442,"100":2.87981,"101":0.04134,_:"13 14 79 80 81 83 86 87 88 93"},E:{"4":0,"13":0.01837,"14":0.11942,"15":0.05052,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.01378,"10.1":0.00459,"11.1":0.01837,"12.1":0.04134,"13.1":0.14238,"14.1":0.3261,"15.1":0.09645,"15.2-15.3":0.10105,"15.4":0.50064},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00723,"6.0-6.1":0.00181,"7.0-7.1":0.01084,"8.1-8.4":0.01084,"9.0-9.2":0.01716,"9.3":0.07316,"10.0-10.2":0.00181,"10.3":0.0849,"11.0-11.2":0.01084,"11.3-11.4":0.03613,"12.0-12.1":0.00903,"12.2-12.5":0.43356,"13.0-13.1":0.00994,"13.2":0.00452,"13.3":0.02981,"13.4-13.7":0.09755,"14.0-14.4":0.26194,"14.5-14.8":1.02879,"15.0-15.1":0.3351,"15.2-15.3":2.93644,"15.4":3.6229},P:{"4":0.11895,"5.0-5.4":0.06035,"6.2-6.4":0.02049,"7.2-7.4":0.0757,"8.2":0.01006,"9.2":0.03061,"10.1":0.09052,"11.1-11.2":0.03244,"12.0":0.06122,"13.0":0.02163,"14.0":0.03244,"15.0":0.02163,"16.0":0.95163},I:{"0":0,"3":0,"4":0.00122,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00244,"4.2-4.3":0.00426,"4.4":0,"4.4.3-4.4.4":0.03534},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00459,"11":0.15157,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03748,_:"11"},L:{"0":44.28814},S:{"2.5":0},R:{_:"0"},M:{"0":0.19465},Q:{"10.4":0},O:{"0":0.05948},H:{"0":0.19452}}; +module.exports={C:{"4":0.84093,"34":0.00475,"52":0.02376,"56":0.00475,"66":0.0095,"73":0.00475,"78":0.03326,"88":0.01425,"90":0.0095,"91":0.02851,"94":0.06176,"95":0.00475,"96":0.10927,"97":0.0095,"98":0.01425,"99":0.28981,"100":1.24951,"101":0.01425,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 92 93 102 103 3.5 3.6"},D:{"22":0.00475,"38":0.0095,"49":0.06651,"52":0.019,"63":0.00475,"65":0.0095,"66":0.02376,"67":0.01425,"69":0.0095,"70":0.00475,"72":0.00475,"73":0.00475,"74":0.0095,"75":0.0095,"76":0.02851,"77":0.01425,"78":0.0095,"79":0.07127,"80":0.01425,"81":0.019,"83":0.01425,"84":0.02376,"85":0.019,"86":0.019,"87":0.06651,"88":0.02851,"89":0.019,"90":0.02851,"91":0.09027,"92":0.05701,"93":0.02851,"94":0.03801,"95":0.02851,"96":0.09502,"97":0.09977,"98":0.11402,"99":0.30882,"100":6.56113,"101":24.52941,"102":2.50853,"103":0.00475,_:"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 47 48 50 51 53 54 55 56 57 58 59 60 61 62 64 68 71 104"},F:{"28":0.00475,"84":0.00475,"85":0.55112,"86":0.54161,"87":0.03801,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01425,"15":0.0095,"16":0.00475,"17":0.0095,"18":0.019,"85":0.00475,"92":0.0095,"94":0.00475,"95":0.00475,"96":0.0095,"97":0.03326,"98":0.01425,"99":0.13303,"100":0.16629,"101":3.33995,_:"13 14 79 80 81 83 84 86 87 88 89 90 91 93"},E:{"4":0,"13":0.01425,"14":0.10927,"15":0.04751,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.0095,"10.1":0.00475,"11.1":0.01425,"12.1":0.03326,"13.1":0.14728,"14.1":0.30882,"15.1":0.07602,"15.2-15.3":0.07127,"15.4":0.87418,"15.5":0.11402},G:{"8":0.0009,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0054,"6.0-6.1":0.0009,"7.0-7.1":0.0144,"8.1-8.4":0.0063,"9.0-9.2":0.01711,"9.3":0.06032,"10.0-10.2":0.0009,"10.3":0.05852,"11.0-11.2":0.0081,"11.3-11.4":0.03151,"12.0-12.1":0.0072,"12.2-12.5":0.38533,"13.0-13.1":0.0081,"13.2":0.0036,"13.3":0.02881,"13.4-13.7":0.08193,"14.0-14.4":0.23408,"14.5-14.8":0.82197,"15.0-15.1":0.21607,"15.2-15.3":0.6032,"15.4":6.40383},P:{"4":0.0945,"5.0-5.4":0.04028,"6.2-6.4":0.0705,"7.2-7.4":0.0735,"8.2":0.01019,"9.2":0.02051,"10.1":0.06042,"11.1-11.2":0.0315,"12.0":0.02051,"13.0":0.021,"14.0":0.0315,"15.0":0.021,"16.0":0.3465},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00212,"4.2-4.3":0.00564,"4.4":0,"4.4.3-4.4.4":0.03949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00475,"11":0.14728,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.17325},Q:{"10.4":0},O:{"0":0.05775},H:{"0":0.18887},L:{"0":43.29847},S:{"2.5":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 df92f4bbd890ed..2c88fbbc27db7a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js @@ -1 +1 @@ -module.exports={C:{"34":0.0207,"39":0.00828,"52":0.0207,"60":0.02898,"78":0.01656,"88":0.00414,"91":0.04554,"94":0.00414,"95":0.00828,"96":0.00414,"97":0.01242,"98":0.35604,"99":1.10952,"100":0.02898,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 101 3.5 3.6"},D:{"22":0.00828,"34":0.0207,"38":0.07866,"47":0.00828,"49":0.06624,"53":0.06624,"55":0.05382,"56":0.02898,"62":0.00828,"63":0.00414,"65":0.00828,"67":0.00828,"68":0.00828,"69":0.01242,"70":0.02484,"71":0.01242,"72":0.01656,"73":0.01242,"74":0.01656,"75":0.02898,"76":0.01242,"77":0.01242,"78":0.01656,"79":0.31464,"80":0.0207,"81":0.0621,"83":0.04968,"84":0.03312,"85":0.03726,"86":0.05382,"87":0.07866,"88":0.02898,"89":0.0414,"90":0.0207,"91":0.0828,"92":0.14076,"93":0.02484,"94":0.0414,"95":0.03312,"96":0.11592,"97":0.23598,"98":0.2277,"99":4.77342,"100":23.99958,"101":0.31878,"102":0.02898,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 61 64 66 103 104"},F:{"28":0.03312,"36":0.05382,"40":0.01242,"46":0.05382,"84":0.09522,"85":0.36018,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00828,"84":0.00414,"97":0.00828,"98":0.01242,"99":0.2484,"100":1.92096,"101":0.0207,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96"},E:{"4":0,"8":0.00828,"13":0.03312,"14":0.17388,"15":0.1035,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00828,"11.1":0.01242,"12.1":0.02484,"13.1":0.13248,"14.1":0.61272,"15.1":0.19458,"15.2-15.3":0.19872,"15.4":0.92322},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00284,"5.0-5.1":0.00568,"6.0-6.1":0.0071,"7.0-7.1":0.0213,"8.1-8.4":0.03124,"9.0-9.2":0.02556,"9.3":0.2371,"10.0-10.2":0.01704,"10.3":0.16611,"11.0-11.2":0.0213,"11.3-11.4":0.02556,"12.0-12.1":0.03549,"12.2-12.5":0.646,"13.0-13.1":0.02982,"13.2":0.01136,"13.3":0.06673,"13.4-13.7":0.16327,"14.0-14.4":0.58069,"14.5-14.8":1.37151,"15.0-15.1":0.92428,"15.2-15.3":3.83056,"15.4":5.97584},P:{"4":0.71413,"5.0-5.4":0.02018,"6.2-6.4":0.02062,"7.2-7.4":0.05251,"8.2":0.02018,"9.2":0.0105,"10.1":0.04036,"11.1-11.2":0.04201,"12.0":0.0105,"13.0":0.06301,"14.0":0.07351,"15.0":0.05251,"16.0":1.76433},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00606,"4.4":0,"4.4.3-4.4.4":0.02323},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12834,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01484,_:"11"},L:{"0":41.46173},S:{"2.5":0},R:{_:"0"},M:{"0":0.14062},Q:{"10.4":0.00586},O:{"0":0.93158},H:{"0":0.56024}}; +module.exports={C:{"34":0.02392,"39":0.00797,"52":0.01994,"60":0.02791,"66":0.00399,"78":0.01595,"79":0.00399,"81":0.00399,"88":0.00399,"91":0.03987,"94":0.00399,"95":0.00797,"96":0.00399,"97":0.00797,"98":0.01595,"99":0.23125,"100":1.20407,"101":0.02392,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 80 82 83 84 85 86 87 89 90 92 93 102 103 3.5 3.6"},D:{"22":0.00797,"34":0.02392,"38":0.08373,"47":0.01196,"49":0.07177,"53":0.07974,"55":0.06778,"56":0.03588,"58":0.00399,"60":0.00399,"61":0.00399,"62":0.00797,"63":0.00399,"65":0.01196,"66":0.00797,"67":0.01196,"68":0.00797,"69":0.01196,"70":0.02791,"71":0.01196,"72":0.01196,"73":0.01595,"74":0.01595,"75":0.0319,"76":0.01196,"77":0.00797,"78":0.01595,"79":0.37478,"80":0.02392,"81":0.05582,"83":0.05981,"84":0.0319,"85":0.04386,"86":0.06379,"87":0.07177,"88":0.0319,"89":0.03987,"90":0.01994,"91":0.08373,"92":0.15549,"93":0.02392,"94":0.03588,"95":0.02791,"96":0.09569,"97":0.27909,"98":0.11961,"99":0.23922,"100":4.10262,"101":21.27862,"102":1.65461,"103":0.02791,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 59 64 104"},F:{"28":0.04784,"36":0.05981,"40":0.01196,"46":0.06379,"85":0.23922,"86":0.23523,"87":0.00797,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00797,"84":0.00399,"98":0.00797,"99":0.01196,"100":0.09968,"101":2.00546,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97"},E:{"4":0,"12":0.00399,"13":0.0319,"14":0.17543,"15":0.08373,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00797,"11.1":0.01595,"12.1":0.02392,"13.1":0.13157,"14.1":0.56217,"15.1":0.13556,"15.2-15.3":0.13157,"15.4":1.99749,"15.5":0.11961},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00281,"5.0-5.1":0.00844,"6.0-6.1":0.01125,"7.0-7.1":0.02531,"8.1-8.4":0.03516,"9.0-9.2":0.03234,"9.3":0.24328,"10.0-10.2":0.01406,"10.3":0.18141,"11.0-11.2":0.01969,"11.3-11.4":0.02813,"12.0-12.1":0.03797,"12.2-12.5":0.64547,"13.0-13.1":0.02672,"13.2":0.00984,"13.3":0.05906,"13.4-13.7":0.15047,"14.0-14.4":0.48375,"14.5-14.8":1.09969,"15.0-15.1":0.59484,"15.2-15.3":1.08703,"15.4":9.27002},P:{"4":0.86487,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.0521,"9.2":0.01042,"11.1-11.2":0.0521,"12.0":0.01042,"13.0":0.0521,"14.0":0.0521,"15.0":0.0521,"16.0":0.84403},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.002,"4.2-4.3":0.00401,"4.4":0,"4.4.3-4.4.4":0.02406},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14353,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":42.71637},S:{"2.5":0},R:{_:"0"},M:{"0":0.15035},Q:{"10.4":0.00601},O:{"0":0.99231},H:{"0":0.60922}}; 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 9db87b34004775..9d100910c5fb53 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:{"45":0.00857,"52":0.00428,"59":0.00857,"61":0.00857,"66":0.00428,"67":0.00428,"72":0.00428,"78":0.01285,"87":0.00428,"88":0.02999,"91":0.0257,"96":0.00857,"97":0.00857,"98":0.41126,"99":1.22951,"100":0.00857,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 93 94 95 101 3.5 3.6"},D:{"26":0.02142,"33":0.05998,"40":0.01714,"43":0.04284,"49":0.01285,"55":0.00857,"56":0.01285,"60":0.00857,"63":0.01714,"65":0.01285,"68":0.02142,"69":0.00428,"70":0.01285,"73":0.00857,"74":0.08568,"77":0.00428,"79":0.02142,"80":0.03856,"81":0.41126,"83":0.03856,"84":0.00857,"86":0.02142,"87":0.08568,"88":0.01714,"89":0.01285,"90":0.02999,"91":0.03427,"92":0.08568,"93":0.02999,"94":0.02142,"95":0.06854,"96":0.04284,"97":0.11567,"98":0.10282,"99":2.85314,"100":13.61027,"101":0.17564,"102":0.00428,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 34 35 36 37 38 39 41 42 44 45 46 47 48 50 51 52 53 54 57 58 59 61 62 64 66 67 71 72 75 76 78 85 103 104"},F:{"79":0.00428,"80":0.04284,"84":0.22277,"85":1.26378,"86":0.1885,_:"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 81 82 83 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.03427,"13":0.01285,"14":0.00428,"15":0.00428,"16":0.00857,"17":0.00857,"18":0.05998,"84":0.0257,"85":0.00857,"88":0.00857,"89":0.05141,"90":0.00428,"92":0.02999,"96":0.01714,"97":0.01285,"98":0.0257,"99":0.39413,"100":1.59793,"101":0.05141,_:"79 80 81 83 86 87 91 93 94 95"},E:{"4":0,"13":0.00857,"14":0.00857,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00428,"12.1":0.00428,"13.1":0.05569,"14.1":0.03856,"15.1":0.0257,"15.2-15.3":0.01714,"15.4":0.07283},G:{"8":0.00129,"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.0223,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01672,"10.0-10.2":0.003,"10.3":0.05917,"11.0-11.2":0.01115,"11.3-11.4":0.06046,"12.0-12.1":0.00815,"12.2-12.5":1.33052,"13.0-13.1":0.05703,"13.2":0.05231,"13.3":0.03044,"13.4-13.7":0.11577,"14.0-14.4":0.43222,"14.5-14.8":0.36104,"15.0-15.1":0.20839,"15.2-15.3":0.98835,"15.4":0.52869},P:{"4":0.91295,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":0.18674,"8.2":0.083,"9.2":0.06225,"10.1":0.01037,"11.1-11.2":0.06225,"12.0":0.01037,"13.0":0.14524,"14.0":0.12449,"15.0":0.03112,"16.0":0.67434},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00015,"4.2-4.3":0.0004,"4.4":0,"4.4.3-4.4.4":0.01087},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0814,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.02858},O:{"0":0.23436},H:{"0":4.56193},L:{"0":63.16625},S:{"2.5":0.06859},R:{_:"0"},M:{"0":0.26865},Q:{"10.4":0.00572}}; +module.exports={C:{"57":0.03923,"59":0.00872,"61":0.0218,"66":0.00436,"72":0.00436,"78":0.00436,"88":0.03487,"89":0.00872,"91":0.0218,"97":0.00436,"98":0.00436,"99":0.27462,"100":1.63027,"101":0.03923,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 93 94 95 96 102 103 3.5 3.6"},D:{"11":0.00872,"33":0.02615,"40":0.02615,"43":0.03487,"49":0.06974,"56":0.00436,"58":0.00436,"59":0.01308,"60":0.03051,"63":0.00872,"65":0.00436,"68":0.01744,"69":0.00872,"70":0.01308,"71":0.00436,"73":0.00872,"74":0.0741,"77":0.00436,"79":0.05231,"80":0.05667,"81":0.38795,"83":0.0218,"84":0.00872,"85":0.01308,"86":0.01308,"87":0.47513,"88":0.00872,"89":0.00872,"90":0.04795,"91":0.03051,"92":0.15257,"93":0.0218,"94":0.01744,"95":0.03487,"96":0.05667,"97":0.0741,"98":0.06974,"99":0.26154,"100":3.97541,"101":13.26008,"102":0.88488,"103":0.00436,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 41 42 44 45 46 47 48 50 51 52 53 54 55 57 61 62 64 66 67 72 75 76 78 104"},F:{"42":0.00436,"53":0.00436,"79":0.00872,"80":0.01744,"81":0.00872,"84":0.0218,"85":0.4359,"86":0.7759,"87":0.08718,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03051,"13":0.01744,"14":0.00436,"15":0.00872,"16":0.06103,"17":0.00436,"18":0.08282,"84":0.01744,"89":0.04795,"90":0.01308,"91":0.01744,"92":0.04359,"94":0.00872,"96":0.00872,"97":0.00436,"98":0.02615,"99":0.22667,"100":0.21795,"101":2.14899,_:"79 80 81 83 85 86 87 88 93 95"},E:{"4":0,"13":0.00872,"14":0.00872,"15":0.00436,_:"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.00436,"12.1":0.00872,"13.1":0.04795,"14.1":0.03923,"15.1":0.01744,"15.2-15.3":0.01744,"15.4":0.11333,"15.5":0.01744},G:{"8":0,"3.2":0,"4.0-4.1":0.00638,"4.2-4.3":0.00046,"5.0-5.1":0.00046,"6.0-6.1":0,"7.0-7.1":0.08295,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01322,"10.0-10.2":0.00228,"10.3":0.08477,"11.0-11.2":0.01003,"11.3-11.4":0.04649,"12.0-12.1":0.01914,"12.2-12.5":1.10567,"13.0-13.1":0.03646,"13.2":0.02826,"13.3":0.03783,"13.4-13.7":0.11713,"14.0-14.4":0.54098,"14.5-14.8":0.34364,"15.0-15.1":0.13399,"15.2-15.3":0.64854,"15.4":1.29845},P:{"4":0.99382,"5.0-5.4":0.0204,"6.2-6.4":0.03077,"7.2-7.4":0.16393,"8.2":0.02049,"9.2":0.07172,"10.1":0.01025,"11.1-11.2":0.05123,"12.0":0.02049,"13.0":0.10246,"14.0":0.10246,"15.0":0.03074,"16.0":0.49179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00026,"4.2-4.3":0.00052,"4.4":0,"4.4.3-4.4.4":0.01614},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10462,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01692},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.47376},Q:{"10.4":0},O:{"0":0.29892},H:{"0":4.53331},L:{"0":59.93598},S:{"2.5":0.06768}}; 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 8f78f0a89098d4..dd4d934bcf8635 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js @@ -1 +1 @@ -module.exports={C:{"34":0.03148,"52":0.04329,"60":0.01181,"72":0.00787,"78":0.03148,"82":0.00394,"86":0.02755,"91":0.03542,"94":0.00787,"95":0.01574,"96":0.00394,"97":0.03148,"98":0.66502,"99":1.99111,"100":0.0669,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 83 84 85 87 88 89 90 92 93 101 3.5 3.6"},D:{"49":0.06296,"53":0.00787,"63":0.01574,"69":0.03542,"70":0.01181,"71":0.00394,"73":0.00787,"74":0.01574,"75":0.01181,"76":0.00394,"77":0.00394,"78":0.02361,"79":0.01968,"80":0.01574,"81":0.01181,"83":0.01181,"84":0.01574,"85":0.01574,"86":0.02361,"87":0.03148,"88":0.02755,"89":0.01968,"90":0.01181,"91":0.0787,"92":0.04722,"93":0.01968,"94":0.04722,"95":0.03542,"96":0.09838,"97":0.13379,"98":0.15347,"99":3.52576,"100":18.02624,"101":0.48401,"102":0.02361,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 68 72 103 104"},F:{"40":0.00787,"79":0.03542,"82":0.00394,"83":0.01181,"84":0.13379,"85":0.75159,"86":0.00787,"87":0.00394,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02755,"13":0.02755,"14":0.01181,"15":0.02361,"16":0.03148,"17":0.02361,"18":0.0787,"81":0.01574,"83":0.00394,"84":0.03148,"85":0.00787,"88":0.01968,"89":0.02755,"90":0.00787,"91":0.00394,"92":0.05903,"93":0.01574,"94":0.03148,"95":0.01181,"96":0.12592,"97":0.07083,"98":0.0787,"99":0.66895,"100":4.43475,"101":0.03542,_:"79 80 86 87"},E:{"4":0,"8":0.01968,"13":0.01181,"14":0.07083,"15":0.02755,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01181,"12.1":0.00787,"13.1":0.08657,"14.1":0.17708,"15.1":0.03148,"15.2-15.3":0.11018,"15.4":0.38957},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00272,"6.0-6.1":0.00204,"7.0-7.1":0.00679,"8.1-8.4":0.04006,"9.0-9.2":0.00407,"9.3":0.06789,"10.0-10.2":0.00136,"10.3":0.35101,"11.0-11.2":0.00272,"11.3-11.4":0.00747,"12.0-12.1":0.03123,"12.2-12.5":0.63346,"13.0-13.1":0.02784,"13.2":0.00136,"13.3":0.01358,"13.4-13.7":0.07536,"14.0-14.4":0.7869,"14.5-14.8":0.71153,"15.0-15.1":0.39582,"15.2-15.3":1.78766,"15.4":1.83587},P:{"4":0.90802,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":0.71417,"8.2":0.083,"9.2":0.01042,"10.1":0.03061,"11.1-11.2":0.13263,"12.0":0.0204,"13.0":0.10202,"14.0":0.15304,"15.0":0.08162,"16.0":2.8975},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00271,"4.2-4.3":0.00348,"4.4":0,"4.4.3-4.4.4":0.0302},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.50762,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.64289},H:{"0":1.70536},L:{"0":49.52763},S:{"2.5":0},R:{_:"0"},M:{"0":0.75813},Q:{"10.4":0}}; +module.exports={C:{"34":0.01082,"44":0.00361,"47":0.00361,"52":0.02524,"60":0.01442,"72":0.03245,"78":0.01082,"82":0.00721,"86":0.02163,"89":0.00361,"91":0.02163,"94":0.00361,"95":0.00361,"96":0.01442,"98":0.04687,"99":0.36771,"100":2.35046,"101":0.04326,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 83 84 85 87 88 90 92 93 97 102 103 3.5 3.6"},D:{"49":0.02524,"56":0.00721,"63":0.00721,"68":0.00361,"69":0.04326,"70":0.00721,"71":0.00361,"74":0.00361,"75":0.00721,"76":0.00721,"77":0.01442,"78":0.00361,"79":0.05408,"80":0.01082,"81":0.00721,"83":0.00721,"84":0.01442,"85":0.00361,"86":0.02163,"87":0.02524,"88":0.02524,"89":0.01082,"90":0.02524,"91":0.04326,"92":0.05047,"93":0.02884,"94":0.03245,"95":0.04687,"96":0.04687,"97":0.13339,"98":0.06129,"99":0.34248,"100":3.51848,"101":14.62909,"102":1.41677,"103":0.01803,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 67 72 73 104"},F:{"28":0.01442,"79":0.00361,"83":0.00361,"84":0.00721,"85":0.37492,"86":0.52633,"87":0.02163,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01803,"13":0.01082,"14":0.00721,"15":0.01082,"16":0.01803,"17":0.01803,"18":0.0685,"83":0.00361,"84":0.01442,"85":0.00721,"89":0.01442,"92":0.05768,"93":0.00721,"94":0.00721,"95":0.02163,"96":0.09373,"97":0.02884,"98":0.02163,"99":0.11176,"100":0.23072,"101":3.97271,_:"79 80 81 86 87 88 90 91"},E:{"4":0,"13":0.01082,"14":0.03966,"15":0.02163,_:"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.00721,"12.1":0.01803,"13.1":0.05047,"14.1":0.18025,"15.1":0.05408,"15.2-15.3":0.05408,"15.4":0.85078,"15.5":0.05768},G:{"8":0,"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.01856,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.16778,"10.0-10.2":0.00143,"10.3":0.15779,"11.0-11.2":0.00143,"11.3-11.4":0.00428,"12.0-12.1":0.01999,"12.2-12.5":0.46622,"13.0-13.1":0.01285,"13.2":0.00143,"13.3":0.02499,"13.4-13.7":0.08996,"14.0-14.4":0.4448,"14.5-14.8":0.66756,"15.0-15.1":0.51191,"15.2-15.3":0.69897,"15.4":3.84472},P:{"4":1.15522,"5.0-5.4":0.0204,"6.2-6.4":0.03077,"7.2-7.4":0.89964,"8.2":0.02049,"9.2":0.01022,"10.1":0.02045,"11.1-11.2":0.14313,"12.0":0.02045,"13.0":0.12268,"14.0":0.21469,"15.0":0.06134,"16.0":1.68683},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00289,"4.2-4.3":0.00347,"4.4":0,"4.4.3-4.4.4":0.02562},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.33166,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.53079},Q:{"10.4":0},O:{"0":0.49242},H:{"0":1.58019},L:{"0":52.40107},S:{"2.5":0}}; 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 91713bfb34d3d0..7673ab6ade365c 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:{"45":0.01703,"52":0.20013,"56":0.01703,"60":0.04684,"68":0.02129,"78":0.39174,"80":0.00852,"81":0.00426,"89":0.00852,"90":0.01277,"91":0.17458,"93":0.01703,"94":0.01277,"96":0.03832,"97":0.04684,"98":1.60952,"99":4.59438,"100":0.00852,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 82 83 84 85 86 87 88 92 95 101 3.5 3.6"},D:{"49":0.09368,"50":0.00852,"58":0.01703,"65":0.00852,"71":0.00852,"74":0.01703,"76":0.0809,"78":0.00852,"79":0.01277,"80":0.07664,"83":0.00426,"84":0.00852,"85":0.06387,"86":0.00852,"87":0.09793,"88":0.02555,"89":0.01703,"90":0.01703,"91":0.00852,"92":0.01277,"93":0.05535,"94":0.03406,"95":0.10645,"96":0.17884,"97":0.20438,"98":0.33212,"99":3.49582,"100":16.0995,"101":0.31083,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 59 60 61 62 63 64 66 67 68 69 70 72 73 75 77 81 102 103 104"},F:{"46":0.00852,"84":0.09793,"85":0.58335,"86":0.01277,_:"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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00426,"15":0.00426,"16":0.00426,"17":0.00426,"18":0.07239,"84":0.00852,"85":0.01277,"91":0.01277,"92":0.03406,"96":0.02129,"97":0.11922,"98":0.03832,"99":0.52373,"100":3.47453,"101":0.07664,_:"12 14 79 80 81 83 86 87 88 89 90 93 94 95"},E:{"4":0,"12":0.03832,"13":0.08516,"14":0.17884,"15":0.04684,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00426,"10.1":0.03832,"11.1":0.03832,"12.1":0.22142,"13.1":0.64296,"14.1":1.54991,"15.1":0.11071,"15.2-15.3":0.30232,"15.4":2.61441},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00251,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00126,"8.1-8.4":0.00502,"9.0-9.2":0,"9.3":0.08412,"10.0-10.2":0.00377,"10.3":0.18079,"11.0-11.2":0.00753,"11.3-11.4":0.4683,"12.0-12.1":0.01758,"12.2-12.5":1.00439,"13.0-13.1":0.02009,"13.2":0.00377,"13.3":0.29002,"13.4-13.7":0.1381,"14.0-14.4":0.39046,"14.5-14.8":1.48147,"15.0-15.1":0.58506,"15.2-15.3":4.18453,"15.4":3.68108},P:{"4":0.21073,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":1.2433,"8.2":0.01054,"9.2":0.04215,"10.1":0.01054,"11.1-11.2":0.68487,"12.0":0.05268,"13.0":0.56897,"14.0":0.38985,"15.0":0.20019,"16.0":5.54216},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00077,"4.4":0,"4.4.3-4.4.4":0.02793},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12348,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.01722},H:{"0":0.1087},L:{"0":35.95313},S:{"2.5":0},R:{_:"0"},M:{"0":0.52243},Q:{"10.4":0}}; +module.exports={C:{"48":0.00817,"50":0.00817,"52":0.18782,"56":0.00817,"60":0.03266,"68":0.04083,"69":0.00817,"72":0.01633,"78":0.27356,"80":0.00817,"83":0.00817,"88":0.00408,"91":0.20415,"94":0.02042,"95":0.00817,"96":0.00817,"97":0.15515,"98":0.05308,"99":1.05341,"100":4.72811,"101":0.02858,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 55 57 58 59 61 62 63 64 65 66 67 70 71 73 74 75 76 77 79 81 82 84 85 86 87 89 90 92 93 102 103 3.5 3.6"},D:{"30":0.00817,"49":0.03675,"53":0.05716,"59":0.00817,"60":0.00817,"62":0.00408,"63":0.01633,"64":0.00408,"65":0.00817,"67":0.00408,"70":0.00817,"73":0.00817,"74":0.02042,"76":0.13066,"77":0.00817,"78":0.0245,"79":0.01633,"80":0.01225,"81":0.00817,"83":0.00817,"85":0.01225,"86":0.01225,"87":0.03675,"88":0.01225,"89":0.0245,"90":0.09391,"91":0.01225,"92":0.049,"93":0.07758,"94":0.11841,"95":0.02042,"96":0.14699,"97":0.17965,"98":0.13066,"99":0.56754,"100":3.86252,"101":14.7478,"102":1.26573,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 61 66 68 69 71 72 75 84 103 104"},F:{"84":0.00408,"85":0.32256,"86":0.35522,"87":0.02042,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.02042,"16":0.00817,"17":0.00408,"18":0.07349,"84":0.00817,"85":0.00817,"87":0.00408,"90":0.00408,"91":0.01225,"92":0.01225,"94":0.00817,"95":0.00408,"97":0.11432,"98":0.01225,"99":0.04491,"100":0.1674,"101":4.64645,_:"12 13 14 79 80 81 83 86 88 89 93 96"},E:{"4":0,"12":0.02858,"13":0.02858,"14":0.15515,"15":0.03266,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01225,"10.1":0.02858,"11.1":0.04491,"12.1":0.10616,"13.1":0.38789,"14.1":0.91051,"15.1":0.11841,"15.2-15.3":0.20415,"15.4":1.88226,"15.5":0.37155},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.00313,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06568,"10.0-10.2":0.00469,"10.3":0.07507,"11.0-11.2":0.00469,"11.3-11.4":0.2643,"12.0-12.1":0.02502,"12.2-12.5":0.83199,"13.0-13.1":0.01095,"13.2":0.00156,"13.3":0.18767,"13.4-13.7":0.12511,"14.0-14.4":0.34406,"14.5-14.8":1.28552,"15.0-15.1":0.60366,"15.2-15.3":1.38718,"15.4":10.41243},P:{"4":0.02081,"5.0-5.4":0.02006,"6.2-6.4":0.03077,"7.2-7.4":0.79062,"8.2":0.02049,"9.2":0.05201,"10.1":0.02045,"11.1-11.2":0.38491,"12.0":0.04161,"13.0":0.27047,"14.0":0.27047,"15.0":0.15604,"16.0":2.30944},I:{"0":0,"3":0,"4":0.00032,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00032,"4.4":0,"4.4.3-4.4.4":0.02895},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09799,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.26627},Q:{"10.4":0},O:{"0":0.02959},H:{"0":0.06722},L:{"0":36.4731},S:{"2.5":0}}; 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 b26a9a8fd8a857..85fcab1a4b69a7 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:{"25":0.00323,"36":0.00162,"38":0.00323,"47":0.00808,"48":0.00323,"56":0.00162,"59":0.00162,"60":0.00323,"63":0.00162,"65":0.01292,"72":0.00646,"76":0.00969,"78":0.00646,"79":0.00323,"83":0.00162,"84":0.00485,"85":0.00323,"87":0.00323,"88":0.01454,"89":0.01131,"91":0.01615,"92":0.00323,"93":0.01131,"94":0.00162,"95":0.04361,"96":0.00323,"97":0.08075,"98":0.63147,"99":1.53425,"100":0.02907,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 37 39 40 41 42 43 44 45 46 49 50 51 52 53 54 55 57 58 61 62 64 66 67 68 69 70 71 73 74 75 77 80 81 82 86 90 101 3.5 3.6"},D:{"21":0.00162,"28":0.02907,"37":0.00162,"38":0.00323,"39":0.00323,"40":0.01292,"43":0.00162,"46":0.00485,"47":0.00323,"49":0.01615,"55":0.00323,"58":0.04038,"61":0.00162,"65":0.00323,"66":0.00808,"67":0.00162,"70":0.00646,"71":0.00323,"72":0.00162,"76":0.01131,"77":0.00485,"79":0.16958,"80":0.01454,"83":0.00646,"85":0.00323,"86":0.00646,"87":0.02907,"88":0.01292,"90":0.00969,"91":0.00485,"92":0.04522,"93":0.00323,"94":0.00808,"95":0.01131,"96":0.03876,"97":0.04361,"98":0.03392,"99":1.24355,"100":4.19254,"101":0.01938,"102":0.00162,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 29 30 31 32 33 34 35 36 41 42 44 45 48 50 51 52 53 54 56 57 59 60 62 63 64 68 69 73 74 75 78 81 84 89 103 104"},F:{"37":0.00646,"64":0.00162,"65":0.00646,"77":0.09852,"79":0.00162,"80":0.00162,"82":0.00162,"83":0.00646,"84":0.04684,"85":0.2907,"86":0.00162,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 73 74 75 76 78 81 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.0856,"13":0.00485,"15":0.00162,"16":0.021,"17":0.00323,"18":0.03715,"83":0.00323,"84":0.01292,"85":0.00162,"86":0.00323,"88":0.01292,"89":0.00808,"90":0.00323,"92":0.01454,"93":0.00323,"94":0.00485,"95":0.00323,"96":0.61855,"97":0.01615,"98":0.10175,"99":0.23579,"100":1.04491,"101":0.00969,_:"14 79 80 81 87 91"},E:{"4":0,"14":0.03392,"15":0.00485,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.00323,"10.1":0.00485,"12.1":0.00323,"13.1":0.00969,"14.1":0.01938,"15.1":0.00808,"15.2-15.3":0.03392,"15.4":0.15343},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.00747,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0112,"10.0-10.2":0,"10.3":0.55641,"11.0-11.2":0.31443,"11.3-11.4":0.04631,"12.0-12.1":0.05751,"12.2-12.5":0.99557,"13.0-13.1":0.01494,"13.2":0.00373,"13.3":0.04705,"13.4-13.7":0.15161,"14.0-14.4":1.08968,"14.5-14.8":1.85596,"15.0-15.1":0.39659,"15.2-15.3":1.28013,"15.4":0.64156},P:{"4":0.10265,"5.0-5.4":0.0308,"6.2-6.4":0.07186,"7.2-7.4":0.12318,"8.2":0.01054,"9.2":0.49273,"10.1":0.01054,"11.1-11.2":0.0308,"12.0":0.03084,"13.0":0.02053,"14.0":0.11292,"15.0":0.07186,"16.0":1.04706},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0022,"4.4":0,"4.4.3-4.4.4":0.19902},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19057,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":2.38106},H:{"0":4.20684},L:{"0":71.01749},S:{"2.5":0.01677},R:{_:"0"},M:{"0":0.16768},Q:{"10.4":0.10899}}; +module.exports={C:{"38":0.00332,"42":0.00166,"43":0.00166,"47":0.02159,"51":0.00498,"58":0.00332,"60":0.00664,"63":0.00332,"65":0.00498,"67":0.00166,"69":0.00332,"72":0.00997,"73":0.00166,"77":0.00332,"80":0.01163,"81":0.00166,"84":0.00498,"85":0.02159,"89":0.02325,"91":0.01495,"92":0.00664,"94":0.00332,"95":0.00166,"96":0.00332,"97":0.02325,"98":0.01827,"99":0.50827,"100":1.74405,"101":0.18769,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 44 45 46 48 49 50 52 53 54 55 56 57 59 61 62 64 66 68 70 71 74 75 76 78 79 82 83 86 87 88 90 93 102 103 3.5 3.6"},D:{"26":0.00332,"37":0.00166,"38":0.00997,"43":0.00332,"49":0.01163,"50":0.00664,"51":0.00332,"57":0.00332,"58":0.0382,"63":0.00498,"64":0.01827,"66":0.01163,"68":0.00332,"70":0.00498,"71":0.00332,"73":0.00498,"75":0.00498,"79":0.25579,"80":0.00997,"81":0.02492,"83":0.00332,"84":0.01329,"86":0.01993,"87":0.02325,"88":0.00831,"89":0.01163,"90":0.01163,"91":0.01495,"92":0.01661,"93":0.00997,"94":0.00664,"95":0.00664,"96":0.01163,"97":0.01329,"98":0.03156,"99":0.0681,"100":1.14775,"101":3.76217,"102":0.33884,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 39 40 41 42 44 45 46 47 48 52 53 54 55 56 59 60 61 62 65 67 69 72 74 76 77 78 85 103 104"},F:{"44":0.00664,"65":0.07973,"73":0.00332,"76":0.00166,"79":0.00664,"84":0.00664,"85":0.1063,"86":0.23088,"87":0.03156,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 74 75 77 78 80 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.11295,"13":0.00664,"14":0.00831,"15":0.00332,"16":0.06312,"17":0.00831,"18":0.0598,"84":0.00831,"85":0.00997,"89":0.00664,"90":0.00166,"91":0.00498,"92":0.01163,"94":0.00332,"95":0.00166,"96":0.49332,"97":0.00997,"98":0.0299,"99":0.01827,"100":0.19268,"101":1.50487,_:"79 80 81 83 86 87 88 93"},E:{"4":0,"13":0.00498,"14":0.00498,"15":0.00664,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.02325,"12.1":0.00664,"13.1":0.00997,"14.1":0.01495,"15.1":0.00166,"15.2-15.3":0.01163,"15.4":0.26908,"15.5":0.09302},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.00063,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01264,"10.0-10.2":0,"10.3":0.1694,"11.0-11.2":0.02655,"11.3-11.4":0.0493,"12.0-12.1":0.02592,"12.2-12.5":0.8154,"13.0-13.1":0.00759,"13.2":0.00316,"13.3":0.0512,"13.4-13.7":0.09229,"14.0-14.4":0.92792,"14.5-14.8":1.13904,"15.0-15.1":0.41276,"15.2-15.3":1.14283,"15.4":1.44434},P:{"4":0.08109,"5.0-5.4":0.02027,"6.2-6.4":0.07095,"7.2-7.4":0.15204,"8.2":0.01022,"9.2":0.35475,"10.1":0.1419,"11.1-11.2":0.03041,"12.0":0.04087,"13.0":0.02027,"14.0":0.06081,"15.0":0.09122,"16.0":0.60815},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00617,"4.2-4.3":0.00494,"4.4":0,"4.4.3-4.4.4":0.49757},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0168,"11":0.19415,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.15844},Q:{"10.4":0.07505},O:{"0":2.14312},H:{"0":3.18162},L:{"0":73.03603},S:{"2.5":0.01668}}; 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 876d6a582094fe..da227cb64abd83 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:{"82":0.14448,"98":1.30034,"99":7.95762,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 100 101 3.5 3.6"},D:{"99":0.57793,"100":14.03698,"101":0.14448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"99":1.01137,"100":21.2722,_:"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 101"},E:{"4":0,"14":0.72241,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","13.1":0.14448,"14.1":0.57793,"15.1":0.14448,"15.4":1.30034},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.14916,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.78987,"13.0-13.1":0,"13.2":0.29831,"13.3":0.14916,"13.4-13.7":0.14916,"14.0-14.4":0,"14.5-14.8":2.23734,"15.0-15.1":7.30621,"15.2-15.3":6.85874,"15.4":5.51633},P:{"4":0.10265,"5.0-5.4":0.0308,"6.2-6.4":0.07186,"7.2-7.4":0.03367,"8.2":0.01122,"9.2":0.17596,"10.1":0.01054,"11.1-11.2":0.03367,"12.0":0.02244,"13.0":0.05611,"14.0":0.35191,"15.0":0.07855,"16.0":2.57335},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:{"11":4.05105,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.65198},L:{"0":15.07313},S:{"2.5":0},R:{_:"0"},M:{"0":1.55061},Q:{"10.4":0}}; +module.exports={C:{"78":0.12958,"91":0.12958,"98":0.39463,"99":0.12958,"100":9.81863,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 101 102 103 3.5 3.6"},D:{"97":0.12958,"99":0.25916,"100":4.45284,"101":19.10716,"102":7.068,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 98 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"99":0.12958,"100":0.25916,"101":6.01958,_:"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"},E:{"4":0,"14":0.65379,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.39463,"14.1":0.78337,"15.1":0.65379,"15.2-15.3":0.25916,"15.4":4.31737,"15.5":0.39463},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.01634,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.39358,"14.0-14.4":0.52423,"14.5-14.8":1.5743,"15.0-15.1":2.09853,"15.2-15.3":1.70496,"15.4":6.81982},P:{"4":0.08109,"5.0-5.4":0.02027,"6.2-6.4":0.07095,"7.2-7.4":0.05499,"8.2":0.01022,"9.2":0.022,"10.1":0.1419,"11.1-11.2":0.033,"12.0":0.011,"13.0":0.04399,"14.0":0.38278,"15.0":0.05499,"16.0":2.30942},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:{"11":1.83179,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":21.19139},S:{"2.5":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 43c92f0d1e6bba..d77b9ee4f23a9d 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:{"34":0.00156,"43":0.02491,"47":0.00779,"52":0.01401,"56":0.00311,"57":0.00467,"58":0.00311,"61":0.00156,"65":0.00779,"66":0.00311,"68":0.00311,"72":0.00934,"78":0.00779,"79":0.00156,"80":0.00311,"83":0.00311,"84":0.00623,"85":0.00311,"87":0.00467,"88":0.00311,"89":0.00467,"90":0.00156,"91":0.01713,"92":0.0109,"93":0.00467,"94":0.00934,"95":0.00934,"96":0.01401,"97":0.02647,"98":0.35344,"99":1.01049,"100":0.0545,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 59 60 62 63 64 67 69 70 71 73 74 75 76 77 81 82 86 101 3.5 3.6"},D:{"46":0.00156,"47":0.01401,"49":0.00467,"50":0.00156,"53":0.00156,"55":0.00467,"56":0.00311,"57":0.00311,"58":0.01713,"61":0.00311,"62":0.00779,"63":0.01868,"64":0.01401,"65":0.00156,"68":0.00467,"69":0.06228,"70":0.00934,"71":0.00156,"72":0.00156,"73":0.00467,"74":0.02336,"75":0.00779,"76":0.01401,"77":0.01868,"78":0.02024,"79":0.02647,"80":0.02958,"81":0.0218,"83":0.01246,"84":0.00934,"85":0.0327,"86":0.03737,"87":0.03893,"88":0.01557,"89":0.01557,"90":0.02024,"91":0.03114,"92":0.02647,"93":0.03114,"94":0.02024,"95":0.03114,"96":0.07318,"97":0.11366,"98":0.15881,"99":1.29387,"100":5.24865,"101":0.08096,"102":0.0109,"103":0.00311,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 48 51 52 54 59 60 66 67 104"},F:{"36":0.00156,"65":0.00311,"67":0.00311,"68":0.00623,"72":0.01868,"79":0.00623,"80":0.00311,"82":0.02647,"83":0.00623,"84":0.06539,"85":0.37368,"86":0.00779,"87":0.00156,_:"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 66 69 70 71 73 74 75 76 77 78 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01246,"13":0.00156,"14":0.00156,"15":0.00311,"16":0.00311,"17":0.00311,"18":0.03114,"81":0.00156,"84":0.00779,"85":0.00779,"88":0.01246,"89":0.02958,"90":0.00467,"91":0.00311,"92":0.01246,"93":0.00156,"94":0.00311,"95":0.00779,"96":0.00934,"97":0.01713,"98":0.02336,"99":0.16816,"100":0.72868,"101":0.00779,_:"79 80 83 86 87"},E:{"4":0,"11":0.00156,"13":0.00934,"14":0.04204,"15":0.0109,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00934,"10.1":0.00156,"11.1":0.00311,"12.1":0.00623,"13.1":0.03114,"14.1":0.05138,"15.1":0.02491,"15.2-15.3":0.01713,"15.4":0.06384},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00445,"5.0-5.1":0.00074,"6.0-6.1":0,"7.0-7.1":0.00297,"8.1-8.4":0,"9.0-9.2":0.00148,"9.3":0.01927,"10.0-10.2":0.00593,"10.3":0.04077,"11.0-11.2":0.08673,"11.3-11.4":0.02224,"12.0-12.1":0.03781,"12.2-12.5":0.8458,"13.0-13.1":0.06746,"13.2":0.0252,"13.3":0.13936,"13.4-13.7":0.3232,"14.0-14.4":1.20532,"14.5-14.8":1.24906,"15.0-15.1":0.95922,"15.2-15.3":1.46329,"15.4":0.91178},P:{"4":0.10265,"5.0-5.4":0.0308,"6.2-6.4":0.07186,"7.2-7.4":0.03367,"8.2":0.01122,"9.2":0.01122,"10.1":0.01054,"11.1-11.2":0.03367,"12.0":0.02244,"13.0":0.05611,"14.0":0.06733,"15.0":0.07855,"16.0":0.60597},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0004,"4.2-4.3":0.0012,"4.4":0,"4.4.3-4.4.4":0.02373},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00385,"10":0.00192,"11":0.02693,_:"6 7 9 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.00844},O:{"0":1.28318},H:{"0":33.63976},L:{"0":42.4533},S:{"2.5":0.01688},R:{_:"0"},M:{"0":0.34612},Q:{"10.4":0}}; +module.exports={C:{"34":0.0051,"43":0.02211,"47":0.01021,"52":0.01361,"56":0.0017,"57":0.01361,"58":0.0034,"61":0.0017,"65":0.0051,"66":0.0034,"68":0.0034,"72":0.0068,"78":0.01021,"80":0.0017,"81":0.0017,"82":0.0017,"84":0.0017,"85":0.0034,"87":0.0017,"88":0.0034,"89":0.0051,"90":0.0017,"91":0.01531,"92":0.0034,"93":0.0034,"94":0.01021,"95":0.0068,"96":0.00851,"97":0.01191,"98":0.02381,"99":0.35211,"100":0.98828,"101":0.06294,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 59 60 62 63 64 67 69 70 71 73 74 75 76 77 79 83 86 102 103 3.5 3.6"},D:{"43":0.0017,"47":0.01191,"49":0.0068,"53":0.0017,"55":0.0068,"56":0.0034,"57":0.0017,"58":0.01361,"60":0.0017,"61":0.0034,"62":0.00851,"63":0.0051,"64":0.01361,"67":0.0017,"68":0.0034,"69":0.04763,"70":0.01191,"71":0.0034,"72":0.0068,"73":0.0034,"74":0.02552,"75":0.01021,"76":0.01021,"77":0.01701,"78":0.0034,"79":0.02722,"80":0.04253,"81":0.02552,"83":0.01701,"84":0.01361,"85":0.05103,"86":0.59875,"87":0.03742,"88":0.01531,"89":0.02552,"90":0.01701,"91":0.03232,"92":0.02211,"93":0.03572,"94":0.04253,"95":0.02552,"96":0.06124,"97":0.05954,"98":0.07995,"99":0.165,"100":1.536,"101":4.89718,"102":0.44396,"103":0.01191,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 50 51 52 54 59 65 66 104"},F:{"36":0.01191,"64":0.0034,"65":0.0017,"66":0.0017,"67":0.0034,"68":0.0017,"69":0.0068,"70":0.0034,"79":0.0051,"80":0.0017,"82":0.02211,"83":0.0017,"84":0.0051,"85":0.18711,"86":0.1752,"87":0.01531,_:"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 71 72 73 74 75 76 77 78 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01191,"13":0.0017,"14":0.0017,"15":0.0034,"16":0.0017,"17":0.0034,"18":0.03062,"84":0.0068,"85":0.0051,"88":0.01021,"89":0.0068,"90":0.0034,"91":0.0017,"92":0.01191,"95":0.0034,"96":0.0068,"97":0.01021,"98":0.01191,"99":0.02552,"100":0.09696,"101":0.77566,_:"79 80 81 83 86 87 93 94"},E:{"4":0,"11":0.0017,"12":0.0034,"13":0.00851,"14":0.04933,"15":0.0068,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01021,"10.1":0.0034,"11.1":0.0034,"12.1":0.0051,"13.1":0.03062,"14.1":0.06804,"15.1":0.02381,"15.2-15.3":0.01871,"15.4":0.08335,"15.5":0.01191},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00468,"5.0-5.1":0.00312,"6.0-6.1":0,"7.0-7.1":0.0039,"8.1-8.4":0,"9.0-9.2":0.00156,"9.3":0.01717,"10.0-10.2":0.00624,"10.3":0.04292,"11.0-11.2":0.05619,"11.3-11.4":0.02029,"12.0-12.1":0.03434,"12.2-12.5":0.82178,"13.0-13.1":0.05697,"13.2":0.02497,"13.3":0.14282,"13.4-13.7":0.27549,"14.0-14.4":1.14721,"14.5-14.8":1.1558,"15.0-15.1":0.91231,"15.2-15.3":1.08634,"15.4":1.98694},P:{"4":0.08109,"5.0-5.4":0.02027,"6.2-6.4":0.07095,"7.2-7.4":0.05499,"8.2":0.01022,"9.2":0.022,"10.1":0.1419,"11.1-11.2":0.033,"12.0":0.011,"13.0":0.04399,"14.0":0.06599,"15.0":0.05499,"16.0":0.38495},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00059,"4.2-4.3":0.00178,"4.4":0,"4.4.3-4.4.4":0.03082},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02552,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.30706},Q:{"10.4":0},O:{"0":1.21995},H:{"0":29.69144},L:{"0":45.61971},S:{"2.5":0.0166}}; 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 936b0645491f0d..00c08fd21358b1 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:{"38":0.00807,"52":0.02422,"72":0.01211,"78":0.00404,"86":0.00404,"88":0.01615,"89":0.03633,"90":0.00404,"91":0.02826,"93":0.00807,"94":0.01211,"95":0.01615,"96":0.04037,"97":0.0323,"98":1.17073,"99":1.88932,"100":0.01211,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 87 92 101 3.5 3.6"},D:{"38":0.00404,"42":0.00404,"47":0.00404,"49":0.02422,"63":0.00807,"65":0.01615,"66":0.00807,"69":0.01211,"70":0.00807,"72":0.00404,"73":0.01211,"74":0.00807,"75":0.02826,"76":0.01615,"77":0.00404,"78":0.00807,"79":0.109,"80":0.02019,"81":0.0323,"83":0.01211,"84":0.01615,"85":0.06056,"86":0.02019,"87":0.05248,"88":0.01615,"89":0.01615,"90":0.04844,"91":0.04844,"92":0.0767,"93":0.03633,"94":0.02422,"95":0.07267,"96":0.11707,"97":0.1413,"98":0.20589,"99":5.25617,"100":21.55354,"101":0.41581,"102":0.00807,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 67 68 71 103 104"},F:{"28":0.00404,"36":0.01211,"83":0.00404,"84":0.26241,"85":0.8397,"86":0.00807,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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.00807,"18":0.0323,"84":0.00807,"89":0.01211,"90":0.00807,"92":0.02826,"94":0.00807,"95":0.01211,"96":0.02019,"97":0.04037,"98":0.08478,"99":0.33103,"100":2.0508,"101":0.04441,_:"13 14 15 16 17 79 80 81 83 85 86 87 88 91 93"},E:{"4":0,"13":0.09285,"14":0.08881,"15":0.0323,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.03633,"12.1":0.00807,"13.1":0.10093,"14.1":0.12515,"15.1":0.06863,"15.2-15.3":0.05248,"15.4":0.16955},G:{"8":0,"3.2":0.00057,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00401,"6.0-6.1":0,"7.0-7.1":0.01949,"8.1-8.4":0.00631,"9.0-9.2":0,"9.3":0.03268,"10.0-10.2":0.00115,"10.3":0.02236,"11.0-11.2":0.01032,"11.3-11.4":0.00975,"12.0-12.1":0.01261,"12.2-12.5":0.35027,"13.0-13.1":0.0086,"13.2":0.00344,"13.3":0.06765,"13.4-13.7":0.06707,"14.0-14.4":0.23963,"14.5-14.8":0.66729,"15.0-15.1":0.27861,"15.2-15.3":1.80581,"15.4":2.12283},P:{"4":0.28782,"5.0-5.4":0.02075,"6.2-6.4":0.01028,"7.2-7.4":0.38034,"8.2":0.01054,"9.2":0.0514,"10.1":0.01054,"11.1-11.2":0.19531,"12.0":0.03084,"13.0":0.14391,"14.0":0.25698,"15.0":0.16447,"16.0":2.31286},I:{"0":0,"3":0,"4":0.00175,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00351,"4.2-4.3":0.01052,"4.4":0,"4.4.3-4.4.4":0.07366},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17763,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.17889},H:{"0":0.42905},L:{"0":52.04198},S:{"2.5":0},R:{_:"0"},M:{"0":0.14908},Q:{"10.4":0}}; +module.exports={C:{"52":0.03818,"78":0.00424,"88":0.03394,"89":0.02121,"91":0.02121,"93":0.01273,"94":0.00848,"95":0.00848,"96":0.01273,"97":0.02121,"98":0.02969,"99":0.47086,"100":1.42955,"101":0.01697,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 102 103 3.5 3.6"},D:{"38":0.01273,"42":0.00424,"49":0.03394,"63":0.00848,"65":0.00848,"67":0.00424,"69":0.01273,"70":0.01273,"71":0.00424,"72":0.00848,"73":0.00848,"74":0.01273,"75":0.02969,"76":0.04242,"77":0.00424,"79":0.12726,"80":0.02969,"81":0.03394,"83":0.05515,"84":0.05515,"85":0.01273,"86":0.06787,"87":0.02969,"88":0.02121,"89":0.01697,"90":0.02545,"91":0.03394,"92":0.04242,"93":0.01697,"94":0.02545,"95":0.03818,"96":0.11878,"97":0.0806,"98":0.11029,"99":0.22907,"100":5.82427,"101":22.77954,"102":1.60348,"103":0.01273,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 78 104"},F:{"68":0.00848,"69":0.00424,"79":0.00848,"82":0.00424,"84":0.00424,"85":0.64903,"86":0.55146,"87":0.02545,_:"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 70 71 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:{"13":0.02545,"14":0.00848,"16":0.00424,"18":0.03394,"83":0.00424,"84":0.02121,"85":0.00424,"89":0.01697,"92":0.02969,"96":0.00848,"97":0.02121,"98":0.03394,"99":0.03394,"100":0.09332,"101":2.54944,_:"12 15 17 79 80 81 86 87 88 90 91 93 94 95"},E:{"4":0,"14":0.10181,"15":0.01697,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00848,"11.1":0.00424,"12.1":0.00424,"13.1":0.0806,"14.1":0.15695,"15.1":0.05515,"15.2-15.3":0.04666,"15.4":0.30967,"15.5":0.03394},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00057,"5.0-5.1":0.00057,"6.0-6.1":0,"7.0-7.1":0.02729,"8.1-8.4":0.00398,"9.0-9.2":0.00057,"9.3":0.07504,"10.0-10.2":0.00284,"10.3":0.02103,"11.0-11.2":0.01137,"11.3-11.4":0.00398,"12.0-12.1":0.01308,"12.2-12.5":0.332,"13.0-13.1":0.01364,"13.2":0.00455,"13.3":0.05912,"13.4-13.7":0.05628,"14.0-14.4":0.17794,"14.5-14.8":0.50993,"15.0-15.1":0.21659,"15.2-15.3":0.42409,"15.4":3.72869},P:{"4":0.26565,"5.0-5.4":0.05109,"6.2-6.4":0.02043,"7.2-7.4":0.38826,"8.2":0.01022,"9.2":0.05109,"10.1":0.01022,"11.1-11.2":0.16348,"12.0":0.04087,"13.0":0.13283,"14.0":0.19413,"15.0":0.13283,"16.0":1.13412},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00288,"4.2-4.3":0.0096,"4.4":0,"4.4.3-4.4.4":0.08541},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.31815,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.14971},Q:{"10.4":0},O:{"0":0.16698},H:{"0":0.55058},L:{"0":49.92831},S:{"2.5":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 8cbb10b9c6c37b..51f2cac7327cf9 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:{"11":0.02431,"44":0.00486,"52":0.02431,"56":0.01458,"60":0.00972,"66":0.00486,"74":0.00972,"78":0.05347,"79":0.00972,"80":0.01458,"81":0.02431,"82":0.00972,"83":0.00972,"84":0.00486,"88":0.01458,"89":0.00486,"91":0.0875,"94":0.05347,"95":0.01458,"96":0.01458,"97":0.03889,"98":0.9722,"99":2.51314,"100":0.00972,_:"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 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 68 69 70 71 72 73 75 76 77 85 86 87 90 92 93 101 3.5 3.6"},D:{"38":0.00486,"42":0.00486,"47":0.07292,"48":0.01458,"49":0.03889,"52":0.10694,"53":0.00972,"61":0.01458,"62":0.00486,"65":0.00972,"66":0.01944,"67":0.01458,"69":0.175,"70":0.04375,"72":0.01944,"73":0.00972,"74":0.00486,"75":0.00972,"76":0.08264,"77":0.01458,"78":0.01458,"79":0.18958,"80":0.10694,"81":0.01458,"83":0.04861,"84":0.09236,"85":0.15069,"86":0.0875,"87":0.14097,"88":0.02431,"89":0.03889,"90":0.02917,"91":0.07292,"92":0.10694,"93":0.10208,"94":0.07778,"95":0.1118,"96":0.24305,"97":0.24305,"98":0.52985,"99":5.07488,"100":19.02109,"101":0.23819,"102":0.00486,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 50 51 54 55 56 57 58 59 60 63 64 68 71 103 104"},F:{"36":0.00972,"67":0.00972,"83":0.00486,"84":0.15069,"85":0.60276,"86":0.01458,_:"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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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.00972,"18":0.02431,"84":0.01458,"85":0.00972,"86":0.00972,"87":0.00486,"89":0.00972,"91":0.00972,"92":0.01944,"94":0.00972,"95":0.01458,"96":0.02431,"97":0.04861,"98":0.06805,"99":0.93331,"100":5.96445,"101":0.09722,_:"12 13 14 15 16 79 80 81 83 88 90 93"},E:{"4":0,"13":0.04375,"14":0.26249,"15":0.11666,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00486,"11.1":0.03403,"12.1":0.06319,"13.1":0.3743,"14.1":0.91387,"15.1":0.27222,"15.2-15.3":0.29652,"15.4":2.02704},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.0034,"7.0-7.1":0.0051,"8.1-8.4":0.01019,"9.0-9.2":0.08154,"9.3":0.07984,"10.0-10.2":0,"10.3":0.12401,"11.0-11.2":0.01189,"11.3-11.4":0.03567,"12.0-12.1":0.01359,"12.2-12.5":0.67102,"13.0-13.1":0.02548,"13.2":0.01189,"13.3":0.05266,"13.4-13.7":0.16988,"14.0-14.4":0.48585,"14.5-14.8":1.78371,"15.0-15.1":0.70669,"15.2-15.3":6.39079,"15.4":6.31605},P:{"4":0.13673,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.02104,"12.0":0.02104,"13.0":0.07363,"14.0":0.07363,"15.0":0.06311,"16.0":5.00655},I:{"0":0,"3":0,"4":0.00418,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00314,"4.2-4.3":0.01359,"4.4":0,"4.4.3-4.4.4":0.04076},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01927,"9":0.08673,"10":0.00964,"11":0.43365,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.5396},Q:{"10.4":0.01028},O:{"0":0.42654},H:{"0":0.43301},L:{"0":26.72583}}; +module.exports={C:{"11":0.02411,"52":0.01928,"56":0.01446,"60":0.00964,"74":0.00482,"78":0.04339,"79":0.00482,"80":0.00482,"81":0.02411,"82":0.00482,"83":0.00964,"84":0.00964,"88":0.01446,"89":0.00482,"91":0.07714,"94":0.04339,"95":0.00964,"96":0.00964,"97":0.01446,"98":0.10606,"99":0.56888,"100":2.5021,"101":0.01446,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 85 86 87 90 92 93 102 103 3.5 3.6"},D:{"42":0.00482,"47":0.07714,"48":0.00482,"49":0.02893,"52":0.07232,"53":0.00964,"61":0.00482,"65":0.00482,"66":0.01928,"67":0.01446,"69":0.06749,"70":0.03857,"71":0.00482,"72":0.01446,"73":0.00964,"74":0.00964,"75":0.00964,"76":0.10606,"77":0.01446,"78":0.01446,"79":0.1832,"80":0.08678,"81":0.01446,"83":0.05303,"84":0.09642,"85":0.10606,"86":0.07714,"87":0.1157,"88":0.02411,"89":0.02893,"90":0.02411,"91":0.03857,"92":0.07232,"93":0.07714,"94":0.05785,"95":0.08678,"96":0.17356,"97":0.16874,"98":0.26516,"99":0.51585,"100":5.20186,"101":19.18276,"102":1.52344,"103":0.00964,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 50 51 54 55 56 57 58 59 60 62 63 64 68 104"},F:{"36":0.00482,"69":0.00482,"71":0.00964,"72":0.00482,"84":0.00482,"85":0.53031,"86":0.34229,"87":0.01928,_:"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 70 73 74 75 76 77 78 79 80 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:{"17":0.00482,"18":0.02411,"84":0.00482,"85":0.00964,"86":0.00964,"92":0.00964,"95":0.00482,"96":0.01446,"97":0.02411,"98":0.02893,"99":0.06749,"100":0.3664,"101":6.30587,_:"12 13 14 15 16 79 80 81 83 87 88 89 90 91 93 94"},E:{"4":0,"13":0.03857,"14":0.24587,"15":0.0916,_:"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.02893,"12.1":0.05785,"13.1":0.34229,"14.1":0.80993,"15.1":0.21212,"15.2-15.3":0.19284,"15.4":3.25418,"15.5":0.37122},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.00372,"8.1-8.4":0.01117,"9.0-9.2":0.08194,"9.3":0.07449,"10.0-10.2":0.00186,"10.3":0.10243,"11.0-11.2":0.00745,"11.3-11.4":0.03352,"12.0-12.1":0.01304,"12.2-12.5":0.70767,"13.0-13.1":0.01676,"13.2":0.01117,"13.3":0.04469,"13.4-13.7":0.15829,"14.0-14.4":0.48047,"14.5-14.8":1.6891,"15.0-15.1":0.50468,"15.2-15.3":1.37623,"15.4":13.29304},P:{"4":0.13621,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01048,"12.0":0.02095,"13.0":0.06286,"14.0":0.06286,"15.0":0.04191,"16.0":1.50876},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.0074,"4.4":0,"4.4.3-4.4.4":0.04017},A:{"8":0.01438,"9":0.05751,"11":0.33789,_:"6 7 10 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.50246},Q:{"10.4":0.01036},O:{"0":0.46102},H:{"0":0.39233},L:{"0":26.78127},S:{"2.5":0}}; 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 2f1681eb5f6112..61aad39e004f8c 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:{"51":0.01095,"52":0.02737,"53":0.01095,"54":0.00547,"55":0.01095,"56":0.00547,"57":0.01095,"59":0.03831,"78":0.05473,"83":0.00547,"88":0.01095,"89":0.00547,"90":0.13135,"91":0.0602,"94":0.00547,"95":0.00547,"96":0.01095,"97":0.02737,"98":1.80062,"99":5.98199,"100":0.00547,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 92 93 101 3.5 3.6"},D:{"38":0.01095,"46":0.00547,"49":0.04378,"51":0.00547,"53":0.00547,"56":0.00547,"58":0.00547,"59":0.00547,"63":0.01095,"64":0.01642,"65":0.01095,"66":0.15324,"67":0.01095,"69":0.19703,"73":0.00547,"76":0.01095,"77":0.01095,"78":0.01095,"79":0.07662,"80":0.05473,"81":0.01095,"83":0.01095,"84":0.02737,"85":5.15557,"86":0.02189,"87":0.05473,"88":0.01095,"89":0.03284,"90":0.05473,"91":0.03831,"92":0.0602,"93":0.04378,"94":0.02737,"95":0.03831,"96":0.20797,"97":0.21345,"98":0.70602,"99":5.70287,"100":16.63245,"101":0.21892,"102":0.00547,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 50 52 54 55 57 60 61 62 68 70 71 72 74 75 103 104"},F:{"83":0.01095,"84":0.2846,"85":0.81,"86":0.01642,_:"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 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.00547,"16":0.00547,"17":0.02189,"18":0.00547,"83":0.01095,"85":0.01095,"86":0.01642,"89":0.00547,"92":0.01095,"95":0.01095,"96":0.02189,"97":0.03831,"98":0.03831,"99":1.10555,"100":5.57151,"101":0.07662,_:"12 13 14 79 80 81 84 87 88 90 91 93 94"},E:{"4":0,"12":0.01095,"13":0.0602,"14":0.30102,"15":0.11493,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01642,"10.1":0.01095,"11.1":0.04378,"12.1":0.06568,"13.1":0.36122,"14.1":1.27521,"15.1":0.3448,"15.2-15.3":0.35575,"15.4":1.94292},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01601,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00229,"9.0-9.2":0.01143,"9.3":0.06174,"10.0-10.2":0.00686,"10.3":0.15777,"11.0-11.2":0.02287,"11.3-11.4":0.07317,"12.0-12.1":0.02287,"12.2-12.5":0.58536,"13.0-13.1":0.01829,"13.2":0.01143,"13.3":0.04344,"13.4-13.7":0.13262,"14.0-14.4":0.49618,"14.5-14.8":2.47633,"15.0-15.1":0.9512,"15.2-15.3":9.69952,"15.4":8.06693},P:{"4":0.09453,"5.0-5.4":0.0308,"6.2-6.4":0.07186,"7.2-7.4":0.01099,"8.2":0.01122,"9.2":0.17596,"10.1":0.01054,"11.1-11.2":0.0105,"12.0":0.0105,"13.0":0.02101,"14.0":0.03151,"15.0":0.03151,"16.0":3.69732},I:{"0":0,"3":0,"4":0.00247,"2.1":0,"2.2":0.00165,"2.3":0.00165,"4.1":0.00165,"4.2-4.3":0.0107,"4.4":0,"4.4.3-4.4.4":0.0181},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01642,"9":0.00547,"11":0.3448,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.04526},H:{"0":0.26138},L:{"0":18.11113},S:{"2.5":0},R:{_:"0"},M:{"0":0.34398},Q:{"10.4":0}}; +module.exports={C:{"52":0.02212,"59":0.03319,"78":0.04425,"82":0.00553,"83":0.00553,"88":0.00553,"91":0.04978,"94":0.00553,"96":0.00553,"97":0.01106,"98":0.02212,"99":2.00222,"100":6.85844,"101":0.00553,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 84 85 86 87 89 90 92 93 95 102 103 3.5 3.6"},D:{"38":0.00553,"49":0.02766,"64":0.01106,"66":0.12721,"67":0.01106,"69":0.09956,"76":0.01106,"78":0.01106,"79":0.06637,"80":0.02766,"83":0.00553,"84":0.03319,"85":4.72901,"86":0.02212,"87":0.05531,"88":0.01106,"89":0.02766,"90":0.02212,"91":0.02766,"92":0.03872,"93":0.02766,"94":0.02766,"95":0.02766,"96":0.14381,"97":0.11615,"98":0.20465,"99":0.56969,"100":5.41485,"101":16.39942,"102":1.27213,"103":0.00553,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 68 70 71 72 73 74 75 77 81 104"},F:{"84":0.00553,"85":0.68584,"86":0.70797,"87":0.02212,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01659,"83":0.00553,"85":0.01106,"86":0.01106,"92":0.02212,"95":0.00553,"96":0.01106,"97":0.02212,"98":0.01659,"99":0.04978,"100":0.47014,"101":5.27104,_:"12 13 14 15 16 18 79 80 81 84 87 88 89 90 91 93 94"},E:{"4":0,"13":0.04978,"14":0.30974,"15":0.12168,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1","6.1":0.00553,"9.1":0.01106,"10.1":0.00553,"11.1":0.03872,"12.1":0.0719,"13.1":0.35952,"14.1":1.29425,"15.1":0.29867,"15.2-15.3":0.27655,"15.4":4.09847,"15.5":0.42036},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.00488,"9.3":0.05368,"10.0-10.2":0.00732,"10.3":0.11956,"11.0-11.2":0.0122,"11.3-11.4":0.06832,"12.0-12.1":0.01464,"12.2-12.5":0.43676,"13.0-13.1":0.0122,"13.2":0.00488,"13.3":0.0366,"13.4-13.7":0.11224,"14.0-14.4":0.52948,"14.5-14.8":2.21551,"15.0-15.1":0.70272,"15.2-15.3":2.06668,"15.4":17.9852},P:{"4":0.09333,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.02074,"13.0":0.02074,"14.0":0.04148,"15.0":0.02074,"16.0":0.98517},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00291,"4.2-4.3":0.0068,"4.4":0,"4.4.3-4.4.4":0.01263},A:{"8":0.01106,"9":0.00553,"11":0.25996,_:"6 7 10 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.26814},Q:{"10.4":0},O:{"0":0.02235},H:{"0":0.21578},L:{"0":16.49048},S:{"2.5":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 40509a13af1ee7..1188fc386ec3f9 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:{"52":0.00498,"78":0.01744,"87":0.06726,"89":0.00498,"91":0.01993,"96":0.00249,"97":0.00747,"98":0.21423,"99":0.67506,"100":0.04235,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 90 92 93 94 95 101 3.5 3.6"},D:{"49":0.00498,"62":0.00249,"63":0.00249,"65":0.00996,"67":0.00249,"70":0.00249,"73":0.00249,"78":0.00498,"79":0.01495,"80":0.00249,"81":0.00498,"83":0.00747,"84":0.01993,"85":0.00498,"86":0.00996,"87":0.01744,"88":0.0274,"89":0.07224,"90":0.00747,"91":0.01246,"92":0.01495,"93":0.00996,"94":0.00747,"95":0.01744,"96":0.03737,"97":0.04235,"98":0.09964,"99":1.9654,"100":17.74339,"101":1.33019,"102":0.00996,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 64 66 68 69 71 72 74 75 76 77 103 104"},F:{"75":0.00996,"84":0.05231,"85":0.28647,"86":0.00498,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 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.00498,"81":0.00498,"88":0.00249,"89":0.02491,"92":0.00249,"96":0.00249,"97":0.00249,"98":0.00498,"99":0.09217,"100":0.79214,"101":0.00747,_:"12 13 14 15 16 17 79 80 83 84 85 86 87 90 91 93 94 95"},E:{"4":0,"13":0.00249,"14":0.0274,"15":0.00747,_:"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.00249,"12.1":0.00498,"13.1":0.01993,"14.1":0.05231,"15.1":0.01744,"15.2-15.3":0.01744,"15.4":0.07722},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.00502,"8.1-8.4":0.00112,"9.0-9.2":0.00056,"9.3":0.024,"10.0-10.2":0,"10.3":0.04409,"11.0-11.2":0.01005,"11.3-11.4":0.01228,"12.0-12.1":0.01339,"12.2-12.5":0.5553,"13.0-13.1":0.00502,"13.2":0.00446,"13.3":0.0279,"13.4-13.7":0.08371,"14.0-14.4":0.19979,"14.5-14.8":0.81146,"15.0-15.1":0.21096,"15.2-15.3":1.984,"15.4":1.58608},P:{"4":0.10774,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":0.0431,"8.2":0.083,"9.2":0.13111,"10.1":0.03061,"11.1-11.2":0.01077,"12.0":0.0204,"13.0":0.0431,"14.0":0.03232,"15.0":0.02155,"16.0":0.48482},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00273,"4.2-4.3":0.00341,"4.4":0,"4.4.3-4.4.4":0.05393},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.00747,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.89357},H:{"0":0.50474},L:{"0":67.59819},S:{"2.5":0},R:{_:"0"},M:{"0":0.04505},Q:{"10.4":0}}; +module.exports={C:{"52":0.00486,"71":0.15802,"72":0.04133,"73":0.04376,"74":0.03403,"75":0.07536,"76":0.18962,"78":0.00486,"87":0.43272,"89":0.00243,"91":0.01459,"96":0.00243,"97":0.00243,"98":0.00486,"99":0.13857,"100":0.57858,"101":0.04133,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 77 79 80 81 82 83 84 85 86 88 90 92 93 94 95 102 103 3.5 3.6"},D:{"49":0.00486,"65":0.00729,"70":0.00486,"76":0.04376,"79":0.01459,"80":0.00243,"81":0.00486,"83":0.00729,"84":0.01216,"85":0.00243,"86":0.00972,"87":0.01216,"88":0.01945,"89":0.85328,"90":0.00729,"91":0.00972,"92":0.00972,"93":0.00729,"94":0.00486,"95":0.00729,"96":0.02431,"97":0.02674,"98":0.02917,"99":0.05348,"100":1.84999,"101":15.75774,"102":1.28114,"103":0.01459,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 74 75 77 78 104"},F:{"85":0.14586,"86":0.24067,"87":0.02917,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00486,"88":0.00243,"89":0.26255,"92":0.00243,"96":0.00243,"99":0.00486,"100":0.02431,"101":0.72201,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 90 91 93 94 95 97 98"},E:{"4":0,"13":0.00243,"14":0.01459,"15":0.00729,_:"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","12.1":0.00486,"13.1":0.01702,"14.1":0.04133,"15.1":0.00972,"15.2-15.3":0.00972,"15.4":0.11912,"15.5":0.01459},G:{"8":0.00607,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00055,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00442,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01932,"10.0-10.2":0,"10.3":0.03809,"11.0-11.2":0.31575,"11.3-11.4":0.01546,"12.0-12.1":0.05189,"12.2-12.5":0.51393,"13.0-13.1":0.18989,"13.2":0.00994,"13.3":0.02374,"13.4-13.7":0.05851,"14.0-14.4":0.77117,"14.5-14.8":0.48191,"15.0-15.1":0.0966,"15.2-15.3":0.33563,"15.4":2.58566},P:{"4":0.06853,"5.0-5.4":0.02006,"6.2-6.4":0.03077,"7.2-7.4":0.04569,"8.2":0.02049,"9.2":0.26082,"10.1":0.02045,"11.1-11.2":0.01142,"12.0":0.02045,"13.0":0.03426,"14.0":0.01142,"15.0":0.01142,"16.0":0.19416},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00079,"4.2-4.3":0.00393,"4.4":0,"4.4.3-4.4.4":0.05584},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00972,"11":0.00486,_:"7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.62074},Q:{"10.4":0},O:{"0":0.61317},H:{"0":0.60918},L:{"0":67.3757},S:{"2.5":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 603fb1c917a755..139501f3128b7a 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:{"98":0.02336,"99":0.05709,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 100 101 3.5 3.6"},D:{"75":0.04671,"76":0.05709,"77":0.25431,"89":0.07007,"96":0.01038,"98":0.01038,"99":1.89695,"100":9.18111,"101":0.2076,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 78 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 97 102 103 104"},F:{"85":0.11678,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01038,"14":0.03374,"16":0.04671,"89":0.01038,"91":0.01038,"99":0.60204,"100":2.1279,_:"13 15 17 18 79 80 81 83 84 85 86 87 88 90 92 93 94 95 96 97 98 101"},E:{"4":0,"13":0.02336,"14":5.2964,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","13.1":0.07007,"14.1":0.28805,"15.1":0.02336,"15.4":0.11678},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.01088,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.12914,"13.0-13.1":0.03229,"13.2":0,"13.3":0.09686,"13.4-13.7":0.04316,"14.0-14.4":0.12949,"14.5-14.8":0.97979,"15.0-15.1":1.4209,"15.2-15.3":0.52744,"15.4":0.14002},P:{"4":0.01009,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":0.13111,"8.2":0.083,"9.2":0.13111,"10.1":0.03061,"11.1-11.2":0.04034,"12.0":0.0204,"13.0":0.01009,"14.0":0.09077,"15.0":0.08162,"16.0":1.8154},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:{"11":0.12716,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":3.11751},H:{"0":0.88333},L:{"0":69.13863},S:{"2.5":0},R:{_:"0"},M:{"0":0.01481},Q:{"10.4":0}}; +module.exports={C:{"52":0.04494,"100":0.05692,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 3.5 3.6"},D:{"76":0.05692,"77":0.04494,"78":0.03296,"79":0.02097,"80":0.04494,"87":0.01198,"89":0.01198,"90":0.01198,"97":0.01198,"99":0.04494,"100":3.0739,"101":10.52195,"102":0.79993,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 81 83 84 85 86 88 91 92 93 94 95 96 98 103 104"},F:{"85":0.02097,"86":0.01198,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01198,"16":0.03296,"18":0.02097,"84":0.06591,"89":0.04494,"97":0.01198,"99":0.02097,"100":0.48835,"101":2.53162,_:"12 13 15 17 79 80 81 83 85 86 87 88 90 91 92 93 94 95 96 98"},E:{"4":0,"14":5.24,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.2-15.3","14.1":0.03296,"15.1":0.14381,"15.4":0.08988,"15.5":0.02097},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.11652,"13.0-13.1":0.01071,"13.2":0,"13.3":0.06298,"13.4-13.7":0.13667,"14.0-14.4":0.5788,"14.5-14.8":1.37992,"15.0-15.1":2.98027,"15.2-15.3":0.22106,"15.4":0.81057},P:{"4":0.31098,"5.0-5.4":0.02006,"6.2-6.4":0.03077,"7.2-7.4":0.04013,"8.2":0.02049,"9.2":0.26082,"10.1":0.02045,"11.1-11.2":0.14313,"12.0":0.02045,"13.0":0.0301,"14.0":0.13041,"15.0":0.07022,"16.0":2.28723},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:{"11":0.01198,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.01401},Q:{"10.4":0},O:{"0":1.80729},H:{"0":2.37421},L:{"0":58.80069},S:{"2.5":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 8a0804af2e60d2..588bca1def6890 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:{"98":5.83261,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 99 100 101 3.5 3.6"},D:{"100":4.99859,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"100":3.33239,_:"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"},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.1 15.2-15.3","15.4":3.33239},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.83303,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":4.16517,"15.2-15.3":14.16975,"15.4":62.50205},P:{"4":0.10265,"5.0-5.4":0.0308,"6.2-6.4":0.07186,"7.2-7.4":0.03367,"8.2":0.01122,"9.2":0.01122,"10.1":0.01054,"11.1-11.2":0.03367,"12.0":0.02244,"13.0":0.05611,"14.0":0.06733,"15.0":0.07855,"16.0":0.60597},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:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 3.5 3.6"},D:{"101":0.645,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 102 103 104"},F:{"52":1.29,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"101":1.935,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},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.1":0.645,"15.2-15.3":3.87,"15.4":1.29,"15.5":0.645},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.64424,"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.64424,"15.4":81.29784},P:{"4":0.08109,"5.0-5.4":0.02027,"6.2-6.4":0.07095,"7.2-7.4":0.05499,"8.2":0.01022,"9.2":0.022,"10.1":0.1419,"11.1-11.2":0.033,"12.0":0.011,"13.0":0.04399,"14.0":0.06599,"15.0":0.05499,"16.0":0.38495},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.12316,_:"11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":7.09369},S:{"2.5":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 0028fbca8aa3c3..57640bb486d683 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:{"11":0.01625,"34":0.01083,"39":0.00542,"40":0.00542,"41":0.01083,"42":0.00542,"43":0.00542,"44":0.00542,"45":0.00542,"46":0.00542,"47":0.01083,"48":0.01083,"49":0.00542,"50":0.01083,"51":0.34115,"52":0.30866,"53":0.33573,"54":0.18953,"55":0.3249,"56":0.23285,"57":0.22743,"58":0.09206,"59":0.1083,"66":0.01083,"78":0.0704,"86":0.00542,"88":0.00542,"89":0.00542,"90":0.00542,"91":0.05957,"92":0.00542,"94":0.01083,"95":0.00542,"96":0.02166,"97":0.03249,"98":0.65522,"99":1.93316,"100":0.01083,_:"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 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 93 101 3.5 3.6"},D:{"26":0.01083,"34":0.03791,"38":0.11372,"39":0.09206,"40":0.09206,"41":0.09747,"42":0.09747,"43":0.10289,"44":0.1083,"45":0.12455,"46":0.12996,"47":0.12996,"48":0.1083,"49":0.16787,"50":0.0704,"51":0.09206,"52":0.0704,"53":0.11913,"54":0.08664,"55":0.09206,"56":0.10289,"57":0.10289,"58":0.12455,"59":0.14079,"60":0.12996,"61":0.14621,"62":0.11372,"63":0.11913,"64":0.11913,"65":0.13538,"66":0.0704,"67":0.01083,"68":0.01083,"69":0.01083,"70":0.01083,"71":0.00542,"72":0.00542,"73":0.01083,"74":0.01625,"75":0.02708,"76":0.05957,"77":0.00542,"78":0.01083,"79":0.3953,"80":0.02166,"81":0.01625,"83":0.02708,"84":0.01083,"85":0.01083,"86":0.01083,"87":0.10289,"88":0.01083,"89":0.03791,"90":0.24368,"91":0.03249,"92":0.0704,"93":0.16245,"94":0.05957,"95":0.03791,"96":0.18411,"97":0.31949,"98":0.49818,"99":5.77239,"100":21.21597,"101":0.29783,"102":0.01083,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 103 104"},F:{"28":0.01083,"32":0.00542,"36":0.01083,"42":0.00542,"43":0.00542,"45":0.01083,"46":0.08664,"47":0.00542,"84":0.11372,"85":0.37905,"86":0.00542,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 34 35 37 38 39 40 41 44 48 49 50 51 52 53 54 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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01083},B:{"12":0.01083,"13":0.01083,"14":0.01083,"15":0.01083,"17":0.01083,"18":0.01625,"92":0.01625,"95":0.01083,"96":0.01083,"97":0.08123,"98":0.02166,"99":0.68229,"100":4.60275,"101":0.05415,_:"16 79 80 81 83 84 85 86 87 88 89 90 91 93 94"},E:{"4":0,"12":0.01083,"13":0.0704,"14":0.33573,"15":0.18411,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01625,"11.1":0.05415,"12.1":0.09206,"13.1":0.51443,"14.1":1.18047,"15.1":0.33032,"15.2-15.3":0.287,"15.4":2.17683},G:{"8":0.00368,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0092,"7.0-7.1":0.0092,"8.1-8.4":0.02392,"9.0-9.2":0.09934,"9.3":0.20604,"10.0-10.2":0.13062,"10.3":0.3109,"11.0-11.2":0.07543,"11.3-11.4":0.08094,"12.0-12.1":0.02943,"12.2-12.5":0.92718,"13.0-13.1":0.01288,"13.2":0.00368,"13.3":0.06071,"13.4-13.7":0.16741,"14.0-14.4":0.43232,"14.5-14.8":2.02178,"15.0-15.1":0.67515,"15.2-15.3":6.74049,"15.4":6.37072},P:{"4":0.62836,"5.0-5.4":0.02075,"6.2-6.4":0.03112,"7.2-7.4":1.2433,"8.2":0.01054,"9.2":0.04215,"10.1":0.01054,"11.1-11.2":0.0325,"12.0":0.05268,"13.0":0.0975,"14.0":0.0975,"15.0":0.05417,"16.0":3.04429},I:{"0":0,"3":0,"4":0.00249,"2.1":0,"2.2":0.00166,"2.3":0.00166,"4.1":0.00166,"4.2-4.3":0.01244,"4.4":0,"4.4.3-4.4.4":0.05803},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.17455,"9":0.20365,"10":0.07273,"11":0.29092,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.11918},H:{"0":0.20397},L:{"0":23.1255},S:{"2.5":0},R:{_:"0"},M:{"0":0.4859},Q:{"10.4":0.01375}}; +module.exports={C:{"11":0.02774,"34":0.00555,"41":0.00555,"44":0.00555,"46":0.00555,"47":0.00555,"48":0.00555,"50":0.00555,"51":0.25516,"52":0.23297,"53":0.24962,"54":0.14422,"55":0.24407,"56":0.17196,"57":0.17196,"58":0.06656,"59":0.08875,"66":0.00555,"78":0.07766,"84":0.00555,"86":0.00555,"88":0.00555,"91":0.08321,"93":0.01664,"94":0.1775,"95":0.00555,"96":0.01109,"97":0.01664,"98":0.02774,"99":0.52142,"100":2.14114,"101":0.00555,_:"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 42 43 45 49 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 87 89 90 92 102 103 3.5 3.6"},D:{"26":0.01109,"34":0.02219,"38":0.08875,"39":0.06656,"40":0.06656,"41":0.07766,"42":0.07211,"43":0.07211,"44":0.08321,"45":0.0943,"46":0.09985,"47":0.09985,"48":0.07766,"49":0.13868,"50":0.05547,"51":0.06656,"52":0.05547,"53":0.08321,"54":0.06656,"55":0.06656,"56":0.07766,"57":0.07766,"58":0.0943,"59":0.10539,"60":0.09985,"61":0.10539,"62":0.08321,"63":0.08321,"64":0.08321,"65":0.09985,"66":0.07211,"67":0.01109,"68":0.01109,"69":0.01109,"70":0.00555,"71":0.01109,"72":0.00555,"73":0.01109,"74":0.01109,"75":0.01664,"76":0.05547,"77":0.01109,"78":0.01109,"79":0.25516,"80":0.02219,"81":0.01664,"83":0.02219,"84":0.01109,"85":0.01109,"86":0.01109,"87":0.09985,"88":0.01109,"89":0.02774,"90":0.18305,"91":0.02774,"92":0.07211,"93":0.1775,"94":0.07766,"95":0.04992,"96":0.13868,"97":0.19415,"98":0.22743,"99":0.65455,"100":6.83945,"101":21.34486,"102":1.55871,"103":0.01664,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 104"},F:{"28":0.00555,"36":0.00555,"42":0.00555,"43":0.00555,"45":0.00555,"46":0.06102,"85":0.32173,"86":0.27735,"87":0.01664,_:"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 44 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00555},B:{"12":0.00555,"13":0.00555,"14":0.01109,"15":0.01109,"17":0.01109,"18":0.03883,"92":0.00555,"95":0.02219,"96":0.01109,"97":0.02774,"98":0.01109,"99":0.08875,"100":0.28844,"101":5.21973,_:"16 79 80 81 83 84 85 86 87 88 89 90 91 93 94"},E:{"4":0,"12":0.00555,"13":0.06656,"14":0.29954,"15":0.14422,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01664,"11.1":0.04438,"12.1":0.0943,"13.1":0.47704,"14.1":1.0151,"15.1":0.26071,"15.2-15.3":0.18305,"15.4":3.93837,"15.5":0.32173},G:{"8":0.00174,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00174,"6.0-6.1":0.00522,"7.0-7.1":0.00695,"8.1-8.4":0.01912,"9.0-9.2":0.08693,"9.3":0.15473,"10.0-10.2":0.10605,"10.3":0.25383,"11.0-11.2":0.04173,"11.3-11.4":0.0678,"12.0-12.1":0.01912,"12.2-12.5":0.79975,"13.0-13.1":0.01043,"13.2":0.00522,"13.3":0.05563,"13.4-13.7":0.1669,"14.0-14.4":0.34598,"14.5-14.8":1.55951,"15.0-15.1":0.41378,"15.2-15.3":1.1266,"15.4":12.13183},P:{"4":0.3885,"5.0-5.4":0.02006,"6.2-6.4":0.03077,"7.2-7.4":0.79062,"8.2":0.02049,"9.2":0.05201,"10.1":0.02045,"11.1-11.2":0.03237,"12.0":0.04161,"13.0":0.08633,"14.0":0.09712,"15.0":0.04317,"16.0":1.16549},I:{"0":0,"3":0,"4":0.00132,"2.1":0,"2.2":0,"2.3":0.00132,"4.1":0.00132,"4.2-4.3":0.00794,"4.4":0,"4.4.3-4.4.4":0.03706},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.13432,"9":0.1567,"10":0.05223,"11":0.28356,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.4452},Q:{"10.4":0.01336},O:{"0":0.12911},H:{"0":0.17702},L:{"0":23.16029},S:{"2.5":0}}; 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 f297c7d2a104be..8efcc50bf1f088 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js @@ -1 +1 @@ -module.exports={C:{"34":0.00913,"52":0.00304,"91":0.01522,"96":0.00304,"97":0.00304,"98":0.14302,"99":0.40472,"100":0.00913,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 101 3.5 3.6"},D:{"34":0.01217,"38":0.01522,"49":0.01217,"53":0.00304,"62":0.01217,"63":0.00609,"64":0.00304,"65":0.01217,"67":0.00304,"69":0.00913,"70":0.01217,"71":0.00609,"75":0.00609,"76":0.00609,"77":0.01522,"78":0.01217,"79":0.0639,"80":0.00609,"81":0.02434,"83":0.01522,"84":0.00609,"85":0.01217,"86":0.04565,"87":0.05782,"88":0.01826,"89":0.05173,"90":0.03043,"91":0.04565,"92":0.11259,"93":0.0426,"94":0.01826,"95":0.03956,"96":0.06695,"97":0.0852,"98":0.18258,"99":3.17689,"100":16.33178,"101":0.23735,"102":0.03652,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 66 68 72 73 74 103 104"},F:{"28":0.02434,"36":0.00304,"46":0.01217,"84":0.07912,"85":0.30126,"86":0.00609,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00304,"14":0.00304,"16":0.00304,"17":0.00913,"18":0.0213,"84":0.00913,"89":0.00609,"91":0.00304,"92":0.01217,"93":0.01217,"94":0.00609,"95":0.00609,"96":0.01217,"97":0.0213,"98":0.02739,"99":0.33777,"100":2.30051,"101":0.01826,_:"13 15 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.01826,"14":0.10955,"15":0.05173,_:"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.02739,"12.1":0.00913,"13.1":0.07608,"14.1":0.27387,"15.1":0.13389,"15.2-15.3":0.09738,"15.4":0.44732},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00319,"6.0-6.1":0.00159,"7.0-7.1":0.02871,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0303,"10.0-10.2":0.00159,"10.3":0.02871,"11.0-11.2":0.01914,"11.3-11.4":0.01276,"12.0-12.1":0.01276,"12.2-12.5":0.48484,"13.0-13.1":0.02073,"13.2":0.01435,"13.3":0.07336,"13.4-13.7":0.20255,"14.0-14.4":0.78627,"14.5-14.8":2.01431,"15.0-15.1":0.89791,"15.2-15.3":5.22796,"15.4":6.0844},P:{"4":0.17401,"5.0-5.4":0.0308,"6.2-6.4":0.07186,"7.2-7.4":0.17401,"8.2":0.01122,"9.2":0.04094,"10.1":0.01054,"11.1-11.2":0.16377,"12.0":0.05118,"13.0":0.19448,"14.0":0.24566,"15.0":0.23542,"16.0":2.99908},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00171,"4.2-4.3":0.00228,"4.4":0,"4.4.3-4.4.4":0.03079},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.05403,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.00181},H:{"0":0.46764},L:{"0":49.3043},S:{"2.5":0},R:{_:"0"},M:{"0":0.06261},Q:{"10.4":0}}; +module.exports={C:{"34":0.00527,"86":0.00527,"91":0.00527,"98":0.00527,"99":0.05274,"100":0.37182,"101":0.00527,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 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 87 88 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"11":0.00264,"34":0.00264,"38":0.00791,"49":0.00791,"56":0.00264,"62":0.00791,"63":0.00527,"64":0.00527,"65":0.00791,"67":0.00527,"69":0.00527,"70":0.00791,"71":0.00264,"74":0.01055,"75":0.00791,"76":0.00791,"78":0.00527,"79":0.07384,"80":0.01055,"81":0.01582,"83":0.00791,"84":0.00791,"85":0.03164,"86":0.03956,"87":0.08438,"88":0.01319,"89":0.06065,"90":0.01055,"91":0.03692,"92":0.18986,"93":0.03164,"94":0.0211,"95":0.03956,"96":0.04483,"97":0.05274,"98":0.05801,"99":0.13712,"100":1.72724,"101":14.17388,"102":1.35014,"103":0.03692,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 66 68 72 73 77 104"},F:{"28":0.00791,"46":0.01319,"84":0.00264,"85":0.17141,"86":0.25579,"87":0.00791,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00264,"13":0.01055,"14":0.00527,"15":0.00791,"16":0.01055,"17":0.00791,"18":0.01846,"84":0.00527,"89":0.00264,"92":0.01055,"93":0.00264,"94":0.00527,"95":0.00264,"96":0.00791,"97":0.00791,"98":0.01055,"99":0.02637,"100":0.11075,"101":2.16234,_:"79 80 81 83 85 86 87 88 90 91"},E:{"4":0,"13":0.01055,"14":0.08175,"15":0.04219,_:"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.00791,"12.1":0.00791,"13.1":0.05538,"14.1":0.20569,"15.1":0.07911,"15.2-15.3":0.05801,"15.4":0.66452,"15.5":0.06856},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.00307,"7.0-7.1":0.02767,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04151,"10.0-10.2":0.00154,"10.3":0.03229,"11.0-11.2":0.00922,"11.3-11.4":0.01691,"12.0-12.1":0.01691,"12.2-12.5":0.53655,"13.0-13.1":0.02152,"13.2":0.01845,"13.3":0.07994,"13.4-13.7":0.20294,"14.0-14.4":0.63956,"14.5-14.8":1.60658,"15.0-15.1":0.55807,"15.2-15.3":1.40364,"15.4":10.15603},P:{"4":0.14277,"5.0-5.4":0.02027,"6.2-6.4":0.07095,"7.2-7.4":0.32632,"8.2":0.01022,"9.2":0.05099,"10.1":0.1419,"11.1-11.2":0.35692,"12.0":0.09178,"13.0":0.35692,"14.0":0.46909,"15.0":0.27533,"16.0":1.64181},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00627,"4.4":0,"4.4.3-4.4.4":0.06736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.27895,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.08099},Q:{"10.4":0},O:{"0":0.64794},H:{"0":0.39734},L:{"0":52.12861},S:{"2.5":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 f3d856a3f87d3a..15ace812d39b89 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:{"51":0.05316,"52":0.04556,"53":0.05316,"54":0.02658,"55":0.04936,"56":0.03797,"57":0.03417,"58":0.01519,"59":0.01519,"72":0.02278,"73":0.05316,"78":0.00759,"88":0.01139,"89":0.0038,"90":0.04936,"91":0.02658,"95":0.00759,"97":0.03038,"98":0.30756,"99":0.99861,"100":0.00759,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 87 92 93 94 96 101 3.5 3.6"},D:{"35":0.01139,"38":0.00759,"39":0.01519,"40":0.01519,"41":0.01519,"42":0.01139,"43":0.01519,"44":0.01519,"45":0.02278,"46":0.01899,"47":0.02658,"48":0.01899,"49":0.04177,"50":0.01139,"51":0.01139,"52":0.01139,"53":0.01899,"54":0.01519,"55":0.01519,"56":0.01899,"57":0.01899,"58":0.02278,"59":0.01899,"60":0.02278,"61":0.01899,"62":0.02278,"63":0.02278,"64":0.01899,"65":0.02278,"67":0.00759,"68":0.00759,"69":0.00759,"70":0.00759,"71":0.0038,"73":0.02278,"74":0.0038,"75":0.04177,"76":0.01519,"77":0.00759,"78":0.01519,"79":0.20884,"80":0.01139,"81":0.01519,"83":0.01519,"84":0.00759,"85":0.01139,"86":0.01899,"87":0.10632,"88":0.01899,"89":0.03417,"90":0.01899,"91":0.06075,"92":0.06835,"93":0.05696,"94":0.01899,"95":0.48222,"96":0.1215,"97":0.1291,"98":0.31135,"99":3.74005,"100":19.35331,"101":0.23921,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 66 72 102 103 104"},F:{"28":0.01519,"84":0.23162,"85":0.82015,"86":0.0038,_:"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 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.0038,"13":0.0038,"14":0.0038,"15":0.01139,"16":0.00759,"17":0.01139,"18":0.02278,"84":0.01139,"88":0.0038,"91":0.0038,"92":0.01519,"95":0.0038,"96":0.01519,"97":0.02278,"98":0.02278,"99":0.43666,"100":3.27301,"101":0.04556,_:"79 80 81 83 85 86 87 89 90 93 94"},E:{"4":0,"12":0.00759,"13":0.01519,"14":0.1329,"15":0.06455,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01519,"11.1":0.00759,"12.1":0.03038,"13.1":0.1253,"14.1":0.47842,"15.1":0.09493,"15.2-15.3":0.10632,"15.4":0.66827},G:{"8":0,"3.2":0.00096,"4.0-4.1":0.00192,"4.2-4.3":0,"5.0-5.1":0.00192,"6.0-6.1":0.01536,"7.0-7.1":0.04032,"8.1-8.4":0.00192,"9.0-9.2":0.01824,"9.3":0.07775,"10.0-10.2":0.0192,"10.3":0.04224,"11.0-11.2":0.01536,"11.3-11.4":0.00768,"12.0-12.1":0.00384,"12.2-12.5":0.36092,"13.0-13.1":0.00864,"13.2":0.00384,"13.3":0.03648,"13.4-13.7":0.08831,"14.0-14.4":0.34172,"14.5-14.8":1.03956,"15.0-15.1":0.3878,"15.2-15.3":3.35962,"15.4":3.72246},P:{"4":0.23634,"5.0-5.4":0.01047,"6.2-6.4":0.01047,"7.2-7.4":0.35965,"8.2":0.01122,"9.2":0.03083,"10.1":0.01054,"11.1-11.2":0.20551,"12.0":0.02055,"13.0":0.21579,"14.0":0.24662,"15.0":0.15414,"16.0":3.60676},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.03326},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01961,"9":0.02353,"10":0.00784,"11":0.18823,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.15508},H:{"0":0.22903},L:{"0":48.02104},S:{"2.5":0},R:{_:"0"},M:{"0":0.32876},Q:{"10.4":0.01241}}; +module.exports={C:{"47":0.00818,"50":0.00409,"51":0.14717,"52":0.12673,"53":0.13899,"54":0.07767,"55":0.13899,"56":0.1022,"57":0.09811,"58":0.03679,"59":0.03679,"72":0.01226,"73":0.04497,"78":0.01226,"88":0.00409,"90":0.06132,"91":0.01226,"93":0.00818,"97":0.01226,"99":0.21258,"100":1.04244,"101":0.00818,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 87 89 92 94 95 96 98 102 103 3.5 3.6"},D:{"11":0.00818,"38":0.00818,"39":0.03679,"40":0.03679,"41":0.04497,"42":0.04088,"43":0.04497,"44":0.04906,"45":0.05314,"46":0.05314,"47":0.0695,"48":0.04088,"49":0.07358,"50":0.0327,"51":0.03679,"52":0.0327,"53":0.04088,"54":0.04088,"55":0.04088,"56":0.04497,"57":0.04497,"58":0.05723,"59":0.05314,"60":0.05723,"61":0.04906,"62":0.05723,"63":0.05314,"64":0.04906,"65":0.05723,"67":0.00409,"68":0.00818,"69":0.00409,"70":0.01635,"71":0.00818,"73":0.02453,"74":0.00409,"75":0.0327,"76":0.03679,"77":0.00818,"78":0.02044,"79":0.11038,"80":0.02453,"81":0.01635,"83":0.00818,"84":0.01226,"85":0.02044,"86":0.02044,"87":0.07358,"88":0.02453,"89":0.02862,"90":0.02862,"91":0.07358,"92":0.04906,"93":0.05314,"94":0.01635,"95":0.02453,"96":0.10629,"97":0.1022,"98":0.17578,"99":0.19622,"100":4.1902,"101":19.16046,"102":1.97042,"103":0.00409,_:"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 66 72 104"},F:{"28":0.01226,"46":0.00409,"85":0.7154,"86":0.67043,"87":0.02044,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00409},B:{"12":0.00409,"13":0.00409,"14":0.00818,"15":0.01226,"16":0.00818,"17":0.01226,"18":0.02044,"84":0.00818,"89":0.00409,"90":0.00409,"92":0.01226,"96":0.01226,"97":0.01226,"98":0.01226,"99":0.04497,"100":0.17578,"101":3.75278,_:"79 80 81 83 85 86 87 88 91 93 94 95"},E:{"4":0,"8":0.00818,"12":0.01226,"13":0.00818,"14":0.09811,"15":0.04088,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00409,"11.1":0.01226,"12.1":0.02044,"13.1":0.10629,"14.1":0.41289,"15.1":0.08176,"15.2-15.3":0.11446,"15.4":1.05062,"15.5":0.14717},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0009,"6.0-6.1":0.01616,"7.0-7.1":0.03412,"8.1-8.4":0.00449,"9.0-9.2":0.04399,"9.3":0.05028,"10.0-10.2":0.05836,"10.3":0.06734,"11.0-11.2":0.02334,"11.3-11.4":0.00449,"12.0-12.1":0.0018,"12.2-12.5":0.22804,"13.0-13.1":0.01077,"13.2":0.00539,"13.3":0.01526,"13.4-13.7":0.07182,"14.0-14.4":0.21368,"14.5-14.8":0.83765,"15.0-15.1":0.2047,"15.2-15.3":0.6114,"15.4":6.47045},P:{"4":0.18392,"5.0-5.4":0.01045,"6.2-6.4":0.01045,"7.2-7.4":0.3474,"8.2":0.01022,"9.2":0.05109,"10.1":0.01017,"11.1-11.2":0.15327,"12.0":0.03065,"13.0":0.08174,"14.0":0.14305,"15.0":0.12261,"16.0":1.41005},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00578,"4.4":0,"4.4.3-4.4.4":0.05925},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05458,"9":0.06718,"10":0.02099,"11":0.16794,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.33107},Q:{"10.4":0.00591},O:{"0":0.1478},H:{"0":0.1959},L:{"0":46.38142},S:{"2.5":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 f00afacddf4605..a280f100f1b24c 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:{"52":0.0104,"73":0.0052,"78":0.0104,"84":0.0104,"88":0.0156,"90":0.0104,"91":0.0052,"96":0.0052,"97":0.03119,"98":0.24955,"99":0.84224,"100":0.0052,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 92 93 94 95 101 3.5 3.6"},D:{"22":0.0052,"34":0.0052,"38":0.04159,"47":0.0104,"49":0.03639,"53":0.0208,"63":0.0052,"65":0.0052,"66":0.0052,"67":0.0104,"68":0.0104,"69":0.0104,"70":0.0052,"72":0.0052,"73":0.0052,"74":0.0052,"75":0.04159,"76":0.0052,"77":0.0156,"78":0.0208,"79":0.27035,"80":0.0208,"81":0.04159,"83":0.026,"84":0.026,"85":0.03119,"86":0.04679,"87":0.10398,"88":0.0156,"89":0.03639,"90":0.026,"91":0.17157,"92":0.06759,"93":0.05719,"94":0.04679,"95":0.27555,"96":0.17677,"97":0.24955,"98":0.24955,"99":5.98405,"100":34.55255,"101":0.43152,"102":0.0104,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 71 103 104"},F:{"36":0.0104,"83":0.0052,"84":0.41072,"85":1.33614,"86":0.0156,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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.0156,"84":0.0052,"88":0.0104,"89":0.0052,"92":0.0104,"95":0.0052,"96":0.0104,"97":0.04159,"98":0.026,"99":0.29114,"100":2.25637,"101":0.0104,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 90 91 93 94"},E:{"4":0,"13":0.0104,"14":0.04159,"15":0.0208,_:"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","12.1":0.0104,"13.1":0.04679,"14.1":0.12478,"15.1":0.04159,"15.2-15.3":0.03639,"15.4":0.21316},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.00054,"7.0-7.1":0.0019,"8.1-8.4":0,"9.0-9.2":0.0019,"9.3":0.01441,"10.0-10.2":0.00408,"10.3":0.01686,"11.0-11.2":0.00299,"11.3-11.4":0.00816,"12.0-12.1":0.00979,"12.2-12.5":0.13894,"13.0-13.1":0.00381,"13.2":0.00272,"13.3":0.01577,"13.4-13.7":0.04106,"14.0-14.4":0.13024,"14.5-14.8":0.37958,"15.0-15.1":0.15662,"15.2-15.3":0.8709,"15.4":0.91332},P:{"4":0.20562,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.0974,"8.2":0.01011,"9.2":0.01082,"10.1":0.03034,"11.1-11.2":0.08658,"12.0":0.0708,"13.0":0.05411,"14.0":0.11904,"15.0":0.05411,"16.0":0.86575},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00218,"4.2-4.3":0.00218,"4.4":0,"4.4.3-4.4.4":0.03885},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09358,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.01921},H:{"0":0.18185},L:{"0":44.77863},S:{"2.5":0},R:{_:"0"},M:{"0":0.10084},Q:{"10.4":0}}; +module.exports={C:{"52":0.01112,"55":0.00556,"73":0.00556,"78":0.01112,"84":0.00556,"88":0.01112,"90":0.01112,"91":0.00556,"96":0.01112,"97":0.02224,"98":0.00556,"99":0.16121,"100":0.90056,"101":0.01112,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 92 93 94 95 102 103 3.5 3.6"},D:{"22":0.01112,"31":0.01112,"38":0.03335,"47":0.01112,"49":0.03335,"53":0.01668,"56":0.00556,"58":0.03335,"63":0.00556,"65":0.00556,"67":0.00556,"68":0.01112,"69":0.00556,"70":0.00556,"72":0.00556,"74":0.01112,"75":0.00556,"77":0.01112,"78":0.01668,"79":0.27239,"80":0.0278,"81":0.04447,"83":0.0278,"84":0.02224,"85":0.0278,"86":0.06671,"87":0.0945,"88":0.01668,"89":0.0278,"90":0.02224,"91":0.25016,"92":0.06671,"93":0.05559,"94":0.04447,"95":0.05559,"96":0.15009,"97":0.15565,"98":0.12786,"99":0.27239,"100":7.21558,"101":33.20947,"102":3.61891,"103":0.01112,_:"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 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 61 62 64 66 71 73 76 104"},F:{"36":0.00556,"84":0.00556,"85":1.17295,"86":1.10068,"87":0.03891,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01668,"92":0.01112,"96":0.00556,"97":0.0278,"98":0.01112,"99":0.02224,"100":0.10006,"101":2.59605,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01112,"14":0.06115,"15":0.01668,_:"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","12.1":0.00556,"13.1":0.04447,"14.1":0.11118,"15.1":0.03335,"15.2-15.3":0.03335,"15.4":0.36134,"15.5":0.05003},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00392,"6.0-6.1":0.0009,"7.0-7.1":0.00181,"8.1-8.4":0,"9.0-9.2":0.00151,"9.3":0.01416,"10.0-10.2":0.00301,"10.3":0.01175,"11.0-11.2":0.00271,"11.3-11.4":0.00422,"12.0-12.1":0.00783,"12.2-12.5":0.1211,"13.0-13.1":0.00362,"13.2":0.00241,"13.3":0.01235,"13.4-13.7":0.03766,"14.0-14.4":0.10845,"14.5-14.8":0.3133,"15.0-15.1":0.11026,"15.2-15.3":0.27745,"15.4":1.97259},P:{"4":0.15145,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.07572,"8.2":0.01022,"9.2":0.10137,"10.1":0.03041,"11.1-11.2":0.05409,"12.0":0.06082,"13.0":0.05409,"14.0":0.08654,"15.0":0.04327,"16.0":0.35699},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00193,"4.2-4.3":0.0029,"4.4":0,"4.4.3-4.4.4":0.03958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08339,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.11547},Q:{"10.4":0},O:{"0":0.01776},H:{"0":0.17238},L:{"0":41.23949},S:{"2.5":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 aa3ad9ea706d5a..3d0f50cb862327 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:{"38":0.01226,"48":0.11438,"52":0.04494,"56":0.00817,"57":0.00409,"60":0.05311,"65":0.00409,"68":0.22059,"78":0.13072,"80":0.00409,"82":0.06128,"84":0.00409,"88":0.00409,"89":0.02451,"91":0.54331,"93":0.00817,"94":0.01226,"95":0.00409,"96":0.01226,"97":0.05311,"98":1.11112,"99":2.79414,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 58 59 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 81 83 85 86 87 90 92 100 101 3.5 3.6"},D:{"26":0.01226,"49":0.02043,"57":0.00409,"62":0.00817,"67":0.02451,"70":0.00817,"73":0.00817,"76":0.00409,"79":0.01226,"83":0.02043,"84":0.00817,"85":0.01226,"87":0.04494,"88":0.01634,"89":0.01226,"91":0.00817,"92":0.12664,"93":0.02451,"94":0.04085,"95":0.01634,"96":0.29004,"97":0.31046,"98":0.23693,"99":3.40689,"100":15.06957,"101":0.31863,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 61 63 64 65 66 68 69 71 72 74 75 77 78 80 81 86 90 102 103 104"},F:{"46":0.02043,"84":0.07762,"85":0.4085,_:"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 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.01634,"18":0.00817,"90":0.00817,"91":0.00817,"92":0.01226,"93":0.04085,"96":0.00817,"97":0.04085,"98":0.00817,"99":0.38808,"100":2.93712,"101":0.03677,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 94 95"},E:{"4":0,"11":0.00817,"12":0.02451,"13":0.03268,"14":0.4085,"15":0.58824,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.18383,"12.1":0.15523,"13.1":0.48612,"14.1":1.4706,"15.1":0.34723,"15.2-15.3":0.36357,"15.4":1.91995},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00657,"6.0-6.1":0,"7.0-7.1":0.00219,"8.1-8.4":0.00219,"9.0-9.2":0,"9.3":0.11607,"10.0-10.2":0.01095,"10.3":0.14235,"11.0-11.2":0.0438,"11.3-11.4":0.03285,"12.0-12.1":0.08103,"12.2-12.5":1.50892,"13.0-13.1":0.00657,"13.2":0.00657,"13.3":0.04161,"13.4-13.7":0.08322,"14.0-14.4":0.65263,"14.5-14.8":2.73095,"15.0-15.1":1.67536,"15.2-15.3":8.91994,"15.4":5.82764},P:{"4":0.03131,"5.0-5.4":0.02116,"6.2-6.4":0.0102,"7.2-7.4":0.16698,"8.2":0.0204,"9.2":0.02087,"10.1":0.0102,"11.1-11.2":0.1148,"12.0":0.03131,"13.0":0.05218,"14.0":0.15655,"15.0":0.04175,"16.0":3.54841},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.03549},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.45344,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":33.99749},S:{"2.5":0},R:{_:"0"},M:{"0":0.26618},Q:{"10.4":0},O:{"0":0.1183},H:{"0":0.0672}}; +module.exports={C:{"45":0.00403,"48":0.02418,"49":0.00403,"52":0.01612,"60":0.01209,"68":0.19747,"78":0.10075,"81":0.00403,"82":0.03627,"89":0.02418,"91":0.3627,"92":0.00403,"94":0.03224,"95":0.00806,"96":0.01209,"97":0.02015,"98":0.06851,"99":0.66495,"100":3.19176,"101":0.01612,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 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 79 80 83 84 85 86 87 88 90 93 102 103 3.5 3.6"},D:{"49":0.08866,"65":0.00806,"67":0.02015,"77":0.02418,"79":0.00403,"83":0.00403,"87":0.06045,"88":0.00806,"89":0.0403,"90":0.02015,"91":0.00806,"92":0.03627,"93":0.02418,"94":0.00403,"95":0.02821,"96":0.08463,"97":0.10075,"98":0.10881,"99":0.3627,"100":3.72372,"101":13.28691,"102":0.94705,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 75 76 78 80 81 84 85 86 103 104"},F:{"85":0.29419,"86":0.22165,"87":0.01612,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01209,"84":0.00403,"91":0.00806,"92":0.01209,"93":0.02418,"94":0.00403,"96":0.00403,"97":0.03627,"98":0.00806,"99":0.01612,"100":0.17329,"101":2.9822,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 95"},E:{"4":0,"12":0.02015,"13":0.05642,"14":0.41509,"15":0.34658,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00403,"11.1":0.49166,"12.1":0.16926,"13.1":0.63271,"14.1":1.55155,"15.1":0.31837,"15.2-15.3":0.30225,"15.4":3.39326,"15.5":0.33449},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03585,"6.0-6.1":0,"7.0-7.1":0.00422,"8.1-8.4":0.00211,"9.0-9.2":0,"9.3":0.10121,"10.0-10.2":0.00633,"10.3":0.09278,"11.0-11.2":0.01687,"11.3-11.4":0.04006,"12.0-12.1":0.0738,"12.2-12.5":0.99739,"13.0-13.1":0.03796,"13.2":0.00422,"13.3":0.04639,"13.4-13.7":0.13074,"14.0-14.4":0.87719,"14.5-14.8":2.45235,"15.0-15.1":1.05432,"15.2-15.3":2.20985,"15.4":12.89644},P:{"4":0.10208,"5.0-5.4":0.02148,"6.2-6.4":0.03059,"7.2-7.4":0.11346,"8.2":0.01032,"9.2":0.03094,"10.1":0.01021,"11.1-11.2":0.05157,"12.0":0.02063,"13.0":0.03094,"14.0":0.13409,"15.0":0.03094,"16.0":1.54719},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.01791},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.40703,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":36.09167},S:{"2.5":0},R:{_:"0"},M:{"0":0.75222},Q:{"10.4":0},O:{"0":0.42387},H:{"0":0.07913}}; 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 e77aa2e0f8066a..53834654a8c8bb 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:{"47":0.01074,"52":0.01432,"61":0.02148,"65":0.00716,"68":0.00358,"71":0.00716,"72":0.00716,"77":0.0895,"78":0.00716,"82":0.01074,"84":0.00716,"85":0.0179,"87":0.01074,"88":0.01074,"89":0.02148,"90":0.00716,"91":0.06086,"92":0.02864,"93":0.00716,"94":0.01432,"95":0.04654,"96":0.02148,"97":0.1253,"98":0.6086,"99":1.24226,"100":0.0179,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 66 67 69 70 73 74 75 76 79 80 81 83 86 101 3.5 3.6"},D:{"11":0.00716,"18":0.00716,"38":0.00358,"39":0.01074,"43":0.00358,"47":0.00358,"49":0.01074,"50":0.00358,"55":0.0179,"58":0.00358,"59":0.00358,"61":0.01432,"63":0.00716,"65":0.03222,"66":0.00716,"67":0.0179,"68":0.01074,"69":0.11098,"70":0.16468,"71":0.0179,"72":0.00716,"73":0.01432,"74":0.04654,"75":0.01074,"76":0.0179,"77":0.00716,"78":0.00716,"79":0.01074,"80":0.01074,"81":0.04296,"83":0.01432,"84":0.00716,"85":0.00716,"86":0.02148,"87":0.06444,"88":0.12172,"89":0.03222,"90":0.0358,"91":0.09666,"92":0.0537,"93":0.02148,"94":0.09666,"95":0.03938,"96":0.15752,"97":0.11814,"98":0.15394,"99":2.80314,"100":11.27342,"101":0.18974,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 44 45 46 48 51 52 53 54 56 57 60 62 64 102 103 104"},F:{"17":0.00358,"38":0.00716,"68":0.03938,"77":0.00358,"80":0.02148,"81":0.02148,"82":0.01074,"84":0.05728,"85":0.18616,_:"9 11 12 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 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 78 79 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:{"12":0.06444,"13":0.09308,"14":0.0179,"15":0.03222,"16":0.0895,"17":0.04654,"18":0.33294,"80":0.03938,"84":0.19332,"85":0.0179,"89":0.05012,"90":0.0358,"91":0.0179,"92":0.05012,"93":0.02506,"94":0.06444,"95":0.04296,"96":0.0895,"97":0.02864,"98":0.18258,"99":0.83414,"100":3.84492,"101":0.02506,_:"79 81 83 86 87 88"},E:{"4":0,"13":0.00716,"14":0.03222,"15":0.00716,_:"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","12.1":0.01074,"13.1":0.06086,"14.1":0.07876,"15.1":0.02506,"15.2-15.3":0.01432,"15.4":0.08592},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.00044,"7.0-7.1":0,"8.1-8.4":0.00067,"9.0-9.2":0,"9.3":0.02598,"10.0-10.2":0.00133,"10.3":0.00711,"11.0-11.2":0.00711,"11.3-11.4":0.0131,"12.0-12.1":0.01355,"12.2-12.5":0.16921,"13.0-13.1":0.00311,"13.2":0.00533,"13.3":0.01288,"13.4-13.7":0.05796,"14.0-14.4":0.18476,"14.5-14.8":0.16277,"15.0-15.1":0.37174,"15.2-15.3":0.61734,"15.4":0.56693},P:{"4":0.388,"5.0-5.4":0.01047,"6.2-6.4":0.04084,"7.2-7.4":0.9802,"8.2":0.01122,"9.2":0.09189,"10.1":0.01021,"11.1-11.2":0.27568,"12.0":0.16337,"13.0":0.15316,"14.0":0.45947,"15.0":0.37779,"16.0":1.71536},I:{"0":0,"3":0,"4":0.00129,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01035,"4.2-4.3":0.03753,"4.4":0,"4.4.3-4.4.4":0.27824},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00358,"9":0.00716,"10":0.01074,"11":0.3401,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":2.00946},H:{"0":1.89635},L:{"0":61.66988},S:{"2.5":0.13482},R:{_:"0"},M:{"0":0.17334},Q:{"10.4":0.05778}}; +module.exports={C:{"44":0.00349,"45":0.01047,"47":0.01396,"48":0.01047,"53":0.01396,"56":0.00698,"61":0.00349,"67":0.00698,"70":0.00698,"71":0.00349,"72":0.01047,"77":0.05586,"78":0.01746,"82":0.00349,"83":0.00698,"84":0.00698,"85":0.01047,"87":0.00698,"88":0.04538,"89":0.00698,"90":0.01047,"91":0.02793,"92":0.01746,"93":0.01047,"94":0.01396,"95":0.05586,"96":0.01047,"97":0.09426,"98":0.18153,"99":0.53063,"100":1.22185,"101":0.06982,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 46 49 50 51 52 54 55 57 58 59 60 62 63 64 65 66 68 69 73 74 75 76 79 80 81 86 102 103 3.5 3.6"},D:{"26":0.00698,"36":0.00349,"37":0.00698,"43":0.00698,"49":0.00698,"53":0.00349,"55":0.01746,"56":0.00349,"58":0.00349,"60":0.01047,"63":0.00698,"64":0.00698,"65":0.01396,"66":0.00698,"67":0.01746,"68":0.01396,"69":0.0768,"70":0.10473,"72":0.01396,"73":0.00698,"74":0.01746,"75":0.06284,"76":0.02095,"77":0.00698,"78":0.01047,"79":0.01396,"80":0.02095,"81":0.05586,"83":0.01047,"84":0.00349,"85":0.01396,"86":0.00698,"87":0.01746,"88":0.17455,"89":0.02793,"90":0.04189,"91":0.03491,"92":0.06982,"93":0.01047,"94":0.04538,"95":0.02793,"96":0.09077,"97":0.06284,"98":0.09426,"99":0.26532,"100":2.93593,"101":8.70655,"102":1.0089,"103":0.00698,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 38 39 40 41 42 44 45 46 47 48 50 51 52 54 57 59 61 62 71 104"},F:{"68":0.01047,"77":0.01746,"80":0.01047,"81":0.01396,"82":0.00349,"84":0.01396,"85":0.1152,"86":0.44336,"87":0.0384,_:"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 70 71 72 73 74 75 76 78 79 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.06633,"13":0.08029,"14":0.03142,"15":0.04189,"16":0.04887,"17":0.05237,"18":0.21644,"80":0.03142,"84":0.16757,"85":0.02444,"87":0.00349,"89":0.04189,"90":0.04538,"91":0.01746,"92":0.05935,"94":0.04538,"95":0.03491,"96":0.14662,"97":0.02793,"98":0.11171,"99":0.18153,"100":0.46081,"101":3.69348,_:"79 81 83 86 88 93"},E:{"4":0,"10":0.00698,"12":0.00349,"13":0.00698,"14":0.03142,"15":0.00698,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00349,"12.1":0.01396,"13.1":0.08378,"14.1":0.1152,"15.1":0.01746,"15.2-15.3":0.01047,"15.4":0.14313,"15.5":0.01746},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0004,"6.0-6.1":0.00238,"7.0-7.1":0.0006,"8.1-8.4":0.0006,"9.0-9.2":0.0002,"9.3":0.02065,"10.0-10.2":0.0002,"10.3":0.01291,"11.0-11.2":0.00159,"11.3-11.4":0.01291,"12.0-12.1":0.03097,"12.2-12.5":0.1499,"13.0-13.1":0.00893,"13.2":0.00496,"13.3":0.02363,"13.4-13.7":0.05976,"14.0-14.4":0.12349,"14.5-14.8":0.12826,"15.0-15.1":0.328,"15.2-15.3":0.28491,"15.4":0.79001},P:{"4":0.21485,"5.0-5.4":0.01045,"6.2-6.4":0.02046,"7.2-7.4":0.86961,"8.2":0.01022,"9.2":0.06138,"10.1":0.01017,"11.1-11.2":0.29669,"12.0":0.06138,"13.0":0.21485,"14.0":0.32738,"15.0":0.24554,"16.0":1.28907},I:{"0":0,"3":0,"4":0.00216,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00648,"4.2-4.3":0.03996,"4.4":0,"4.4.3-4.4.4":0.19874},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00729,"11":0.24407,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.39054},Q:{"10.4":0.07811},O:{"0":1.77696},H:{"0":2.27389},L:{"0":64.18},S:{"2.5":0.20178}}; 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 f94dcef8496b45..2270684cf806df 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:{"36":0.00915,"50":0.00457,"52":0.01372,"56":0.0183,"59":0.01372,"78":0.01372,"88":0.00915,"91":0.00915,"92":0.00457,"94":0.00915,"95":0.00915,"96":0.00915,"97":0.00915,"98":0.21955,"99":0.66323,"100":0.0183,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 93 101 3.5 3.6"},D:{"49":0.02744,"52":0.0183,"53":0.00915,"55":0.00915,"56":0.00457,"58":0.00457,"63":0.00457,"65":0.01372,"66":0.07318,"67":0.00915,"68":0.00457,"69":0.01372,"70":0.00915,"71":0.00915,"72":0.00915,"73":0.01372,"74":0.04117,"75":0.02287,"76":0.04117,"77":0.01372,"78":0.09605,"79":0.10063,"80":0.02287,"81":0.02287,"83":0.04574,"84":0.03202,"85":0.02744,"86":0.05031,"87":0.07776,"88":0.05031,"89":0.04117,"90":0.04117,"91":0.10063,"92":0.13722,"93":0.08691,"94":0.06404,"95":0.07776,"96":0.17381,"97":0.25157,"98":0.31103,"99":5.66261,"100":26.3005,"101":0.41166,"102":0.02744,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 54 57 59 60 61 62 64 103 104"},F:{"28":0.03659,"46":0.00915,"83":0.00457,"84":0.32018,"85":0.84162,"86":0.00915,_:"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 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.00915,"18":0.01372,"84":0.00915,"88":0.00457,"89":0.00457,"92":0.01372,"95":0.00915,"96":0.00915,"97":0.01372,"98":0.02287,"99":0.44825,"100":3.03714,"101":0.03659,_:"12 13 14 15 16 79 80 81 83 85 86 87 90 91 93 94"},E:{"4":0,"13":0.01372,"14":0.08691,"15":0.05031,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00457,"11.1":0.02287,"12.1":0.01372,"13.1":0.06861,"14.1":0.20583,"15.1":0.07318,"15.2-15.3":0.06861,"15.4":0.42081},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0106,"6.0-6.1":0.00202,"7.0-7.1":0.0111,"8.1-8.4":0.00151,"9.0-9.2":0.01968,"9.3":0.07469,"10.0-10.2":0.00505,"10.3":0.03936,"11.0-11.2":0.01716,"11.3-11.4":0.03936,"12.0-12.1":0.01665,"12.2-12.5":0.40626,"13.0-13.1":0.0111,"13.2":0.00807,"13.3":0.03331,"13.4-13.7":0.08832,"14.0-14.4":0.24275,"14.5-14.8":0.57432,"15.0-15.1":0.27909,"15.2-15.3":1.30762,"15.4":1.85721},P:{"4":0.25709,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.0974,"8.2":0.01011,"9.2":0.01082,"10.1":0.03034,"11.1-11.2":0.03214,"12.0":0.0708,"13.0":0.03214,"14.0":0.05356,"15.0":0.03214,"16.0":0.85697},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.00452,"4.4":0,"4.4.3-4.4.4":0.0425},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.89364,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.92768},H:{"0":0.74473},L:{"0":47.13963},S:{"2.5":0},R:{_:"0"},M:{"0":0.10308},Q:{"10.4":0}}; +module.exports={C:{"36":0.00935,"52":0.00935,"56":0.00935,"59":0.01403,"66":0.00468,"78":0.00935,"88":0.00468,"91":0.00935,"95":0.00468,"97":0.00468,"98":0.00935,"99":0.17769,"100":0.72946,"101":0.0187,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 96 102 103 3.5 3.6"},D:{"49":0.0187,"52":0.04208,"53":0.00935,"55":0.00468,"58":0.00468,"63":0.00468,"65":0.00935,"66":0.06546,"67":0.00935,"68":0.00468,"69":0.01403,"70":0.00935,"71":0.00935,"72":0.00935,"73":0.00935,"74":0.02338,"75":0.0187,"76":0.03741,"77":0.01403,"78":0.06546,"79":0.11222,"80":0.02338,"81":0.02806,"83":0.07014,"84":0.03273,"85":0.02806,"86":0.04208,"87":0.07014,"88":0.04676,"89":0.04676,"90":0.07482,"91":0.10287,"92":0.1169,"93":0.07949,"94":0.04676,"95":0.06079,"96":0.14028,"97":0.15431,"98":0.16834,"99":0.34135,"100":5.52236,"101":22.80485,"102":2.58115,"103":0.0187,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 54 56 57 59 60 61 62 64 104"},F:{"28":0.04208,"36":0.00468,"46":0.00935,"84":0.00468,"85":0.67334,"86":0.51904,"87":0.02806,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00935,"18":0.01403,"84":0.00935,"89":0.00468,"92":0.00935,"95":0.00935,"96":0.00468,"97":0.00935,"98":0.00935,"99":0.0187,"100":0.1169,"101":3.24514,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90 91 93 94"},E:{"4":0,"13":0.01403,"14":0.07482,"15":0.03741,_:"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.02338,"12.1":0.00935,"13.1":0.06546,"14.1":0.19172,"15.1":0.06079,"15.2-15.3":0.05144,"15.4":0.67334,"15.5":0.07949},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00873,"6.0-6.1":0.00194,"7.0-7.1":0.01261,"8.1-8.4":0.00194,"9.0-9.2":0.01698,"9.3":0.06162,"10.0-10.2":0.00437,"10.3":0.04318,"11.0-11.2":0.01116,"11.3-11.4":0.04561,"12.0-12.1":0.01795,"12.2-12.5":0.38231,"13.0-13.1":0.01164,"13.2":0.00922,"13.3":0.02571,"13.4-13.7":0.07811,"14.0-14.4":0.20377,"14.5-14.8":0.44538,"15.0-15.1":0.18922,"15.2-15.3":0.37746,"15.4":2.90033},P:{"4":0.31259,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.07572,"8.2":0.01022,"9.2":0.10137,"10.1":0.03041,"11.1-11.2":0.03234,"12.0":0.06082,"13.0":0.03234,"14.0":0.03234,"15.0":0.03234,"16.0":0.34493},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00581,"4.4":0,"4.4.3-4.4.4":0.04742},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":4.5404,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.11178},Q:{"10.4":0},O:{"0":0.70796},H:{"0":0.72064},L:{"0":46.6458},S:{"2.5":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 a2824ea6258c08..c7346a73079389 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:{"47":0.00532,"52":0.02927,"68":0.00532,"72":0.00532,"78":0.00798,"79":0.00532,"80":0.00532,"81":0.00266,"82":0.00532,"83":0.00266,"84":0.00532,"86":0.00266,"88":0.00532,"89":0.00266,"90":0.00532,"91":0.01597,"93":0.00266,"94":0.00798,"95":0.01064,"96":0.01064,"97":0.01331,"98":0.29271,"99":0.80096,"100":0.03992,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 85 87 92 101 3.5 3.6"},D:{"38":0.00266,"40":0.00266,"42":0.00266,"43":0.02129,"47":0.00266,"49":0.01863,"50":0.00266,"55":0.00266,"56":0.03725,"58":0.00266,"61":0.00266,"62":0.00266,"63":0.01064,"64":0.03459,"65":0.00798,"67":0.00266,"68":0.00798,"69":0.00532,"70":0.00532,"71":0.00532,"72":0.01064,"73":0.01331,"74":0.01863,"75":0.01064,"76":0.01064,"77":0.00798,"78":0.01064,"79":0.02395,"80":0.02129,"81":0.02927,"83":0.0479,"84":0.08781,"85":0.23683,"86":0.07717,"87":0.07717,"88":0.02395,"89":0.03193,"90":0.02395,"91":0.02927,"92":0.04258,"93":0.05056,"94":0.03193,"95":0.0479,"96":0.0958,"97":0.1091,"98":0.24747,"99":2.8659,"100":15.30607,"101":0.25546,"102":0.02927,_:"4 5 6 7 8 9 10 11 12 13 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 44 45 46 48 51 52 53 54 57 59 60 66 103 104"},F:{"28":0.01064,"70":0.00266,"79":0.00266,"82":0.00266,"83":0.00266,"84":0.10112,"85":0.52688,"86":0.01597,_:"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 71 72 73 74 75 76 77 78 80 81 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.01064,"13":0.00532,"14":0.00266,"15":0.00532,"16":0.00532,"17":0.00532,"18":0.02661,"84":0.01064,"85":0.00532,"89":0.00266,"92":0.00798,"95":0.00266,"96":0.00532,"97":0.00798,"98":0.00798,"99":0.14369,"100":0.83822,"101":0.01064,_:"79 80 81 83 86 87 88 90 91 93 94"},E:{"4":0,"12":0.00266,"13":0.01064,"14":0.02661,"15":0.01064,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.00266,"10.1":0.00266,"12.1":0.00798,"13.1":0.02395,"14.1":0.07983,"15.1":0.01863,"15.2-15.3":0.02395,"15.4":0.07451},G:{"8":0,"3.2":0.00044,"4.0-4.1":0,"4.2-4.3":0.00177,"5.0-5.1":0.00885,"6.0-6.1":0.00133,"7.0-7.1":0.07032,"8.1-8.4":0,"9.0-9.2":0.00088,"9.3":0.06325,"10.0-10.2":0.0031,"10.3":0.05484,"11.0-11.2":0.01371,"11.3-11.4":0.01636,"12.0-12.1":0.01415,"12.2-12.5":0.35649,"13.0-13.1":0.01194,"13.2":0.00663,"13.3":0.02477,"13.4-13.7":0.08271,"14.0-14.4":0.20876,"14.5-14.8":0.50997,"15.0-15.1":0.27245,"15.2-15.3":1.40163,"15.4":1.29371},P:{"4":0.19887,"5.0-5.4":0.01047,"6.2-6.4":0.01047,"7.2-7.4":0.0628,"8.2":0.01122,"9.2":0.02093,"10.1":0.01054,"11.1-11.2":0.04187,"12.0":0.02093,"13.0":0.08374,"14.0":0.0628,"15.0":0.0628,"16.0":1.33979},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00095,"4.2-4.3":0.00523,"4.4":0,"4.4.3-4.4.4":0.04519},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00532,"9":0.00532,"11":0.08515,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":3.64748},H:{"0":1.52858},L:{"0":64.0089},S:{"2.5":0.12476},R:{_:"0"},M:{"0":0.06605},Q:{"10.4":0}}; +module.exports={C:{"11":0.00253,"47":0.00506,"50":0.00253,"52":0.03037,"56":0.00253,"68":0.00506,"72":0.00506,"78":0.00759,"79":0.00253,"80":0.01012,"81":0.00506,"82":0.00506,"83":0.00506,"84":0.00506,"88":0.00506,"89":0.00253,"91":0.01266,"94":0.00506,"95":0.01519,"96":0.00759,"97":0.01266,"98":0.0329,"99":0.15439,"100":0.85801,"101":0.0329,_:"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 48 49 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 87 90 92 93 102 103 3.5 3.6"},D:{"40":0.00506,"43":0.01519,"49":0.01772,"50":0.00253,"56":0.03037,"62":0.00506,"63":0.00759,"64":0.02025,"65":0.00759,"67":0.00506,"68":0.00759,"69":0.00506,"70":0.00506,"71":0.00506,"72":0.00759,"73":0.00759,"74":0.02025,"75":0.01012,"76":0.01012,"77":0.01772,"78":0.01266,"79":0.02784,"80":0.02025,"81":0.02531,"83":0.05315,"84":0.09365,"85":0.27335,"86":0.07846,"87":0.08859,"88":0.02278,"89":0.03543,"90":0.02025,"91":0.0329,"92":0.03797,"93":0.03543,"94":0.02784,"95":0.04303,"96":0.0734,"97":0.06834,"98":0.11896,"99":0.16705,"100":2.16907,"101":13.38393,"102":1.50088,"103":0.02784,"104":0.00506,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 47 48 51 52 53 54 55 57 58 59 60 61 66"},F:{"28":0.00253,"69":0.00253,"71":0.00506,"79":0.00506,"84":0.00759,"85":0.23032,"86":0.34422,"87":0.03797,_:"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 70 72 73 74 75 76 77 78 80 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.01012,"13":0.00506,"15":0.00506,"16":0.00759,"17":0.00253,"18":0.03037,"84":0.00506,"89":0.00253,"92":0.00759,"96":0.00253,"97":0.00253,"98":0.00759,"99":0.01519,"100":0.04809,"101":0.87826,_:"14 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.00506,"14":0.02531,"15":0.00759,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00253,"10.1":0.00253,"11.1":0.00253,"12.1":0.00506,"13.1":0.02531,"14.1":0.0734,"15.1":0.01772,"15.2-15.3":0.01772,"15.4":0.13414,"15.5":0.01772},G:{"8":0,"3.2":0.00117,"4.0-4.1":0,"4.2-4.3":0.00156,"5.0-5.1":0.00234,"6.0-6.1":0.00039,"7.0-7.1":0.04611,"8.1-8.4":0.00078,"9.0-9.2":0.00156,"9.3":0.07346,"10.0-10.2":0.0043,"10.3":0.05353,"11.0-11.2":0.00977,"11.3-11.4":0.01211,"12.0-12.1":0.00977,"12.2-12.5":0.3329,"13.0-13.1":0.00781,"13.2":0.00899,"13.3":0.0211,"13.4-13.7":0.06408,"14.0-14.4":0.17036,"14.5-14.8":0.36846,"15.0-15.1":0.16606,"15.2-15.3":0.37745,"15.4":2.17169},P:{"4":0.18805,"5.0-5.4":0.01045,"6.2-6.4":0.01045,"7.2-7.4":0.05224,"8.2":0.01022,"9.2":0.01045,"10.1":0.1419,"11.1-11.2":0.03134,"12.0":0.02089,"13.0":0.07313,"14.0":0.06268,"15.0":0.05224,"16.0":0.56414},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.00459,"4.4":0,"4.4.3-4.4.4":0.04677},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00253,"9":0.00506,"11":0.08859,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.07468},Q:{"10.4":0},O:{"0":3.79374},H:{"0":1.61908},L:{"0":65.92892},S:{"2.5":0.11949}}; 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 b8f4671ec15377..639dfcd0f5d9dd 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:{"51":0.00661,"52":0.09915,"66":0.00331,"68":0.00992,"72":0.00661,"78":0.01983,"79":0.00331,"80":0.00331,"81":0.00331,"82":0.00661,"83":0.00331,"84":0.01983,"87":0.00661,"88":0.01983,"89":0.01653,"90":0.00661,"91":0.07932,"92":0.00992,"93":0.01653,"94":0.03636,"95":0.02975,"96":0.02975,"97":0.06941,"98":1.47734,"99":3.59584,"100":0.00992,"101":0.00331,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 85 86 3.5 3.6"},D:{"34":0.01322,"48":0.00331,"49":0.0661,"58":0.00661,"63":0.01322,"69":0.00331,"70":0.00331,"71":0.00661,"75":0.00661,"76":0.03636,"77":0.00331,"78":0.00992,"79":0.18178,"80":0.00661,"81":0.00661,"83":0.01653,"84":0.03636,"85":0.01653,"86":0.02644,"87":0.03305,"88":0.01322,"89":0.01983,"90":0.01653,"91":0.02314,"92":0.02975,"93":0.02975,"94":0.02975,"95":0.03966,"96":0.08924,"97":0.11568,"98":0.1983,"99":3.39093,"100":12.94899,"101":0.16195,"102":0.00331,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 59 60 61 62 64 65 66 67 68 72 73 74 103 104"},F:{"36":0.00992,"68":0.00331,"73":0.00992,"75":0.00331,"76":0.00331,"77":0.00661,"78":0.01322,"79":0.01322,"80":0.00661,"81":0.00331,"82":0.01653,"83":0.02644,"84":1.29226,"85":3.27195,"86":0.03305,_:"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 69 70 71 72 74 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00331,"17":0.00331,"18":0.00661,"91":0.00331,"92":0.00992,"93":0.00331,"94":0.00331,"95":0.00331,"96":0.00992,"97":0.01983,"98":0.03636,"99":0.35364,"100":1.96317,"101":0.02975,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90"},E:{"4":0,"13":0.00661,"14":0.03966,"15":0.01983,_:"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.00331,"12.1":0.00992,"13.1":0.04297,"14.1":0.08924,"15.1":0.04958,"15.2-15.3":0.04297,"15.4":0.20491},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00052,"6.0-6.1":0.00157,"7.0-7.1":0.00157,"8.1-8.4":0.00052,"9.0-9.2":0.00105,"9.3":0.01154,"10.0-10.2":0.00105,"10.3":0.00734,"11.0-11.2":0.00105,"11.3-11.4":0.00262,"12.0-12.1":0.00524,"12.2-12.5":0.08024,"13.0-13.1":0.00629,"13.2":0.0042,"13.3":0.01521,"13.4-13.7":0.06031,"14.0-14.4":0.15943,"14.5-14.8":0.50243,"15.0-15.1":0.21975,"15.2-15.3":2.0931,"15.4":2.06635},P:{"4":0.13436,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.0974,"8.2":0.01011,"9.2":0.01034,"10.1":0.03034,"11.1-11.2":0.07235,"12.0":0.02067,"13.0":0.08268,"14.0":0.13436,"15.0":0.06201,"16.0":2.65619},I:{"0":0,"3":0,"4":0.00105,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00732,"4.2-4.3":0.00697,"4.4":0,"4.4.3-4.4.4":0.01813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07271,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.03347},H:{"0":2.44625},L:{"0":55.13017},S:{"2.5":0},R:{_:"0"},M:{"0":0.60246},Q:{"10.4":0}}; +module.exports={C:{"51":0.00353,"52":0.09895,"68":0.00707,"72":0.00707,"78":0.01767,"79":0.00353,"81":0.00353,"83":0.00353,"84":0.0106,"86":0.00353,"87":0.00707,"88":0.01767,"89":0.01414,"90":0.00353,"91":0.08128,"92":0.00707,"93":0.03534,"94":0.05301,"95":0.0212,"96":0.0212,"97":0.02827,"98":0.07068,"99":0.93651,"100":4.17365,"101":0.01414,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 82 85 102 103 3.5 3.6"},D:{"38":0.00353,"49":0.06361,"58":0.00353,"63":0.0106,"69":0.00353,"71":0.00707,"74":0.00353,"75":0.00353,"76":0.04594,"77":0.00353,"78":0.00707,"79":0.23678,"80":0.00707,"81":0.0106,"83":0.0106,"84":0.03534,"85":0.0212,"86":0.03181,"87":0.03181,"88":0.01414,"89":0.0212,"90":0.0106,"91":0.0212,"92":0.03534,"93":0.01767,"94":0.02827,"95":0.08128,"96":0.07421,"97":0.07421,"98":0.10249,"99":0.19437,"100":3.39617,"101":12.63052,"102":1.21923,"103":0.00353,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 65 66 67 68 70 72 73 104"},F:{"36":0.0106,"73":0.00707,"78":0.00707,"79":0.00707,"80":0.00707,"82":0.0106,"83":0.0106,"84":0.06008,"85":2.8166,"86":2.61869,"87":0.07421,_:"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 74 75 76 77 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00353,"17":0.00353,"18":0.00707,"84":0.00353,"86":0.00353,"92":0.0106,"96":0.0106,"97":0.0106,"98":0.02474,"99":0.03534,"100":0.15903,"101":2.50561,_:"12 13 14 16 79 80 81 83 85 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.00707,"14":0.03181,"15":0.0212,_:"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","12.1":0.0106,"13.1":0.04241,"14.1":0.08482,"15.1":0.03534,"15.2-15.3":0.03181,"15.4":0.31099,"15.5":0.04594},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00108,"6.0-6.1":0.00054,"7.0-7.1":0.00108,"8.1-8.4":0.00162,"9.0-9.2":0.00162,"9.3":0.01401,"10.0-10.2":0,"10.3":0.00754,"11.0-11.2":0.00108,"11.3-11.4":0.00216,"12.0-12.1":0.00485,"12.2-12.5":0.07435,"13.0-13.1":0.01131,"13.2":0.00323,"13.3":0.01239,"13.4-13.7":0.06142,"14.0-14.4":0.13523,"14.5-14.8":0.41055,"15.0-15.1":0.1417,"15.2-15.3":0.43803,"15.4":4.0624},P:{"4":0.18469,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.01026,"9.2":0.02052,"11.1-11.2":0.08209,"12.0":0.02052,"13.0":0.06156,"14.0":0.09235,"15.0":0.0513,"16.0":0.9953},I:{"0":0,"3":0,"4":0.00233,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01491,"4.2-4.3":0.00792,"4.4":0,"4.4.3-4.4.4":0.02656},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07068,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":53.78752},S:{"2.5":0},R:{_:"0"},M:{"0":0.54961},Q:{"10.4":0},O:{"0":0.03233},H:{"0":2.27723}}; 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 8932744e43c4b6..e2dec846e857c6 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:{"45":0.00324,"56":0.00972,"68":0.02593,"78":0.00972,"85":0.00324,"91":0.10371,"98":0.40837,"99":1.81496,"100":0.00324,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 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 86 87 88 89 90 92 93 94 95 96 97 101 3.5 3.6"},D:{"23":0.00972,"29":0.01621,"47":0.00972,"49":0.03889,"67":0.04213,"73":0.06158,"78":0.00324,"83":0.10371,"86":0.00324,"88":0.00972,"89":0.01296,"90":0.01621,"91":0.01296,"93":0.01296,"94":0.00324,"95":0.02593,"96":0.13288,"97":0.15881,"98":0.61255,"99":3.21507,"100":8.12195,"101":0.01945,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 74 75 76 77 79 80 81 84 85 87 92 102 103 104"},F:{"83":0.02593,"84":0.04213,"85":0.50236,_:"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 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"96":0.00972,"99":0.37596,"100":4.29433,"101":0.10371,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98"},E:{"4":0,"13":0.00324,"14":0.0551,"15":0.01945,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 12.1","10.1":0.00324,"11.1":0.00324,"13.1":0.12964,"14.1":0.72923,"15.1":0.74867,"15.2-15.3":0.76812,"15.4":1.6205},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.00965,"9.3":0.05788,"10.0-10.2":0,"10.3":0.05788,"11.0-11.2":0.00965,"11.3-11.4":0.07718,"12.0-12.1":0.03377,"12.2-12.5":1.94395,"13.0-13.1":0,"13.2":0.00965,"13.3":0.28942,"13.4-13.7":0.01447,"14.0-14.4":0.20742,"14.5-14.8":4.07121,"15.0-15.1":2.5035,"15.2-15.3":31.05501,"15.4":7.89158},P:{"4":0.14789,"5.0-5.4":0.01116,"6.2-6.4":0.04084,"7.2-7.4":0.65496,"8.2":0.01011,"9.2":0.02062,"10.1":0.02113,"11.1-11.2":0.15846,"12.0":0.01056,"13.0":0.10564,"14.0":0.15846,"15.0":0.16902,"16.0":1.51402},I:{"0":0,"3":0,"4":0.00186,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.07458,"4.4":0,"4.4.3-4.4.4":0.00466},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08751,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":17.7498},S:{"2.5":0},R:{_:"0"},M:{"0":0.10139},Q:{"10.4":0}}; +module.exports={C:{"52":0.01255,"75":0.00628,"78":0.03138,"91":0.35146,"97":0.00628,"98":0.00628,"99":0.28242,"100":1.69766,"101":0.01255,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 102 103 3.5 3.6"},D:{"23":0.00314,"29":0.01883,"49":0.02197,"61":0.04079,"63":0.0251,"76":0.00628,"77":0.00628,"78":0.01255,"83":0.05335,"84":0.00314,"86":0.04707,"89":0.00314,"90":0.01255,"91":0.04707,"94":0.00628,"96":0.10042,"97":0.01255,"98":0.01255,"99":0.46129,"100":3.20076,"101":7.30526,"102":1.09202,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 65 66 67 68 69 70 71 72 73 74 75 79 80 81 85 87 88 92 93 95 103 104"},F:{"85":0.36401,"86":0.20397,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"94":0.01255,"100":0.03138,"101":3.47377,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99"},E:{"4":0,"14":0.01569,"15":0.01569,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.08159,"14.1":0.53032,"15.1":0.54915,"15.2-15.3":0.77195,"15.4":6.50821,"15.5":1.06692},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.00481,"10.0-10.2":0,"10.3":0.06258,"11.0-11.2":0.01444,"11.3-11.4":0.04333,"12.0-12.1":0,"12.2-12.5":1.68491,"13.0-13.1":0,"13.2":0,"13.3":0.20219,"13.4-13.7":0.11072,"14.0-14.4":0.12998,"14.5-14.8":3.90419,"15.0-15.1":1.97857,"15.2-15.3":6.14753,"15.4":33.83308},P:{"4":0.15641,"5.0-5.4":0.02027,"6.2-6.4":0.01043,"7.2-7.4":0.46922,"8.2":0.01022,"9.2":0.02051,"10.1":0.04171,"11.1-11.2":0.12512,"12.0":0.02085,"13.0":0.09384,"14.0":0.14598,"15.0":0.12512,"16.0":1.13955},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.09291,"4.4":0,"4.4.3-4.4.4":0.00316},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.20397,"11":0.01255,_:"7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.08921},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":19.21192},S:{"2.5":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 1e72ad49a80fb4..ce55ef378f85d6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js @@ -1 +1 @@ -module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 3.5 3.6"},D:{"99":10.256,"100":2.564,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 101 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1 15.2-15.3 15.4"},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},P:{"4":0.25709,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.0974,"8.2":0.01011,"9.2":0.01082,"10.1":0.03034,"11.1-11.2":0.03214,"12.0":0.0708,"13.0":0.03214,"14.0":0.05356,"15.0":0.03214,"16.0":0.85697},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:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":87.18},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 3.5 3.6"},D:{"101":77.78,"102":22.22,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1 15.2-15.3 15.4 15.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0},P:{"4":0.31259,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.07572,"8.2":0.01022,"9.2":0.10137,"10.1":0.03041,"11.1-11.2":0.03234,"12.0":0.06082,"13.0":0.03234,"14.0":0.03234,"15.0":0.03234,"16.0":0.34493},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.12316,_:"11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":0},S:{"2.5":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 c004c1744a930a..ec7ef068d354aa 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:{"45":0.00424,"46":0.00424,"47":0.00424,"48":0.00848,"49":0.00848,"50":0.00848,"51":0.00424,"52":0.02968,"53":0.00424,"54":0.00848,"55":0.00424,"56":0.00424,"73":0.05512,"78":0.01696,"84":0.00424,"87":0.00424,"88":0.00424,"90":0.0848,"91":0.02544,"95":0.0212,"96":0.0212,"97":0.02544,"98":0.5724,"99":1.65784,"100":0.01696,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 89 92 93 94 101 3.5 3.6"},D:{"25":0.00424,"49":0.0424,"54":0.00848,"58":0.00848,"63":0.00424,"65":0.00424,"73":0.00848,"75":0.01696,"76":0.01272,"77":0.00424,"78":0.00848,"79":0.0636,"80":0.00848,"81":0.00848,"83":0.00848,"84":0.03816,"85":0.01272,"86":0.02968,"87":0.08056,"88":0.01272,"89":0.03816,"90":0.00848,"91":0.02544,"92":0.02968,"93":0.0424,"94":0.04664,"95":0.01696,"96":0.09328,"97":0.22472,"98":0.47064,"99":3.73968,"100":17.7656,"101":0.25864,"102":0.00848,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 55 56 57 59 60 61 62 64 66 67 68 69 70 71 72 74 103 104"},F:{"79":0.00848,"83":0.00848,"84":0.12296,"85":0.56816,"86":0.01272,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 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.00424,"16":0.0212,"17":0.01272,"18":0.02544,"84":0.00848,"85":0.00424,"89":0.00424,"91":0.01272,"92":0.00848,"93":0.00424,"94":0.01696,"95":0.00424,"96":0.01696,"97":0.11872,"98":0.06784,"99":0.77168,"100":5.77488,"101":0.12296,_:"13 14 15 79 80 81 83 86 87 88 90"},E:{"4":0,"12":0.01696,"13":0.05936,"14":0.37736,"15":0.11448,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0848,"11.1":0.03392,"12.1":0.05512,"13.1":0.3816,"14.1":1.17024,"15.1":0.28408,"15.2-15.3":0.3392,"15.4":2.02248},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.105,"10.0-10.2":0.00284,"10.3":0.03689,"11.0-11.2":0.07662,"11.3-11.4":0.02838,"12.0-12.1":0.00851,"12.2-12.5":0.30082,"13.0-13.1":0.01419,"13.2":0.00851,"13.3":0.06811,"13.4-13.7":0.17311,"14.0-14.4":0.63853,"14.5-14.8":3.01103,"15.0-15.1":1.3849,"15.2-15.3":9.9838,"15.4":12.51522},P:{"4":0.23888,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.04154,"8.2":0.01011,"9.2":0.01034,"10.1":0.03034,"11.1-11.2":0.0727,"12.0":0.01053,"13.0":0.16618,"14.0":0.08309,"15.0":0.05193,"16.0":2.6692},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.01152},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20352,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.01152},H:{"0":0.10361},L:{"0":26.85016},S:{"2.5":0},R:{_:"0"},M:{"0":0.24768},Q:{"10.4":0}}; +module.exports={C:{"38":0.00423,"43":0.01269,"44":0.02537,"45":0.00846,"49":0.00423,"52":0.03383,"73":0.04229,"78":0.01692,"84":0.00846,"88":0.00846,"90":0.1015,"91":0.01692,"95":0.00423,"97":0.00423,"98":0.00846,"99":0.41444,"100":1.52667,"101":0.02115,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 92 93 94 96 102 103 3.5 3.6"},D:{"25":0.00423,"47":0.00423,"48":0.07189,"49":0.10573,"53":0.00846,"58":0.01692,"65":0.01269,"67":0.00423,"73":0.01269,"75":0.00423,"76":0.01269,"77":0.00423,"79":0.07612,"80":0.00423,"81":0.00846,"83":0.00423,"84":0.0296,"85":0.00846,"86":0.02537,"87":0.12264,"88":0.01269,"89":0.03383,"90":0.00846,"91":0.02115,"92":0.02115,"93":0.04652,"94":0.02537,"95":0.01269,"96":0.04229,"97":0.1015,"98":0.12687,"99":0.20299,"100":5.07057,"101":16.28165,"102":1.44209,"103":0.00846,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 50 51 52 54 55 56 57 59 60 61 62 63 64 66 68 69 70 71 72 74 78 104"},F:{"79":0.00423,"85":0.44827,"86":0.4229,"87":0.02537,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00423,"17":0.01269,"18":0.02537,"85":0.00423,"91":0.00423,"92":0.00846,"93":0.00846,"94":0.01692,"95":0.00846,"96":0.01269,"97":0.05075,"98":0.01692,"99":0.1311,"100":0.36792,"101":6.19971,_:"13 14 15 16 79 80 81 83 84 86 87 88 89 90"},E:{"4":0,"9":0.00846,"12":0.01269,"13":0.04229,"14":0.31718,"15":0.10995,_:"0 5 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05921,"11.1":0.0296,"12.1":0.05075,"13.1":0.35524,"14.1":0.8162,"15.1":0.1607,"15.2-15.3":0.2326,"15.4":2.97722,"15.5":0.38061},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.00562,"9.3":0.09555,"10.0-10.2":0,"10.3":0.02529,"11.0-11.2":0.01124,"11.3-11.4":0.0281,"12.0-12.1":0.01405,"12.2-12.5":0.27259,"13.0-13.1":0.01405,"13.2":0.00843,"13.3":0.05339,"13.4-13.7":0.15175,"14.0-14.4":0.55922,"14.5-14.8":2.15259,"15.0-15.1":1.03976,"15.2-15.3":2.28466,"15.4":21.37693},P:{"4":0.2305,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.04191,"8.2":0.01022,"9.2":0.10137,"10.1":0.03041,"11.1-11.2":0.05239,"12.0":0.06082,"13.0":0.14668,"14.0":0.08382,"15.0":0.05239,"16.0":0.95345},I:{"0":0,"3":0,"4":0.00162,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00162,"4.4":0,"4.4.3-4.4.4":0.01407},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00443,"11":0.18588,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.28855},Q:{"10.4":0},O:{"0":0.01731},H:{"0":0.08742},L:{"0":27.17313},S:{"2.5":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 0039eb7993573d..74bc776560739a 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:{"52":0.0203,"78":0.0029,"79":0.0058,"87":0.0029,"91":0.0145,"93":0.0029,"94":0.0029,"95":0.0058,"96":0.0058,"97":0.0058,"98":0.2784,"99":0.7772,"100":0.0058,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 88 89 90 92 101 3.5 3.6"},D:{"35":0.0638,"38":0.0348,"43":0.0058,"49":0.029,"60":0.0058,"61":0.0029,"63":0.0087,"64":0.0058,"67":0.0029,"69":0.0058,"71":0.0087,"72":0.0087,"73":0.0058,"74":0.0087,"75":0.0029,"76":0.0029,"77":0.2291,"78":0.0174,"79":0.087,"80":0.0145,"81":0.0174,"83":0.0174,"84":0.0232,"85":0.0319,"86":0.0464,"87":0.0609,"88":0.0116,"89":0.2059,"90":0.0174,"91":0.0203,"92":0.0406,"93":0.0232,"94":0.0174,"95":0.0232,"96":0.0957,"97":0.1363,"98":0.2117,"99":3.4249,"100":17.9713,"101":0.2494,"102":0.0116,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 62 65 66 68 70 103 104"},F:{"28":0.0029,"75":0.0087,"77":0.0058,"84":0.1566,"85":0.6496,"86":0.0145,_:"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 76 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.0058,"15":0.0029,"16":0.0029,"18":0.0406,"84":0.0087,"89":0.0058,"90":0.0029,"92":0.0116,"93":0.0029,"94":0.0029,"96":0.0087,"97":0.0232,"98":0.0116,"99":0.1972,"100":1.508,"101":0.0145,_:"12 14 17 79 80 81 83 85 86 87 88 91 95"},E:{"4":0,"13":0.0058,"14":0.058,"15":0.0261,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.0029,"12.1":0.0058,"13.1":0.0435,"14.1":0.0957,"15.1":0.0232,"15.2-15.3":0.0609,"15.4":0.2262},G:{"8":0,"3.2":0.0055,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02017,"6.0-6.1":0,"7.0-7.1":0.0376,"8.1-8.4":0,"9.0-9.2":0.00275,"9.3":0.03209,"10.0-10.2":0.00275,"10.3":0.01192,"11.0-11.2":0.00917,"11.3-11.4":0.01375,"12.0-12.1":0.01467,"12.2-12.5":0.2595,"13.0-13.1":0.01559,"13.2":0.00458,"13.3":0.03485,"13.4-13.7":0.08895,"14.0-14.4":0.36679,"14.5-14.8":1.19482,"15.0-15.1":0.38788,"15.2-15.3":3.0682,"15.4":3.59455},P:{"4":0.10231,"5.0-5.4":0.01047,"6.2-6.4":0.01047,"7.2-7.4":0.12278,"8.2":0.01122,"9.2":0.03069,"10.1":0.01054,"11.1-11.2":0.20463,"12.0":0.07162,"13.0":0.27624,"14.0":0.22509,"15.0":0.1637,"16.0":2.79314},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.00952,"4.4":0,"4.4.3-4.4.4":0.138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0551,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.0781},H:{"0":0.44364},L:{"0":57.854},S:{"2.5":0},R:{_:"0"},M:{"0":0.1491},Q:{"10.4":0}}; +module.exports={C:{"52":0.01892,"78":0.01577,"83":0.00631,"88":0.00315,"91":0.00946,"95":0.00315,"98":0.01892,"99":0.17657,"100":1.12247,"101":0.00946,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 96 97 102 103 3.5 3.6"},D:{"22":0.00631,"38":0.02207,"43":0.00631,"49":0.02207,"53":0.00315,"56":0.00315,"58":0.00946,"60":0.00631,"63":0.00946,"69":0.00631,"70":0.00315,"71":0.00631,"72":0.00946,"73":0.00315,"74":0.00631,"76":0.00631,"77":0.29323,"78":0.01261,"79":0.06621,"80":0.00946,"81":0.01892,"83":0.01892,"84":0.01577,"85":0.00631,"86":0.05045,"87":0.0473,"88":0.01261,"89":0.16711,"90":0.01261,"91":0.02207,"92":0.01577,"93":0.01577,"94":0.01577,"95":0.02522,"96":0.05991,"97":0.08828,"98":0.11666,"99":0.29323,"100":3.23183,"101":18.62162,"102":2.06837,"103":0.01577,_:"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 44 45 46 47 48 50 51 52 54 55 57 59 61 62 64 65 66 67 68 75 104"},F:{"28":0.00631,"48":0.00631,"70":0.00946,"84":0.00315,"85":0.43196,"86":0.44457,"87":0.03784,_:"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 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02207,"85":0.00315,"89":0.00631,"92":0.00631,"97":0.01261,"98":0.00631,"99":0.02207,"100":0.08198,"101":1.72154,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 90 91 93 94 95 96"},E:{"4":0,"14":0.05045,"15":0.03784,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.00315,"12.1":0.00631,"13.1":0.02838,"14.1":0.11036,"15.1":0.06306,"15.2-15.3":0.0473,"15.4":0.29638,"15.5":0.05045},G:{"8":0,"3.2":0.00804,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.001,"7.0-7.1":0.02311,"8.1-8.4":0.00201,"9.0-9.2":0,"9.3":0.03818,"10.0-10.2":0.00201,"10.3":0.01607,"11.0-11.2":0.00703,"11.3-11.4":0.01005,"12.0-12.1":0.01708,"12.2-12.5":0.24814,"13.0-13.1":0.01206,"13.2":0.00402,"13.3":0.03215,"13.4-13.7":0.09544,"14.0-14.4":0.35061,"14.5-14.8":1.00662,"15.0-15.1":0.27325,"15.2-15.3":0.80771,"15.4":7.08853},P:{"4":0.07249,"5.0-5.4":0.01045,"6.2-6.4":0.01045,"7.2-7.4":0.10356,"8.2":0.01022,"9.2":0.02071,"10.1":0.01017,"11.1-11.2":0.13462,"12.0":0.03107,"13.0":0.20711,"14.0":0.16569,"15.0":0.11391,"16.0":0.96308},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00231,"4.2-4.3":0.00578,"4.4":0,"4.4.3-4.4.4":0.08091},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07883,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.11638},Q:{"10.4":0},O:{"0":0.12323},H:{"0":0.51851},L:{"0":54.99848},S:{"2.5":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 ab56d569e2c7a2..05547212303dec 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:{"48":0.00482,"49":0.05306,"52":0.08201,"68":0.00965,"78":0.03859,"80":0.00482,"82":0.00482,"84":0.00965,"87":0.00965,"88":0.00482,"89":0.00482,"91":0.05306,"93":0.00482,"94":0.01447,"95":0.01447,"96":0.00965,"97":0.08683,"98":0.69948,"99":2.09844,"100":0.01447,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 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 81 83 85 86 90 92 101 3.5 3.6"},D:{"23":0.03859,"38":0.00482,"43":0.53546,"49":0.09166,"53":0.00965,"57":0.00482,"63":0.0193,"65":0.00965,"67":0.00965,"68":0.01447,"69":0.02894,"70":0.00965,"71":0.0193,"75":0.00482,"76":0.01447,"77":0.0193,"78":0.00965,"79":0.04824,"80":0.02412,"81":0.01447,"83":0.00965,"84":0.03859,"85":0.03377,"86":0.02894,"87":0.17849,"88":0.0193,"89":0.08683,"90":0.04824,"91":0.11578,"92":0.03377,"93":0.03859,"94":0.02894,"95":0.03377,"96":0.09166,"97":0.13025,"98":0.26532,"99":5.04108,"100":24.58793,"101":0.36662,"102":0.00965,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 58 59 60 61 62 64 66 72 73 74 103 104"},F:{"84":0.39557,"85":1.31213,"86":0.01447,_:"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 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.00482,"18":0.02412,"85":0.00482,"89":0.00965,"90":0.00965,"91":0.00482,"92":0.00965,"93":0.00482,"94":0.00965,"96":0.01447,"97":0.02412,"98":0.03859,"99":0.69466,"100":4.74682,"101":0.08201,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 95"},E:{"4":0,"12":0.00482,"13":0.02894,"14":0.18814,"15":0.09648,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00965,"11.1":0.02894,"12.1":0.04824,"13.1":0.23638,"14.1":0.49205,"15.1":0.14954,"15.2-15.3":0.20261,"15.4":0.95033},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00263,"6.0-6.1":0.00175,"7.0-7.1":0.00351,"8.1-8.4":0.00351,"9.0-9.2":0.00088,"9.3":0.07014,"10.0-10.2":0.00088,"10.3":0.08855,"11.0-11.2":0.02104,"11.3-11.4":0.00964,"12.0-12.1":0.00701,"12.2-12.5":0.35245,"13.0-13.1":0.0149,"13.2":0.00438,"13.3":0.02367,"13.4-13.7":0.09732,"14.0-14.4":0.23847,"14.5-14.8":0.94337,"15.0-15.1":0.37437,"15.2-15.3":3.02474,"15.4":3.47976},P:{"4":0.03159,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.0974,"8.2":0.01011,"9.2":0.01034,"10.1":0.03034,"11.1-11.2":0.02106,"12.0":0.01053,"13.0":0.07371,"14.0":0.05265,"15.0":0.03159,"16.0":1.62154},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.01124,"4.4":0,"4.4.3-4.4.4":0.08032},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34733,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.22774},H:{"0":0.24011},L:{"0":28.2293},S:{"2.5":0},R:{_:"0"},M:{"0":0.24845},Q:{"10.4":0}}; +module.exports={C:{"49":0.04075,"52":0.04657,"78":0.03493,"87":0.01164,"88":0.01746,"91":0.05239,"94":0.00582,"95":0.01164,"96":0.00582,"97":0.02911,"98":0.02328,"99":0.50061,"100":2.51467,"101":0.01746,"102":0.00582,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 93 103 3.5 3.6"},D:{"23":0.03493,"43":0.2503,"49":0.08732,"63":0.02911,"65":0.00582,"67":0.01164,"68":0.01164,"69":0.03493,"70":0.00582,"71":0.02328,"76":0.01746,"77":0.01746,"78":0.00582,"79":0.04657,"80":0.01746,"81":0.01746,"83":0.00582,"84":0.05239,"85":0.02911,"86":0.02328,"87":0.16299,"88":0.01746,"89":0.08149,"90":0.02911,"91":0.09314,"92":0.02328,"93":0.01746,"94":0.02911,"95":0.04075,"96":0.08732,"97":0.06403,"98":0.15135,"99":0.28523,"100":5.85593,"101":29.07007,"102":2.57288,"103":0.00582,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 72 73 74 75 104"},F:{"71":0.00582,"84":0.01164,"85":1.84526,"86":1.94421,"87":0.03493,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01164,"89":0.02328,"90":0.00582,"92":0.01164,"96":0.01746,"97":0.01164,"98":0.01746,"99":0.04075,"100":0.31433,"101":5.9607,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 91 93 94 95"},E:{"4":0,"13":0.02328,"14":0.17463,"15":0.09314,_:"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.02328,"12.1":0.04075,"13.1":0.20956,"14.1":0.46568,"15.1":0.1106,"15.2-15.3":0.15717,"15.4":1.64734,"15.5":0.19209},G:{"8":0.00382,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00191,"6.0-6.1":0.00382,"7.0-7.1":0.00477,"8.1-8.4":0.00477,"9.0-9.2":0,"9.3":0.0544,"10.0-10.2":0.00095,"10.3":0.05344,"11.0-11.2":0.0105,"11.3-11.4":0.00763,"12.0-12.1":0.00477,"12.2-12.5":0.29202,"13.0-13.1":0.01336,"13.2":0.00382,"13.3":0.02672,"13.4-13.7":0.07062,"14.0-14.4":0.23572,"14.5-14.8":0.78826,"15.0-15.1":0.26721,"15.2-15.3":0.68615,"15.4":7.00182},P:{"4":0.03156,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.07572,"8.2":0.01022,"9.2":0.10137,"10.1":0.03041,"11.1-11.2":0.02104,"12.0":0.06082,"13.0":0.04208,"14.0":0.04208,"15.0":0.02104,"16.0":0.55763},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00958,"4.4":0,"4.4.3-4.4.4":0.06982},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.25612,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.28417},Q:{"10.4":0},O:{"0":0.14209},H:{"0":0.20969},L:{"0":27.47891},S:{"2.5":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 7c1bf9103272ed..f322dc34c03d35 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:{"72":0.00477,"89":0.08101,"97":0.06671,"98":0.42409,"99":0.71952,"100":0.00477,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 101 3.5 3.6"},D:{"37":0.00477,"43":0.06671,"49":0.20966,"63":0.00477,"73":0.00477,"75":0.15725,"76":1.44856,"79":0.3002,"81":0.00953,"83":0.00953,"86":0.15725,"87":0.06195,"90":0.10007,"92":0.00953,"93":0.02383,"94":0.03812,"95":0.11436,"96":0.08101,"97":0.44315,"98":0.22396,"99":4.55058,"100":22.32879,"101":0.19537,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 74 77 78 80 84 85 88 89 91 102 103 104"},F:{"84":0.00477,"85":0.08101,_:"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 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"80":0.04289,"92":0.04289,"98":0.00477,"99":0.39073,"100":2.52069,"101":0.03336,_:"12 13 14 15 16 17 18 79 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97"},E:{"4":0,"11":0.06195,"13":0.00477,"14":0.71952,"15":0.30496,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01906,"11.1":0.00477,"12.1":0.06195,"13.1":0.13342,"14.1":1.80594,"15.1":0.08577,"15.2-15.3":0.20966,"15.4":2.41586},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.03613,"10.0-10.2":0,"10.3":0.33355,"11.0-11.2":0.00556,"11.3-11.4":0.01946,"12.0-12.1":0.02085,"12.2-12.5":0.52255,"13.0-13.1":0.00973,"13.2":0,"13.3":0.10701,"13.4-13.7":0.12925,"14.0-14.4":0.3669,"14.5-14.8":2.53078,"15.0-15.1":0.33355,"15.2-15.3":3.95391,"15.4":5.52713},P:{"4":0.19887,"5.0-5.4":0.01047,"6.2-6.4":0.01047,"7.2-7.4":0.25782,"8.2":0.01122,"9.2":0.02093,"10.1":0.01054,"11.1-11.2":0.03094,"12.0":0.02093,"13.0":0.01031,"14.0":0.0628,"15.0":0.03094,"16.0":3.06292},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.11519},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04289,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.61261},H:{"0":0.02974},L:{"0":39.16621},S:{"2.5":0},R:{_:"0"},M:{"0":0.11519},Q:{"10.4":0}}; +module.exports={C:{"88":0.02689,"91":0.01792,"97":0.03585,"98":0.02689,"99":0.48843,"100":0.19716,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 101 102 103 3.5 3.6"},D:{"48":0.04033,"75":0.0717,"76":0.17028,"79":0.02689,"81":0.01344,"83":0.00896,"85":0.02241,"86":1.62212,"90":0.00896,"93":0.00896,"94":0.05377,"95":0.01792,"96":0.40777,"98":0.0717,"99":0.0717,"100":3.79093,"101":23.68657,"102":1.56387,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 77 78 80 84 87 88 89 91 92 97 103 104"},F:{"85":0.01344,"86":0.01792,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"89":0.03137,"99":0.03585,"100":0.15684,"101":2.01645,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98"},E:{"4":0,"11":0.01344,"14":0.08514,"15":0.00896,_:"0 5 6 7 8 9 10 12 13 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.00896,"12.1":0.23749,"13.1":0.22405,"14.1":0.83795,"15.1":0.02241,"15.2-15.3":0.11203,"15.4":2.41526,"15.5":0.0941},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.01991,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.00332,"12.0-12.1":0,"12.2-12.5":0.20405,"13.0-13.1":0,"13.2":0,"13.3":0.26875,"13.4-13.7":0.03484,"14.0-14.4":0.33677,"14.5-14.8":3.16036,"15.0-15.1":0.15263,"15.2-15.3":1.08497,"15.4":11.32752},P:{"4":0.18805,"5.0-5.4":0.01045,"6.2-6.4":0.01045,"7.2-7.4":0.09153,"8.2":0.01022,"9.2":0.01045,"10.1":0.01017,"11.1-11.2":0.02034,"12.0":0.02089,"13.0":0.04068,"14.0":0.04068,"15.0":0.05224,"16.0":2.22727},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.04968},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.52428,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.20424},Q:{"10.4":0},O:{"0":0.0828},H:{"0":0.66893},L:{"0":37.19096},S:{"2.5":0}}; 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 4a07fff2a011db..861087ab3fbf73 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:{"24":0.00876,"30":0.01095,"35":0.09855,"38":0.00657,"43":0.00438,"47":0.00438,"52":0.19272,"60":0.00438,"61":0.00657,"64":0.00657,"66":0.00438,"69":0.00657,"72":0.00657,"73":0.04161,"78":0.00657,"86":0.00438,"88":0.02409,"89":0.00438,"90":0.00438,"91":0.00876,"92":0.00219,"93":0.00219,"94":0.00438,"95":0.00438,"96":0.01314,"97":0.00876,"98":0.28032,"99":0.83001,"100":0.00876,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 31 32 33 34 36 37 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 62 63 65 67 68 70 71 74 75 76 77 79 80 81 82 83 84 85 87 101 3.5 3.6"},D:{"11":0.00438,"27":0.00438,"31":0.01095,"38":0.00876,"41":0.00219,"47":0.03504,"49":0.02847,"53":0.00438,"54":0.00219,"63":0.00438,"64":0.08103,"65":0.02628,"67":0.00219,"68":0.00219,"69":0.01533,"70":0.00219,"71":0.00657,"73":0.00876,"74":0.00438,"75":0.00876,"76":0.00438,"77":0.00657,"78":0.00438,"79":0.07665,"80":0.00657,"81":0.00876,"83":0.01314,"84":0.00876,"85":0.01095,"86":0.01533,"87":0.7227,"88":0.01095,"89":0.06132,"90":0.01314,"91":0.17082,"92":0.03942,"93":0.01095,"94":0.01752,"95":0.1533,"96":0.11169,"97":0.08979,"98":0.35916,"99":2.31921,"100":11.74278,"101":0.17082,"102":0.00438,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 32 33 34 35 36 37 39 40 42 43 44 45 46 48 50 51 52 55 56 57 58 59 60 61 62 66 72 103 104"},F:{"36":0.00438,"60":0.00438,"67":0.00219,"84":0.13797,"85":0.48618,"86":0.00657,_:"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 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00438,"14":0.00438,"16":0.04161,"17":0.00219,"18":0.01095,"80":0.00219,"84":0.00657,"91":0.00438,"92":0.01095,"95":0.00438,"96":0.00219,"97":0.00657,"98":0.01095,"99":0.18396,"100":1.1607,"101":0.01533,_:"12 15 79 81 83 85 86 87 88 89 90 93 94"},E:{"4":0,"13":0.00438,"14":0.02409,"15":0.01533,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.02847,"13.1":0.03723,"14.1":0.07884,"15.1":0.03285,"15.2-15.3":0.0219,"15.4":0.13797},G:{"8":0,"3.2":0.00239,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00382,"6.0-6.1":0,"7.0-7.1":0.02769,"8.1-8.4":0,"9.0-9.2":0.00382,"9.3":0.00955,"10.0-10.2":0.00286,"10.3":0.02148,"11.0-11.2":0.00668,"11.3-11.4":0.01003,"12.0-12.1":0.00477,"12.2-12.5":0.29266,"13.0-13.1":0.0043,"13.2":0.00191,"13.3":0.0105,"13.4-13.7":0.0549,"14.0-14.4":0.15421,"14.5-14.8":0.65408,"15.0-15.1":0.14896,"15.2-15.3":1.59939,"15.4":1.7579},P:{"4":0.42479,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.66753,"8.2":0.01011,"9.2":0.11126,"10.1":0.03034,"11.1-11.2":0.20228,"12.0":0.0708,"13.0":0.20228,"14.0":0.53605,"15.0":0.20228,"16.0":2.79149},I:{"0":0,"3":0,"4":0.00548,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00366,"4.2-4.3":0.00548,"4.4":0,"4.4.3-4.4.4":0.07129},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07008,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.04686},H:{"0":0.17746},L:{"0":68.29857},S:{"2.5":0},R:{_:"0"},M:{"0":0.0781},Q:{"10.4":0}}; +module.exports={C:{"30":0.0066,"35":0.07477,"38":0.0022,"43":0.0022,"44":0.0022,"47":0.0044,"52":0.11875,"61":0.0022,"64":0.0044,"68":0.01539,"69":0.0066,"72":0.0044,"73":0.03518,"78":0.0066,"86":0.0044,"88":0.01979,"89":0.0022,"91":0.0088,"94":0.011,"95":0.0022,"96":0.0044,"97":0.0088,"98":0.011,"99":0.2111,"100":0.8774,"101":0.011,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 36 37 39 40 41 42 45 46 48 49 50 51 53 54 55 56 57 58 59 60 62 63 65 66 67 70 71 74 75 76 77 79 80 81 82 83 84 85 87 90 92 93 102 103 3.5 3.6"},D:{"27":0.0066,"31":0.0022,"38":0.0066,"47":0.01539,"49":0.02859,"52":0.0044,"55":0.0022,"58":0.0088,"60":0.0022,"62":0.0044,"63":0.0022,"64":0.02419,"65":0.03079,"68":0.0066,"69":0.0088,"71":0.0044,"73":0.0066,"74":0.0066,"75":0.0022,"76":0.0066,"77":0.0066,"78":0.0044,"79":0.06597,"80":0.0088,"81":0.0088,"83":0.01319,"84":0.0044,"85":0.0088,"86":0.02859,"87":0.8752,"88":0.0066,"89":0.03079,"90":0.0088,"91":0.08576,"92":0.03518,"93":0.01319,"94":0.01759,"95":0.01759,"96":0.05278,"97":0.09016,"98":0.23749,"99":0.10555,"100":2.46948,"101":10.92243,"102":1.18086,"103":0.0088,_:"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 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 53 54 56 57 59 61 66 67 70 72 104"},F:{"36":0.0044,"78":0.0066,"85":0.47279,"86":0.36064,"87":0.01319,_:"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 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:{"16":0.03079,"17":0.0044,"18":0.0088,"91":0.02639,"92":0.0066,"94":0.0022,"96":0.0022,"97":0.0044,"98":0.0088,"99":0.011,"100":0.05937,"101":1.35239,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 93 95"},E:{"4":0,"14":0.01759,"15":0.0066,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.01759,"13.1":0.02199,"14.1":0.05717,"15.1":0.01539,"15.2-15.3":0.01539,"15.4":0.36064,"15.5":0.03738},G:{"8":0,"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.01885,"8.1-8.4":0,"9.0-9.2":0.00419,"9.3":0.00681,"10.0-10.2":0.00105,"10.3":0.01362,"11.0-11.2":0.00681,"11.3-11.4":0.00733,"12.0-12.1":0.00471,"12.2-12.5":0.26081,"13.0-13.1":0.00367,"13.2":0.00314,"13.3":0.01257,"13.4-13.7":0.04556,"14.0-14.4":0.15135,"14.5-14.8":0.54518,"15.0-15.1":0.11364,"15.2-15.3":0.29066,"15.4":3.74085},P:{"4":0.4156,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.65887,"8.2":0.01022,"9.2":0.10137,"10.1":0.03041,"11.1-11.2":0.16218,"12.0":0.06082,"13.0":0.18246,"14.0":0.53724,"15.0":0.17232,"16.0":1.30761},I:{"0":0,"3":0,"4":0.00382,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00382,"4.2-4.3":0.00382,"4.4":0,"4.4.3-4.4.4":0.08215},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0022,"11":0.05937,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.06241},Q:{"10.4":0},O:{"0":0.0312},H:{"0":0.16248},L:{"0":68.05846},S:{"2.5":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 8b1cb4102dc486..2798bf5d6e9692 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:{"38":0.08382,"78":0.00508,"89":0.00508,"91":0.02286,"92":0.00254,"97":0.00762,"98":0.12446,"99":0.42926,"100":0.00254,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 93 94 95 96 101 3.5 3.6"},D:{"38":0.00762,"41":0.00508,"49":0.01524,"65":0.00254,"67":0.01016,"68":0.00762,"69":0.00508,"71":0.01524,"72":0.00254,"73":0.00254,"74":0.00762,"75":0.0127,"76":0.01016,"77":0.00508,"78":0.00762,"79":0.06858,"80":0.00762,"81":0.00254,"83":0.0127,"84":0.01016,"85":0.00762,"86":0.01778,"87":0.04826,"88":0.01524,"89":0.03048,"90":0.00762,"91":0.0254,"92":0.04826,"93":0.02032,"94":0.01778,"95":0.01778,"96":0.04826,"97":0.0635,"98":0.18034,"99":2.60858,"100":13.71092,"101":0.18288,"102":0.00762,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 70 103 104"},F:{"28":0.02032,"40":0.01524,"46":0.00762,"84":0.08382,"85":0.31242,"86":0.00762,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00508,"18":0.01524,"84":0.00254,"85":0.00254,"89":0.00254,"91":0.00508,"92":0.00508,"94":0.00762,"95":0.00762,"96":0.01778,"97":0.02286,"98":0.05842,"99":0.36068,"100":1.9812,"101":0.02794,_:"12 13 14 15 17 79 80 81 83 86 87 88 90 93"},E:{"4":0,"13":0.01778,"14":0.09398,"15":0.05334,_:"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.00762,"12.1":0.03048,"13.1":0.09144,"14.1":0.2667,"15.1":0.11176,"15.2-15.3":0.11684,"15.4":0.58674},G:{"8":0.00278,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00556,"6.0-6.1":0,"7.0-7.1":0.01806,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04584,"10.0-10.2":0,"10.3":0.03334,"11.0-11.2":0.02362,"11.3-11.4":0.01111,"12.0-12.1":0.00695,"12.2-12.5":0.28616,"13.0-13.1":0.00833,"13.2":0.00417,"13.3":0.03473,"13.4-13.7":0.11391,"14.0-14.4":0.35701,"14.5-14.8":1.23356,"15.0-15.1":0.6529,"15.2-15.3":4.84532,"15.4":6.19973},P:{"4":0.05158,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.05158,"8.2":0.01011,"9.2":0.01032,"10.1":0.03034,"11.1-11.2":0.05158,"12.0":0.03095,"13.0":0.04126,"14.0":0.09284,"15.0":0.04126,"16.0":2.62011},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00829,"4.4":0,"4.4.3-4.4.4":0.02901},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10668,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":4.46108},H:{"0":1.13002},L:{"0":53.63568},S:{"2.5":0},R:{_:"0"},M:{"0":0.08952},Q:{"10.4":0}}; +module.exports={C:{"34":0.00859,"38":0.05438,"47":0.00572,"78":0.00572,"91":0.01431,"97":0.00286,"98":0.00572,"99":0.10589,"100":0.49799,"101":0.00859,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 102 103 3.5 3.6"},D:{"38":0.01431,"41":0.00572,"49":0.01717,"65":0.01431,"67":0.00859,"68":0.00572,"69":0.00572,"71":0.01431,"73":0.00286,"74":0.00572,"75":0.01717,"76":0.01431,"78":0.00572,"79":0.0601,"80":0.00859,"81":0.00286,"83":0.01145,"84":0.02576,"85":0.00859,"86":0.02576,"87":0.06869,"88":0.01145,"89":0.03148,"90":0.00859,"91":0.0229,"92":0.03148,"93":0.03434,"94":0.01145,"95":0.01431,"96":0.04293,"97":0.05152,"98":0.06583,"99":0.18889,"100":2.84197,"101":14.96254,"102":1.50541,"103":0.00572,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 70 72 77 104"},F:{"28":0.01431,"40":0.01145,"46":0.00859,"85":0.2862,"86":0.28906,"87":0.02003,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 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:{"18":0.01431,"84":0.00286,"89":0.00572,"92":0.00572,"94":0.00572,"95":0.00572,"96":0.01431,"97":0.02003,"98":0.01431,"99":0.05724,"100":0.17458,"101":2.39263,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90 91 93"},E:{"4":0,"13":0.02003,"14":0.1202,"15":0.04579,_:"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.01145,"12.1":0.04007,"13.1":0.07441,"14.1":0.38923,"15.1":0.07727,"15.2-15.3":0.08586,"15.4":1.1677,"15.5":0.12307},G:{"8":0.00264,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00925,"6.0-6.1":0,"7.0-7.1":0.01982,"8.1-8.4":0,"9.0-9.2":0.00396,"9.3":0.04624,"10.0-10.2":0,"10.3":0.04227,"11.0-11.2":0.01585,"11.3-11.4":0.00793,"12.0-12.1":0.00528,"12.2-12.5":0.2695,"13.0-13.1":0.00661,"13.2":0.00528,"13.3":0.03171,"13.4-13.7":0.11097,"14.0-14.4":0.37782,"14.5-14.8":0.97362,"15.0-15.1":0.41085,"15.2-15.3":1.03307,"15.4":9.83264},P:{"4":0.07247,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.05176,"8.2":0.01022,"9.2":0.10137,"10.1":0.03041,"11.1-11.2":0.05176,"12.0":0.02071,"13.0":0.03106,"14.0":0.06212,"15.0":0.03106,"16.0":0.80752},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00292,"4.4":0,"4.4.3-4.4.4":0.01849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09445,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.08566},Q:{"10.4":0},O:{"0":3.54759},H:{"0":1.02719},L:{"0":52.09717},S:{"2.5":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 d884499b7801b0..ab1db396a45dbe 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:{"11":0.00452,"49":0.00904,"51":0.01357,"52":0.03618,"53":0.01809,"54":0.01357,"55":0.01809,"56":0.02261,"57":0.01357,"58":0.00452,"60":0.02261,"61":0.00452,"68":0.01357,"78":0.12209,"80":0.00452,"82":0.00452,"84":0.01357,"85":0.01809,"88":0.00904,"89":0.09948,"91":0.16279,"93":0.00904,"94":0.01809,"95":0.01809,"96":0.02713,"97":0.0814,"98":1.43347,"99":4.16024,"100":0.00904,_:"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 50 59 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 81 83 86 87 90 92 101 3.5 3.6"},D:{"40":0.00904,"42":0.00452,"43":0.00452,"45":0.00452,"46":0.00904,"47":0.0407,"48":0.04974,"49":0.05426,"50":0.00452,"53":0.00904,"54":0.01357,"55":0.00452,"56":0.00452,"57":0.00904,"58":0.00904,"59":0.00452,"60":0.00452,"61":0.01357,"62":0.00904,"63":0.02261,"64":0.00904,"65":0.01357,"67":0.01809,"70":0.01357,"71":0.00904,"73":0.00452,"76":0.03165,"77":0.00452,"78":0.00904,"79":0.03165,"80":0.01357,"81":0.00904,"83":0.02261,"84":0.01357,"85":0.00904,"86":0.00904,"87":0.17184,"88":0.01357,"89":0.02261,"90":0.01357,"91":0.01357,"92":0.01809,"93":0.00452,"94":0.03618,"95":0.04522,"96":0.09496,"97":0.10853,"98":0.23062,"99":3.97936,"100":18.96527,"101":0.27584,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 44 51 52 66 68 69 72 74 75 102 103 104"},F:{"28":0.00452,"78":0.00452,"82":0.00452,"83":0.00452,"84":0.3075,"85":0.9858,"86":0.00904,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 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.00904,"16":0.02713,"17":0.04522,"18":0.03165,"83":0.00452,"84":0.00904,"89":0.00452,"90":0.01357,"92":0.02261,"95":0.00452,"96":0.01809,"97":0.05879,"98":0.06331,"99":0.81848,"100":4.77523,"101":0.05879,_:"13 14 15 79 80 81 85 86 87 88 91 93 94"},E:{"4":0,"11":0.00452,"13":0.04974,"14":0.19445,"15":0.14923,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00904,"11.1":0.04974,"12.1":0.07235,"13.1":0.4522,"14.1":0.72804,"15.1":0.16279,"15.2-15.3":0.32558,"15.4":1.12598},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.00263,"7.0-7.1":0.00921,"8.1-8.4":0,"9.0-9.2":0.00132,"9.3":0.07759,"10.0-10.2":0.00789,"10.3":0.10258,"11.0-11.2":0.01578,"11.3-11.4":0.01184,"12.0-12.1":0.02499,"12.2-12.5":0.47476,"13.0-13.1":0.01973,"13.2":0.02762,"13.3":0.06707,"13.4-13.7":0.13283,"14.0-14.4":0.39848,"14.5-14.8":1.45846,"15.0-15.1":0.56418,"15.2-15.3":4.65682,"15.4":5.09344},P:{"4":0.02091,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.06273,"8.2":0.01011,"9.2":0.01045,"10.1":0.03034,"11.1-11.2":0.10455,"12.0":0.01045,"13.0":0.10455,"14.0":0.16728,"15.0":0.06273,"16.0":2.77054},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00169,"4.2-4.3":0.00067,"4.4":0,"4.4.3-4.4.4":0.01955},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00452,"9":0.00452,"11":0.10401,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.59162},H:{"0":0.18152},L:{"0":38.70243},S:{"2.5":0},R:{_:"0"},M:{"0":0.4492},Q:{"10.4":0}}; +module.exports={C:{"11":0.00823,"32":0.01647,"48":0.00412,"49":0.00412,"51":0.00412,"52":0.02059,"53":0.00412,"54":0.00412,"55":0.02882,"56":0.02059,"57":0.00412,"60":0.02882,"68":0.01647,"70":0.01235,"72":0.01647,"78":0.13998,"82":0.02882,"85":0.01235,"88":0.00412,"89":0.23467,"91":0.15645,"93":0.00823,"95":0.00823,"96":0.00823,"97":0.0247,"98":0.03705,"99":1.01278,"100":5.1092,"101":0.02059,_:"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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 58 59 61 62 63 64 65 66 67 69 71 73 74 75 76 77 79 80 81 83 84 86 87 90 92 94 102 103 3.5 3.6"},D:{"47":0.05352,"49":0.03705,"54":0.01647,"57":0.00412,"58":0.00823,"61":0.01235,"63":0.01235,"64":0.00412,"65":0.01235,"67":0.01235,"68":0.00412,"70":0.01235,"71":0.01235,"72":0.00823,"75":0.00412,"76":0.01235,"78":0.00412,"79":0.06587,"80":0.02882,"81":0.00823,"83":0.00823,"84":0.0247,"85":0.03294,"86":0.0247,"87":0.12763,"88":0.00823,"89":0.0247,"90":0.01647,"91":0.01647,"92":0.07822,"93":0.00412,"94":0.00412,"95":0.0247,"96":0.07822,"97":0.04117,"98":0.06176,"99":0.37465,"100":4.0923,"101":14.70181,"102":1.50271,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 55 56 59 60 62 66 69 73 74 77 103 104"},F:{"28":0.00412,"63":0.00412,"78":0.00412,"85":0.86869,"86":0.40347,"87":0.03705,_:"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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 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:{"14":0.00412,"16":0.00823,"17":0.01235,"18":0.02882,"84":0.00823,"86":0.01235,"87":0.00412,"89":0.00412,"92":0.01235,"95":0.00823,"96":0.00823,"97":0.03705,"98":0.0247,"99":0.0494,"100":0.19762,"101":4.55752,_:"12 13 15 79 80 81 83 85 88 90 91 93 94"},E:{"4":0,"11":0.00823,"13":0.02882,"14":0.13998,"15":0.05352,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00823,"11.1":0.04117,"12.1":0.08646,"13.1":0.40758,"14.1":0.62578,"15.1":0.16468,"15.2-15.3":0.18938,"15.4":1.69209,"15.5":0.31289},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00309,"6.0-6.1":0,"7.0-7.1":0.00464,"8.1-8.4":0,"9.0-9.2":0.00155,"9.3":0.10815,"10.0-10.2":0.017,"10.3":0.0618,"11.0-11.2":0.00618,"11.3-11.4":0.02163,"12.0-12.1":0.02318,"12.2-12.5":0.40325,"13.0-13.1":0.02472,"13.2":0.00309,"13.3":0.04481,"13.4-13.7":0.15141,"14.0-14.4":0.45269,"14.5-14.8":1.22366,"15.0-15.1":0.49441,"15.2-15.3":1.01045,"15.4":11.39305},P:{"4":0.03107,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.08286,"8.2":0.01022,"9.2":0.01036,"10.1":0.03041,"11.1-11.2":0.09321,"12.0":0.01036,"13.0":0.08286,"14.0":0.11393,"15.0":0.04143,"16.0":1.07714},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00192,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02161},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06587,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.3118},Q:{"10.4":0},O:{"0":0.553},H:{"0":0.18937},L:{"0":40.57344},S:{"2.5":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 9198751bbc3d85..6f96af9c7b28bd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js @@ -1 +1 @@ -module.exports={C:{"52":0.15145,"56":0.00369,"65":0.00369,"66":0.00369,"68":0.00739,"72":0.00739,"78":0.01847,"79":0.00369,"80":0.00369,"81":0.00369,"82":0.00369,"84":0.00739,"88":0.00739,"89":0.00739,"90":0.00369,"91":0.0591,"92":0.00369,"93":0.00369,"94":0.00739,"95":0.02216,"96":0.01847,"97":0.03694,"98":0.79421,"99":2.75942,"100":0.02586,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 67 69 70 71 73 74 75 76 77 83 85 86 87 101 3.5 3.6"},D:{"38":0.00739,"39":0.00369,"49":0.11082,"51":0.03325,"53":0.00369,"58":0.00739,"60":0.43589,"61":0.01108,"64":0.00369,"66":0.0628,"67":0.00739,"69":0.16254,"70":0.01108,"71":0.01847,"72":0.00369,"73":0.00739,"74":0.00739,"75":0.01847,"76":0.01847,"77":0.00739,"78":0.01108,"79":0.0591,"80":0.01478,"81":0.02586,"83":0.02955,"84":0.02586,"85":0.03325,"86":0.03694,"87":0.07388,"88":0.02216,"89":0.02955,"90":0.02955,"91":0.04433,"92":0.04802,"93":0.03694,"94":0.02586,"95":0.02586,"96":0.09974,"97":0.11451,"98":0.19209,"99":4.25179,"100":19.79245,"101":0.29183,"102":0.00739,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 48 50 52 54 55 56 57 59 62 63 65 68 103 104"},F:{"36":0.00369,"40":0.00369,"78":0.00369,"82":0.00739,"83":0.00739,"84":0.40265,"85":1.48129,"86":0.02586,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 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.00369,"18":0.01478,"84":0.00369,"86":0.00369,"89":0.00369,"92":0.00739,"95":0.00739,"96":0.00739,"97":0.01847,"98":0.02216,"99":0.3103,"100":1.89872,"101":0.03325,_:"12 13 14 16 17 79 80 81 83 85 87 88 90 91 93 94"},E:{"4":0,"13":0.01478,"14":0.06649,"15":0.02586,_:"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.00739,"12.1":0.01478,"13.1":0.0628,"14.1":0.15145,"15.1":0.0628,"15.2-15.3":0.06649,"15.4":0.3066},G:{"8":0,"3.2":0.02152,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.08154,"6.0-6.1":0,"7.0-7.1":0.00793,"8.1-8.4":0.0034,"9.0-9.2":0,"9.3":0.02944,"10.0-10.2":0.00113,"10.3":0.31029,"11.0-11.2":0.01699,"11.3-11.4":0.01246,"12.0-12.1":0.01359,"12.2-12.5":0.25027,"13.0-13.1":0.01472,"13.2":0.00793,"13.3":0.04983,"13.4-13.7":0.12457,"14.0-14.4":0.40768,"14.5-14.8":1.3193,"15.0-15.1":0.51753,"15.2-15.3":3.84239,"15.4":4.28857},P:{"4":0.0928,"5.0-5.4":0.03034,"6.2-6.4":0.04084,"7.2-7.4":0.06273,"8.2":0.01011,"9.2":0.02062,"10.1":0.03034,"11.1-11.2":0.11342,"12.0":0.04124,"13.0":0.12373,"14.0":0.35056,"15.0":0.11342,"16.0":3.35098},I:{"0":0,"3":0,"4":0.006,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02399,"4.4":0,"4.4.3-4.4.4":0.15292},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00369,"11":0.22533,_:"6 7 8 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.05676},H:{"0":0.32244},L:{"0":44.29377},S:{"2.5":0},R:{_:"0"},M:{"0":0.23336},Q:{"10.4":0}}; +module.exports={C:{"52":0.13212,"68":0.00852,"78":0.01705,"79":0.00426,"80":0.00852,"81":0.00426,"84":0.00852,"88":0.00852,"89":0.00426,"91":0.05967,"92":0.00426,"94":0.00426,"95":0.01279,"96":0.01279,"97":0.02131,"98":0.02983,"99":1.00157,"100":5.77075,"101":0.02131,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 82 83 85 86 87 90 93 102 103 3.5 3.6"},D:{"38":0.00426,"39":0.00426,"49":0.09803,"58":0.00852,"60":0.3921,"61":0.00426,"62":0.06393,"64":0.00426,"66":0.02983,"67":0.02131,"69":0.10655,"70":0.00852,"71":0.01279,"73":0.00426,"74":0.00426,"75":0.01705,"76":0.01705,"77":0.00852,"78":0.00852,"79":0.03836,"80":0.01279,"81":0.02131,"83":0.01279,"84":0.04262,"85":0.02983,"86":0.04688,"87":0.07672,"88":0.02131,"89":0.02983,"90":0.02131,"91":0.03836,"92":0.03836,"93":0.01705,"94":0.01705,"95":0.02131,"96":0.05541,"97":0.06393,"98":0.0895,"99":0.179,"100":4.58591,"101":19.96747,"102":2.06281,"103":0.00852,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 63 65 68 72 104"},F:{"84":0.00852,"85":1.39794,"86":0.89502,"87":0.06819,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00426,"16":0.14491,"18":0.01705,"85":0.00426,"92":0.00852,"96":0.00852,"97":0.01279,"98":0.01279,"99":0.02131,"100":0.11081,"101":2.18641,_:"12 13 14 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01705,"14":0.04688,"15":0.02131,_:"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.00852,"12.1":0.01279,"13.1":0.05541,"14.1":0.12786,"15.1":0.04262,"15.2-15.3":0.04262,"15.4":0.43899,"15.5":0.06819},G:{"8":0,"3.2":0.01963,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.07391,"6.0-6.1":0,"7.0-7.1":0.00462,"8.1-8.4":0.00231,"9.0-9.2":0,"9.3":0.02772,"10.0-10.2":0.00115,"10.3":0.03926,"11.0-11.2":0.03003,"11.3-11.4":0.01039,"12.0-12.1":0.01155,"12.2-12.5":0.22057,"13.0-13.1":0.01039,"13.2":0.00924,"13.3":0.04966,"13.4-13.7":0.11664,"14.0-14.4":0.36839,"14.5-14.8":1.05898,"15.0-15.1":0.33952,"15.2-15.3":0.85342,"15.4":8.29172},P:{"4":0.0923,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.05128,"8.2":0.01022,"9.2":0.02051,"10.1":0.03041,"11.1-11.2":0.0923,"12.0":0.03077,"13.0":0.0923,"14.0":0.26666,"15.0":0.08205,"16.0":1.25125},I:{"0":0,"3":0,"4":0.005,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02749,"4.4":0,"4.4.3-4.4.4":0.12244},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00426,"11":0.19605,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.25821},Q:{"10.4":0},O:{"0":0.0459},H:{"0":0.27705},L:{"0":41.05235},S:{"2.5":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 53b9e4d61cf453..8ea3e006486cf1 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:{"32":0.00403,"48":0.01209,"52":0.20155,"55":0.00806,"56":0.01612,"57":0.00403,"60":0.00403,"61":0.00403,"65":0.00403,"66":0.02419,"67":0.00403,"68":0.02419,"71":0.00403,"72":0.01209,"77":0.00403,"78":0.02419,"79":0.00806,"80":0.00806,"81":0.00403,"82":0.01209,"83":0.00403,"84":0.0524,"87":0.01209,"88":0.0524,"89":0.02419,"90":0.00806,"91":0.05643,"92":0.18543,"93":0.04031,"94":0.02419,"95":0.02822,"96":0.03628,"97":0.0524,"98":1.15287,"99":3.5634,"100":0.04031,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 58 59 62 63 64 69 70 73 74 75 76 85 86 101 3.5 3.6"},D:{"34":0.00806,"38":0.01209,"43":0.00806,"47":0.00806,"49":0.14915,"53":0.02419,"56":0.00403,"63":0.00806,"65":0.00806,"66":0.00806,"67":0.00403,"68":0.02419,"70":0.00403,"71":0.00806,"72":0.01209,"73":0.00806,"74":0.01209,"75":0.01612,"76":0.01209,"77":0.00806,"78":0.01612,"79":0.14109,"80":0.02016,"81":0.02419,"83":0.02822,"84":0.06853,"85":0.0524,"86":0.05643,"87":0.08062,"88":0.03225,"89":0.05643,"90":0.02419,"91":0.05643,"92":0.06853,"93":0.03628,"94":0.04434,"95":0.05643,"96":0.13302,"97":0.17333,"98":0.2862,"99":4.34542,"100":20.98539,"101":0.29829,"102":0.00806,_:"4 5 6 7 8 9 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 57 58 59 60 61 62 64 69 103 104"},F:{"28":0.01209,"36":0.00806,"69":0.00806,"70":0.00403,"71":0.00806,"77":0.00403,"82":0.00806,"83":0.00806,"84":0.38698,"85":1.74139,"86":0.02822,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 72 73 74 75 76 78 79 80 81 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.01612,"84":0.00403,"90":0.00806,"91":0.00403,"92":0.00806,"96":0.01209,"97":0.01612,"98":0.02016,"99":0.22574,"100":1.58418,"101":0.02419,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 93 94 95"},E:{"4":0,"13":0.04031,"14":0.0524,"15":0.02419,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00806,"11.1":0.01209,"12.1":0.01209,"13.1":0.07256,"14.1":0.1169,"15.1":0.04031,"15.2-15.3":0.06047,"15.4":0.26605},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00506,"6.0-6.1":0,"7.0-7.1":0.03207,"8.1-8.4":0.00591,"9.0-9.2":0.00253,"9.3":0.02532,"10.0-10.2":0.00169,"10.3":0.05149,"11.0-11.2":0.01182,"11.3-11.4":0.02026,"12.0-12.1":0.01013,"12.2-12.5":0.39078,"13.0-13.1":0.01097,"13.2":0.01097,"13.3":0.03376,"13.4-13.7":0.13167,"14.0-14.4":0.34436,"14.5-14.8":1.31245,"15.0-15.1":0.3739,"15.2-15.3":2.83083,"15.4":2.83421},P:{"4":0.07218,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.02062,"9.2":0.02062,"11.1-11.2":0.13405,"12.0":0.02062,"13.0":0.12374,"14.0":0.13405,"15.0":0.08249,"16.0":2.72231},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00354,"4.2-4.3":0.00531,"4.4":0,"4.4.3-4.4.4":0.02697},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00403,"11":0.13302,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.23279},Q:{"10.4":0},O:{"0":0.04178},H:{"0":0.44078},L:{"0":48.50215}}; +module.exports={C:{"32":0.00371,"43":0.00371,"47":0.00371,"48":0.00742,"50":0.00742,"52":0.19668,"56":0.01113,"61":0.00742,"65":0.00371,"66":0.01484,"67":0.00371,"68":0.04824,"72":0.00742,"77":0.00371,"78":0.01856,"79":0.00742,"80":0.01113,"81":0.00742,"82":0.00371,"84":0.00742,"87":0.00742,"88":0.04824,"89":0.01484,"90":0.00742,"91":0.04082,"92":0.17442,"93":0.07793,"94":0.01856,"95":0.01856,"96":0.02227,"97":0.02598,"98":0.03711,"99":0.76076,"100":3.22857,"101":0.04453,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 42 44 45 46 49 51 53 54 55 57 58 59 60 62 63 64 69 70 71 73 74 75 76 83 85 86 102 103 3.5 3.6"},D:{"33":0.00371,"34":0.00742,"38":0.01113,"41":0.00371,"43":0.00742,"47":0.01484,"48":0.00371,"49":0.10762,"53":0.01856,"56":0.00742,"58":0.00371,"62":0.00371,"63":0.00742,"65":0.00742,"67":0.01113,"68":0.02227,"69":0.00371,"70":0.00742,"71":0.00742,"72":0.01484,"73":0.00371,"74":0.01113,"75":0.01856,"76":0.01113,"77":0.00742,"78":0.02227,"79":0.11504,"80":0.05195,"81":0.0334,"83":0.04453,"84":0.08535,"85":0.07793,"86":0.11133,"87":0.12617,"88":0.02598,"89":0.05195,"90":0.02227,"91":0.04082,"92":0.05567,"93":0.02598,"94":0.04824,"95":0.04082,"96":0.09278,"97":0.11504,"98":0.11504,"99":0.21524,"100":4.2157,"101":17.51592,"102":1.95941,"103":0.01113,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 42 44 45 46 50 51 52 54 55 57 59 60 61 64 66 104"},F:{"28":0.01113,"36":0.00742,"72":0.00742,"79":0.00371,"82":0.00371,"84":0.01856,"85":1.01681,"86":1.09846,"87":0.08164,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 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.01113,"92":0.00371,"96":0.00742,"97":0.00742,"98":0.00742,"99":0.02598,"100":0.06309,"101":1.59202,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.00371,"13":0.01113,"14":0.03711,"15":0.02969,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00742,"12.1":0.01113,"13.1":0.05567,"14.1":0.1002,"15.1":0.02598,"15.2-15.3":0.02969,"15.4":0.31915,"15.5":0.05195},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00636,"6.0-6.1":0,"7.0-7.1":0.03055,"8.1-8.4":0.00636,"9.0-9.2":0,"9.3":0.02037,"10.0-10.2":0.00255,"10.3":0.05855,"11.0-11.2":0.01527,"11.3-11.4":0.02164,"12.0-12.1":0.014,"12.2-12.5":0.48498,"13.0-13.1":0.01782,"13.2":0.00636,"13.3":0.04837,"13.4-13.7":0.18457,"14.0-14.4":0.48625,"14.5-14.8":1.81898,"15.0-15.1":0.37296,"15.2-15.3":0.91903,"15.4":8.20767},P:{"4":0.08189,"5.0-5.4":0.01045,"6.2-6.4":0.01043,"7.2-7.4":0.02047,"8.2":0.01022,"9.2":0.03054,"10.1":0.03054,"11.1-11.2":0.09212,"12.0":0.02047,"13.0":0.10236,"14.0":0.11259,"15.0":0.06142,"16.0":0.92123},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00381,"4.2-4.3":0.00429,"4.4":0,"4.4.3-4.4.4":0.02335},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01113,"9":0.00742,"11":0.15215,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.2264},Q:{"10.4":0},O:{"0":0.03145},H:{"0":0.3751},L:{"0":47.69331},S:{"2.5":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 8e841e209bd465..722bd63a7cbf12 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:{"33":0.02366,"35":0.00592,"38":0.01183,"44":0.02366,"50":0.02366,"51":0.05324,"52":0.54427,"53":0.02366,"54":0.01183,"55":0.16565,"56":0.04141,"57":0.01183,"58":0.00592,"60":0.02958,"66":0.00592,"68":0.02958,"69":0.00592,"70":0.01775,"71":0.01183,"72":0.02366,"75":0.00592,"77":0.00592,"78":0.08282,"79":0.02366,"80":0.02366,"81":0.04733,"82":0.02366,"83":0.02366,"84":0.02958,"85":0.00592,"86":0.02958,"87":0.02958,"88":0.04733,"89":0.04733,"90":0.06508,"91":0.1479,"92":0.02958,"93":0.0355,"94":0.0355,"95":0.25439,"96":0.08282,"97":0.07691,"98":0.89332,"99":2.24808,"100":0.01183,_:"2 3 4 5 6 7 8 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 36 37 39 40 41 42 43 45 46 47 48 49 59 61 62 63 64 65 67 73 74 76 101 3.5 3.6"},D:{"22":0.01183,"38":0.01183,"39":0.00592,"41":0.01775,"42":0.00592,"45":0.01183,"46":0.00592,"47":0.01183,"48":0.01775,"49":0.13015,"51":0.23664,"53":0.01775,"55":0.02366,"56":0.1124,"57":0.02366,"58":0.01775,"59":0.02366,"60":0.00592,"61":0.01775,"62":0.01183,"63":0.01183,"64":0.02366,"65":0.01183,"66":0.01183,"67":0.01775,"68":0.01183,"69":0.02366,"70":0.01183,"71":0.01775,"72":0.01775,"73":0.02366,"74":0.10057,"75":0.01775,"76":0.07691,"77":0.01775,"78":0.02366,"79":0.20706,"80":0.08874,"81":0.05916,"83":0.13607,"84":0.28397,"85":0.21298,"86":0.39046,"87":0.31355,"88":0.11832,"89":0.16565,"90":0.13607,"91":0.13015,"92":0.24847,"93":0.10057,"94":0.07691,"95":0.1479,"96":0.36679,"97":0.52652,"98":1.08263,"99":3.80399,"100":15.80164,"101":0.19523,"102":0.01775,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 43 44 50 52 54 103 104"},F:{"36":0.05324,"37":0.00592,"38":0.00592,"47":0.00592,"60":0.00592,"68":0.01775,"70":0.01183,"71":0.00592,"72":0.01183,"73":0.01183,"75":0.00592,"76":0.01183,"77":0.1834,"78":0.10649,"79":0.14198,"80":0.1124,"81":0.08282,"82":0.05324,"83":0.04141,"84":1.1477,"85":4.75055,"86":0.05916,"87":0.00592,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 67 69 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02366},B:{"15":0.00592,"16":0.01183,"17":0.01183,"18":0.09466,"84":0.01775,"85":0.01183,"86":0.01775,"87":0.00592,"88":0.00592,"89":0.01183,"90":0.01183,"91":0.01775,"92":0.01775,"94":0.00592,"95":0.01183,"96":0.01775,"97":0.0355,"98":0.08874,"99":0.42004,"100":2.37232,"101":0.00592,_:"12 13 14 79 80 81 83 93"},E:{"4":0,"13":0.05916,"14":0.13015,"15":0.04141,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.01775,"9.1":0.02366,"11.1":0.01183,"12.1":0.02958,"13.1":0.13607,"14.1":0.34313,"15.1":0.1124,"15.2-15.3":0.1124,"15.4":0.4437},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00224,"6.0-6.1":0.00374,"7.0-7.1":0.01347,"8.1-8.4":0.00598,"9.0-9.2":0.00823,"9.3":0.06209,"10.0-10.2":0.01421,"10.3":0.0778,"11.0-11.2":0.02843,"11.3-11.4":0.0202,"12.0-12.1":0.0202,"12.2-12.5":0.34935,"13.0-13.1":0.02394,"13.2":0.01496,"13.3":0.04937,"13.4-13.7":0.16383,"14.0-14.4":0.40022,"14.5-14.8":1.12137,"15.0-15.1":0.69347,"15.2-15.3":2.64446,"15.4":1.76248},P:{"4":0.0751,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.12874,"9.2":0.05364,"11.1-11.2":0.04291,"12.0":0.02146,"13.0":0.11801,"14.0":0.05364,"15.0":0.05364,"16.0":1.00847},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00195,"4.2-4.3":0.00909,"4.4":0,"4.4.3-4.4.4":0.04612},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02464,"9":0.02464,"10":0.00616,"11":0.39418,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":27.61386},S:{"2.5":0},R:{_:"0"},M:{"0":0.13066},Q:{"10.4":0.00408},O:{"0":0.27356},H:{"0":0.75764}}; +module.exports={C:{"44":0.02872,"50":0.02297,"51":0.02872,"52":0.36181,"53":0.02297,"54":0.00574,"55":0.03446,"56":0.02872,"57":0.01149,"59":0.00574,"60":0.02297,"68":0.02297,"69":0.00574,"70":0.00574,"72":0.02297,"74":0.00574,"77":0.00574,"78":0.20101,"79":0.01723,"80":0.02872,"81":0.03446,"82":0.02872,"83":0.02297,"84":0.03446,"86":0.01723,"87":0.01149,"88":0.02872,"89":0.02297,"90":0.03446,"91":0.1206,"92":0.01149,"93":0.01149,"94":0.01723,"95":0.1608,"96":0.05743,"97":0.04594,"98":0.0804,"99":0.55707,"100":2.23403,"101":0.01149,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 58 61 62 63 64 65 66 67 71 73 75 76 85 102 103 3.5 3.6"},D:{"22":0.01149,"34":0.00574,"38":0.01149,"39":0.00574,"41":0.01723,"45":0.00574,"46":0.00574,"47":0.01149,"48":0.01723,"49":0.11486,"51":0.17229,"53":0.01723,"55":0.01723,"56":0.02872,"57":0.01149,"58":0.01149,"59":0.01723,"60":0.00574,"61":0.01723,"62":0.00574,"63":0.00574,"64":0.02872,"65":0.01149,"66":0.01149,"67":0.01723,"68":0.01149,"69":0.02872,"70":0.01149,"71":0.01723,"72":0.01723,"73":0.03446,"74":0.18952,"75":0.01723,"76":0.05743,"77":0.02297,"78":0.02872,"79":0.22398,"80":0.11486,"81":0.09189,"83":0.17803,"84":0.34458,"85":0.26992,"86":0.4537,"87":0.33884,"88":0.10912,"89":0.16655,"90":0.4135,"91":0.15506,"92":0.28141,"93":0.0804,"94":0.0804,"95":0.08615,"96":0.22972,"97":0.35032,"98":0.52836,"99":0.48816,"100":3.98564,"101":15.83919,"102":1.03374,"103":0.01723,_:"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 40 42 43 44 50 52 54 104"},F:{"36":0.04594,"37":0.01149,"42":0.00574,"47":0.00574,"54":0.00574,"60":0.00574,"68":0.01723,"69":0.00574,"70":0.01149,"71":0.01723,"72":0.01723,"73":0.01149,"75":0.00574,"76":0.01149,"77":0.05743,"78":0.02872,"79":0.0402,"80":0.02872,"81":0.02297,"82":0.03446,"83":0.01723,"84":0.09763,"85":2.55564,"86":2.97487,"87":0.13783,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 43 44 45 46 48 49 50 51 52 53 55 56 57 58 62 63 64 65 66 67 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01723},B:{"13":0.00574,"16":0.00574,"17":0.01149,"18":0.07466,"83":0.00574,"84":0.01723,"85":0.02297,"86":0.01723,"87":0.01149,"89":0.01149,"90":0.00574,"91":0.01149,"92":0.01723,"94":0.01149,"95":0.00574,"96":0.01149,"97":0.01723,"98":0.02297,"99":0.02872,"100":0.10337,"101":2.4178,_:"12 14 15 79 80 81 88 93"},E:{"4":0,"13":0.04594,"14":0.11486,"15":0.0402,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.01149,"9.1":0.01723,"11.1":0.01149,"12.1":0.02872,"13.1":0.12635,"14.1":0.28141,"15.1":0.08615,"15.2-15.3":0.09189,"15.4":0.68342,"15.5":0.0804},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00525,"6.0-6.1":0.00437,"7.0-7.1":0.01487,"8.1-8.4":0.00612,"9.0-9.2":0.00787,"9.3":0.05511,"10.0-10.2":0.01137,"10.3":0.06211,"11.0-11.2":0.02274,"11.3-11.4":0.01662,"12.0-12.1":0.02362,"12.2-12.5":0.35427,"13.0-13.1":0.02799,"13.2":0.01662,"13.3":0.05073,"13.4-13.7":0.1627,"14.0-14.4":0.4295,"14.5-14.8":1.1599,"15.0-15.1":0.67967,"15.2-15.3":1.86319,"15.4":3.76924},P:{"4":0.07676,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.08773,"9.2":0.01097,"11.1-11.2":0.04386,"12.0":0.02193,"13.0":0.05483,"14.0":0.05483,"15.0":0.05483,"16.0":0.47154},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00431,"4.2-4.3":0.00948,"4.4":0,"4.4.3-4.4.4":0.05858},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02394,"9":0.02394,"10":0.00599,"11":0.37111,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":28.70991},S:{"2.5":0},R:{_:"0"},M:{"0":0.14048},Q:{"10.4":0},O:{"0":0.23839},H:{"0":0.68917}}; 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 26d63ec5dbfe75..3f304bc0e080c6 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:{"34":0.0188,"40":0.00627,"47":0.00627,"52":0.01253,"72":0.01253,"78":0.02507,"89":0.00627,"91":0.01253,"95":0.00627,"96":0.01253,"97":0.02507,"98":0.53896,"99":4.76292,"100":0.0752,_:"2 3 4 5 6 7 8 9 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 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 94 101 3.5 3.6"},D:{"38":0.01253,"41":0.12534,"43":0.00627,"49":0.0376,"55":0.01253,"56":0.01253,"60":0.00627,"63":0.01253,"65":0.00627,"71":0.0188,"73":0.01253,"74":0.0376,"75":0.00627,"76":0.00627,"77":0.0188,"79":0.0376,"80":0.03134,"81":0.01253,"83":0.01253,"84":0.01253,"85":0.00627,"86":0.03134,"87":0.05014,"88":0.03134,"89":0.04387,"90":0.0752,"91":0.0376,"92":0.09401,"93":0.06894,"94":0.05014,"95":0.0376,"96":0.16921,"97":0.21308,"98":0.25068,"99":4.61251,"100":20.70617,"101":0.25068,"102":0.03134,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 48 50 51 52 53 54 57 58 59 61 62 64 66 67 68 69 70 72 78 103 104"},F:{"28":0.00627,"83":0.01253,"84":0.10654,"85":0.71444,"86":0.02507,_:"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 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.06894,"13":0.09401,"14":0.0188,"15":0.00627,"16":0.02507,"17":0.01253,"18":0.0752,"84":0.0188,"85":0.01253,"89":0.01253,"90":0.00627,"92":0.0376,"95":0.00627,"96":0.01253,"97":0.01253,"98":0.04387,"99":0.5891,"100":24.54784,"101":0.02507,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"13":0.01253,"14":0.03134,"15":0.01253,_:"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.02507,"12.1":0.01253,"13.1":0.02507,"14.1":0.10654,"15.1":0.0188,"15.2-15.3":0.02507,"15.4":0.22561},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00756,"6.0-6.1":0,"7.0-7.1":0.00756,"8.1-8.4":0,"9.0-9.2":0.00044,"9.3":0.07158,"10.0-10.2":0.00622,"10.3":0.04935,"11.0-11.2":0.004,"11.3-11.4":0.00889,"12.0-12.1":0.02579,"12.2-12.5":0.48773,"13.0-13.1":0.00667,"13.2":0.00222,"13.3":0.03379,"13.4-13.7":0.06758,"14.0-14.4":0.40681,"14.5-14.8":0.58465,"15.0-15.1":0.2761,"15.2-15.3":1.05726,"15.4":1.3418},P:{"4":0.05579,"5.0-5.4":0.01116,"6.2-6.4":0.04084,"7.2-7.4":0.05579,"8.2":0.01011,"9.2":0.02062,"10.1":0.03034,"11.1-11.2":0.06695,"12.0":0.02232,"13.0":0.02232,"14.0":0.04463,"15.0":0.04463,"16.0":0.70298},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00046,"4.2-4.3":0.00073,"4.4":0,"4.4.3-4.4.4":0.02121},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09401,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.20532},H:{"0":4.98317},L:{"0":28.50126},S:{"2.5":0.02986},R:{_:"0"},M:{"0":0.13066},Q:{"10.4":0}}; +module.exports={C:{"31":0.02069,"45":0.01379,"56":0.0069,"72":0.0069,"78":0.02758,"89":0.01379,"91":0.01379,"96":0.01379,"97":0.01379,"98":0.02069,"99":3.30271,"100":3.21997,"101":0.09653,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 102 103 3.5 3.6"},D:{"11":0.02069,"49":0.01379,"55":0.0069,"60":0.01379,"63":0.0069,"65":0.0069,"71":0.01379,"74":0.02069,"75":0.01379,"76":0.01379,"77":0.04137,"79":0.02758,"80":0.06895,"81":0.0069,"83":0.0069,"84":0.01379,"85":0.02069,"86":0.02069,"87":0.03448,"88":0.0069,"89":0.01379,"90":0.02069,"91":0.02069,"92":0.06206,"93":0.04137,"94":0.02758,"95":0.02758,"96":0.08964,"97":0.07585,"98":0.17927,"99":0.26891,"100":5.83317,"101":17.72705,"102":1.26179,"103":0.01379,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 61 62 64 66 67 68 69 70 72 73 78 104"},F:{"85":0.21375,"86":0.39991,"87":0.08274,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05516,"13":0.09653,"14":0.03448,"15":0.01379,"16":0.02069,"17":0.01379,"18":0.09653,"84":0.01379,"85":0.01379,"89":0.01379,"90":0.0069,"92":0.03448,"96":0.0069,"97":0.0069,"98":0.02758,"99":0.03448,"100":0.75845,"101":31.12403,_:"79 80 81 83 86 87 88 91 93 94 95"},E:{"4":0,"13":0.02069,"14":0.02069,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01379,"12.1":0.0069,"13.1":0.04137,"14.1":0.09653,"15.1":0.02758,"15.2-15.3":0.02758,"15.4":0.17927,"15.5":0.02069},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00129,"6.0-6.1":0,"7.0-7.1":0.00647,"8.1-8.4":0,"9.0-9.2":0.00432,"9.3":0.09712,"10.0-10.2":0.00604,"10.3":0.02935,"11.0-11.2":0.00388,"11.3-11.4":0.01036,"12.0-12.1":0.01338,"12.2-12.5":0.35092,"13.0-13.1":0.00518,"13.2":0.00129,"13.3":0.01813,"13.4-13.7":0.07813,"14.0-14.4":0.25941,"14.5-14.8":0.43854,"15.0-15.1":0.18733,"15.2-15.3":0.47351,"15.4":2.33128},P:{"4":0.0923,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.06808,"8.2":0.01022,"9.2":0.02051,"10.1":0.03041,"11.1-11.2":0.09077,"12.0":0.01135,"13.0":0.02269,"14.0":0.02269,"15.0":0.03404,"16.0":0.35175},I:{"0":0,"3":0,"4":0.00022,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00051,"4.2-4.3":0.00255,"4.4":0,"4.4.3-4.4.4":0.01845},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0069,"11":0.08274,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.00311},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.11178},Q:{"10.4":0.00621},O:{"0":0.13352},H:{"0":3.87735},L:{"0":23.51638},S:{"2.5":0.03105}}; 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 e38c1fc6674c68..a66903eeaf0d02 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:{"34":0.00632,"52":0.00632,"68":0.00211,"78":0.00843,"79":0.00421,"84":0.01054,"89":0.00211,"91":0.02107,"94":0.00421,"95":0.00421,"96":0.00421,"97":0.01054,"98":0.16856,"99":0.46775,"100":0.00843,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 81 82 83 85 86 87 88 90 92 93 101 3.5 3.6"},D:{"11":0.00632,"34":0.00421,"38":0.00843,"43":0.00421,"47":0.00632,"49":0.01475,"50":0.00211,"53":0.00421,"56":0.01054,"63":0.00632,"64":0.00421,"65":0.00421,"66":0.00421,"67":0.01054,"68":0.00843,"69":0.01054,"70":0.00421,"71":0.00843,"72":0.00421,"73":0.00421,"74":0.01054,"75":0.01054,"76":0.00421,"77":0.00211,"78":0.01054,"79":0.08428,"80":0.01054,"81":0.00843,"83":0.02528,"84":0.02318,"85":0.01896,"86":0.02739,"87":0.09271,"88":0.01686,"89":0.03161,"90":0.01264,"91":0.03371,"92":0.06532,"93":0.0295,"94":0.01475,"95":0.01686,"96":0.07164,"97":0.08428,"98":0.16856,"99":2.40198,"100":10.69724,"101":0.12853,"102":0.00843,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 51 52 54 55 57 58 59 60 61 62 103 104"},F:{"28":0.01475,"36":0.00211,"46":0.00632,"71":0.00211,"73":0.00211,"76":0.00421,"77":0.00211,"78":0.00632,"79":0.00421,"80":0.00421,"81":0.00211,"82":0.01475,"83":0.02739,"84":0.02528,"85":0.07375,"86":0.00211,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 74 75 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.00421,"14":0.00632,"15":0.00421,"16":0.00421,"17":0.00211,"18":0.01475,"84":0.00632,"89":0.00421,"91":0.00421,"92":0.00843,"94":0.00421,"95":0.00632,"96":0.01896,"97":0.059,"98":0.10114,"99":0.27391,"100":1.56972,"101":0.01896,_:"13 79 80 81 83 85 86 87 88 90 93"},E:{"4":0,"12":0.00421,"13":0.02318,"14":0.14328,"15":0.06532,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00211,"10.1":0.00211,"11.1":0.00843,"12.1":0.01054,"13.1":0.08639,"14.1":0.32237,"15.1":0.13274,"15.2-15.3":0.10324,"15.4":0.51832},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00287,"6.0-6.1":0,"7.0-7.1":0.03441,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04301,"10.0-10.2":0.00573,"10.3":0.02867,"11.0-11.2":0.02007,"11.3-11.4":0.02007,"12.0-12.1":0.06308,"12.2-12.5":0.65373,"13.0-13.1":0.08315,"13.2":0.05734,"13.3":0.21791,"13.4-13.7":0.57058,"14.0-14.4":2.50024,"14.5-14.8":4.31807,"15.0-15.1":2.8357,"15.2-15.3":8.10856,"15.4":9.09203},P:{"4":0.08214,"5.0-5.4":0.02054,"6.2-6.4":0.0307,"7.2-7.4":0.15401,"8.2":0.01011,"9.2":0.02054,"10.1":0.01036,"11.1-11.2":0.09241,"12.0":0.02054,"13.0":0.10268,"14.0":0.20535,"15.0":0.13348,"16.0":2.20752},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00677,"4.4":0,"4.4.3-4.4.4":0.0406},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17488,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.19199},H:{"0":0.15694},L:{"0":46.82576},S:{"2.5":0},R:{_:"0"},M:{"0":0.10262},Q:{"10.4":0}}; +module.exports={C:{"34":0.00504,"52":0.00504,"78":0.01259,"91":0.03273,"94":0.00252,"95":0.00252,"97":0.00504,"98":0.00755,"99":0.11079,"100":0.63202,"101":0.01007,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 96 102 103 3.5 3.6"},D:{"11":0.00755,"34":0.00252,"38":0.01007,"43":0.00504,"47":0.00755,"49":0.02014,"50":0.00252,"53":0.00252,"56":0.0277,"62":0.00504,"63":0.00504,"64":0.00504,"65":0.04784,"66":0.00755,"67":0.01007,"68":0.01007,"69":0.01007,"70":0.00504,"71":0.01007,"72":0.03273,"73":0.00504,"74":0.01259,"75":0.01259,"76":0.00504,"77":0.00504,"78":0.01007,"79":0.08813,"80":0.02266,"81":0.00755,"83":0.02518,"84":0.01259,"85":0.0277,"86":0.03022,"87":0.04029,"88":0.01511,"89":0.03022,"90":0.01007,"91":0.03273,"92":0.0705,"93":0.02266,"94":0.01259,"95":0.02014,"96":0.06295,"97":0.05791,"98":0.08058,"99":0.1964,"100":1.99677,"101":13.18425,"102":1.19857,"103":0.01259,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 51 52 54 55 57 58 59 60 61 104"},F:{"11":0.00504,"15":0.00504,"28":0.01259,"36":0.00252,"46":0.01007,"71":0.00252,"73":0.00504,"76":0.00755,"77":0.00755,"78":0.00504,"79":0.00504,"80":0.00504,"81":0.01007,"82":0.03777,"83":0.02014,"84":0.01511,"85":0.0982,"86":0.07806,"87":0.00504,_:"9 12 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00504,"14":0.00504,"15":0.00504,"16":0.00504,"17":0.00504,"18":0.01259,"84":0.00504,"89":0.00252,"91":0.00252,"92":0.01007,"94":0.00504,"95":0.00755,"96":0.01511,"97":0.0277,"98":0.01763,"99":0.06295,"100":0.28202,"101":1.99426,_:"13 79 80 81 83 85 86 87 88 90 93"},E:{"4":0,"13":0.02518,"14":0.13345,"15":0.05791,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00252,"10.1":0.00252,"11.1":0.00755,"12.1":0.01511,"13.1":0.09568,"14.1":0.32734,"15.1":0.12338,"15.2-15.3":0.08309,"15.4":0.94677,"15.5":0.10324},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00548,"6.0-6.1":0,"7.0-7.1":0.03835,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05479,"10.0-10.2":0.00548,"10.3":0.03835,"11.0-11.2":0.0137,"11.3-11.4":0.01918,"12.0-12.1":0.04657,"12.2-12.5":0.62187,"13.0-13.1":0.08219,"13.2":0.04657,"13.3":0.18355,"13.4-13.7":0.46024,"14.0-14.4":2.08203,"14.5-14.8":3.55314,"15.0-15.1":1.86834,"15.2-15.3":3.13674,"15.4":15.12756},P:{"4":0.05223,"5.0-5.4":0.01045,"6.2-6.4":0.01043,"7.2-7.4":0.11491,"8.2":0.01022,"9.2":0.01045,"10.1":0.04171,"11.1-11.2":0.06268,"12.0":0.01045,"13.0":0.08357,"14.0":0.1358,"15.0":0.06268,"16.0":0.85657},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00898,"4.4":0,"4.4.3-4.4.4":0.0434},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02014,"8":0.01007,"11":0.16871,_:"7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.09727},Q:{"10.4":0},O:{"0":1.01755},H:{"0":0.14875},L:{"0":44.50237},S:{"2.5":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 0cc4a3661a68d3..6227138628203d 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:{"33":0.02665,"34":0.00999,"43":0.00333,"47":0.04663,"57":0.00333,"66":0.00999,"67":0.00666,"79":0.00333,"95":0.00333,"98":0.78945,"99":1.60554,"100":0.01999,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 101 3.5 3.6"},D:{"37":0.02665,"42":0.02332,"43":0.00666,"48":0.00333,"49":0.03331,"60":0.00666,"61":0.02665,"63":0.00666,"68":0.00999,"69":0.02665,"70":0.01332,"71":0.04663,"75":0.08328,"78":0.01999,"80":0.02665,"81":0.07661,"83":0.03331,"86":0.00999,"87":0.00999,"90":0.02332,"92":0.14323,"93":0.01999,"94":0.00666,"95":0.03331,"96":0.10659,"97":0.02665,"98":0.13324,"99":2.17847,"100":11.32873,"101":0.08328,_:"4 5 6 7 8 9 10 11 12 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 44 45 46 47 50 51 52 53 54 55 56 57 58 59 62 64 65 66 67 72 73 74 76 77 79 84 85 88 89 91 102 103 104"},F:{"19":0.00999,"67":0.05996,"84":0.05996,"85":0.68952,"86":0.00999,_:"9 11 12 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 79 80 81 82 83 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.02665,"13":0.09327,"14":0.6229,"15":0.15989,"16":0.12658,"17":0.1499,"18":0.46967,"84":0.02998,"85":0.01999,"87":0.00333,"88":0.00999,"89":0.00666,"90":0.00999,"92":0.06995,"93":0.00333,"94":0.00999,"95":0.01332,"96":0.07328,"97":0.00999,"98":0.02332,"99":0.72283,"100":3.98388,"101":0.04663,_:"79 80 81 83 86 91"},E:{"4":0,"13":0.01666,"14":0.00999,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3","12.1":0.03331,"13.1":0.07661,"14.1":0.02998,"15.1":0.00999,"15.4":0.08328},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.03301,"9.3":0.00814,"10.0-10.2":0,"10.3":0.03482,"11.0-11.2":0.14787,"11.3-11.4":0.00995,"12.0-12.1":0.08456,"12.2-12.5":0.43683,"13.0-13.1":0.00317,"13.2":0.06647,"13.3":0.02668,"13.4-13.7":0.20259,"14.0-14.4":0.56345,"14.5-14.8":2.2877,"15.0-15.1":0.04477,"15.2-15.3":0.21434,"15.4":0.35724},P:{"4":0.20335,"5.0-5.4":0.05127,"6.2-6.4":0.04067,"7.2-7.4":0.37619,"8.2":0.11279,"9.2":1.59626,"10.1":0.02033,"11.1-11.2":0.12201,"12.0":0.15251,"13.0":0.4982,"14.0":0.20335,"15.0":0.20335,"16.0":1.75894},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00106,"4.4":0,"4.4.3-4.4.4":0.09898},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0134,"11":1.18909,_:"6 7 8 9 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":6.96911},H:{"0":1.54056},L:{"0":54.49871},S:{"2.5":0},R:{_:"0"},M:{"0":0.45349},Q:{"10.4":0.01334}}; +module.exports={C:{"45":0.04434,"47":0.02729,"56":0.02729,"67":0.01023,"72":0.01023,"78":0.00682,"81":0.01023,"87":0.00341,"88":0.00682,"94":0.00682,"97":0.00682,"99":0.37521,"100":1.54518,"101":0.19443,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 68 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 89 90 91 92 93 95 96 98 102 103 3.5 3.6"},D:{"42":0.00341,"49":0.0307,"65":0.00682,"66":0.00341,"68":0.00682,"69":0.02388,"70":0.00341,"71":0.02388,"75":0.05458,"78":0.00682,"79":0.00341,"80":0.03411,"81":0.05117,"83":0.20125,"84":0.0307,"86":0.02047,"87":0.04434,"88":0.01023,"89":0.01364,"90":0.00682,"91":0.01023,"92":0.03752,"94":0.04775,"95":0.02388,"96":0.06822,"97":0.06481,"98":0.0307,"99":0.11939,"100":3.91924,"101":9.90896,"102":1.2416,"103":0.01023,"104":0.00682,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 72 73 74 76 77 85 93"},F:{"68":0.00682,"85":0.10233,"86":0.27629,_:"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 70 71 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:{"12":0.02047,"13":0.05458,"14":0.52529,"15":0.11256,"16":0.15691,"17":0.12621,"18":0.37521,"80":0.01706,"84":0.01023,"87":0.00682,"89":0.02388,"90":0.01023,"92":0.02388,"94":0.00341,"95":0.05799,"96":0.05458,"97":0.00341,"98":0.02729,"99":0.06822,"100":0.33428,"101":3.61907,_:"79 81 83 85 86 88 91 93"},E:{"4":0,"13":0.01706,"14":0.00341,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01706,"11.1":0.01023,"12.1":0.02729,"13.1":0.0307,"14.1":0.03411,"15.1":0.10574,"15.2-15.3":0.00341,"15.4":0.08869,"15.5":0.00682},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.00139,"8.1-8.4":0,"9.0-9.2":0.07634,"9.3":0.00418,"10.0-10.2":0,"10.3":0.0129,"11.0-11.2":0.09063,"11.3-11.4":0,"12.0-12.1":0.01987,"12.2-12.5":0.41587,"13.0-13.1":0.00279,"13.2":0.01848,"13.3":0.00837,"13.4-13.7":0.69196,"14.0-14.4":0.22205,"14.5-14.8":0.68429,"15.0-15.1":0.08331,"15.2-15.3":0.51069,"15.4":0.64246},P:{"4":0.18114,"5.0-5.4":0.03019,"6.2-6.4":0.01006,"7.2-7.4":0.42265,"8.2":0.21569,"9.2":0.82518,"10.1":0.01023,"11.1-11.2":0.27171,"12.0":0.15095,"13.0":0.42265,"14.0":0.1107,"15.0":0.10063,"16.0":0.65411},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00373,"4.2-4.3":0.01118,"4.4":0,"4.4.3-4.4.4":0.07734},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.03694,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.76432},Q:{"10.4":0},O:{"0":7.97269},H:{"0":1.38484},L:{"0":56.15028},S:{"2.5":0}}; 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 84c7c853a45093..e878e6ca2ae7f0 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:{"38":0.01262,"45":0.00841,"47":0.00841,"52":0.07152,"55":0.18932,"59":0.07152,"60":0.05048,"61":0.01683,"62":0.03786,"63":0.06311,"67":0.00421,"68":0.14725,"69":0.02945,"70":0.02524,"71":0.02104,"72":0.0589,"73":0.06311,"74":0.03366,"75":0.03786,"76":0.09255,"77":0.02524,"78":0.10097,"79":0.02945,"80":0.02524,"81":0.28187,"82":0.02945,"83":0.02104,"84":0.07993,"87":0.02524,"88":0.01262,"89":0.02945,"91":0.89188,"92":0.00841,"94":0.01262,"95":0.01262,"96":0.03366,"97":0.06731,"98":0.32815,"99":0.90451,"100":0.04207,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 48 49 50 51 53 54 56 57 58 64 65 66 85 86 90 93 101 3.5 3.6"},D:{"43":0.00421,"47":0.00421,"49":0.01262,"53":0.00841,"55":0.01683,"57":0.01262,"58":0.00421,"59":0.25663,"61":0.00841,"63":0.00421,"64":0.00421,"65":0.00421,"66":0.00421,"67":0.00421,"68":0.4207,"69":0.13042,"70":0.22297,"71":0.16828,"72":0.97602,"73":0.05469,"74":0.30711,"75":0.13883,"76":0.13462,"77":0.122,"78":0.43753,"79":0.27346,"80":0.53008,"81":0.18511,"83":0.71098,"84":1.00547,"85":0.8414,"86":0.89188,"87":0.73623,"88":0.25663,"89":0.58477,"90":0.55112,"91":0.10938,"92":0.41229,"93":0.09676,"94":0.08835,"95":0.01683,"96":0.13883,"97":0.10938,"98":0.17249,"99":2.06564,"100":6.89107,"101":0.20614,"102":0.00841,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 50 51 52 54 56 60 62 103 104"},F:{"49":0.00841,"51":0.00421,"52":0.00841,"53":0.02524,"54":0.02945,"55":0.03366,"56":0.00841,"60":0.00841,"62":0.00421,"65":0.00421,"66":0.00841,"67":0.06731,"68":0.00841,"71":0.24401,"72":0.00421,"73":0.00841,"74":0.00841,"75":0.00841,"76":0.02104,"84":0.14304,"85":0.37022,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 57 58 63 64 69 70 77 78 79 80 81 82 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:{"12":0.01262,"13":0.01262,"14":0.01262,"15":0.00421,"16":0.02945,"17":0.02524,"18":0.18511,"79":0.01683,"80":0.07573,"81":0.04207,"83":0.02945,"84":0.04207,"85":0.12621,"86":0.02945,"87":0.02524,"88":0.02524,"89":0.05469,"90":0.02524,"91":0.00421,"92":0.02524,"94":0.00421,"95":0.00421,"96":0.01683,"97":0.01262,"98":0.04628,"99":0.32394,"100":1.31679,"101":0.01262,_:"93"},E:{"4":0,"12":0.00841,"13":0.10097,"14":0.0589,"15":0.02524,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":1.04334,"11.1":0.02524,"12.1":0.08414,"13.1":0.0589,"14.1":0.29449,"15.1":0.7236,"15.2-15.3":0.82457,"15.4":0.66471},G:{"8":0.02996,"3.2":0.00599,"4.0-4.1":0.00599,"4.2-4.3":0.02696,"5.0-5.1":0.02996,"6.0-6.1":0.05692,"7.0-7.1":0.0749,"8.1-8.4":0.11085,"9.0-9.2":0.11384,"9.3":0.15878,"10.0-10.2":0.14081,"10.3":0.14081,"11.0-11.2":0.20072,"11.3-11.4":0.13781,"12.0-12.1":0.22769,"12.2-12.5":0.5782,"13.0-13.1":0.13481,"13.2":0.0689,"13.3":0.17076,"13.4-13.7":0.4344,"14.0-14.4":0.63812,"14.5-14.8":0.97066,"15.0-15.1":1.56683,"15.2-15.3":20.77629,"15.4":3.15464},P:{"4":0.17476,"5.0-5.4":0.03084,"6.2-6.4":0.02056,"7.2-7.4":0.13364,"8.2":0.01011,"9.2":0.06168,"10.1":0.1542,"11.1-11.2":0.19531,"12.0":0.09252,"13.0":0.63734,"14.0":0.1542,"15.0":0.07196,"16.0":1.4186},I:{"0":0,"3":0,"4":0.00297,"2.1":0,"2.2":0.00238,"2.3":0,"4.1":0.00475,"4.2-4.3":0.02139,"4.4":0,"4.4.3-4.4.4":0.03803},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.30363,"9":0.26737,"10":0.16767,"11":0.55287,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.02897},O:{"0":1.0775},H:{"0":0.65265},L:{"0":23.36619},S:{"2.5":0},R:{_:"0"},M:{"0":0.59668},Q:{"10.4":0.00579}}; +module.exports={C:{"36":0.01881,"52":0.05644,"55":0.06584,"56":0.00941,"59":0.01411,"60":0.02352,"61":0.01881,"62":0.01411,"63":0.01881,"65":0.00941,"66":0.00941,"67":0.00941,"68":0.04233,"69":0.02822,"70":0.04233,"71":0.03292,"72":0.18812,"73":0.05644,"74":0.03762,"75":0.03292,"76":0.08465,"77":0.03292,"78":0.09406,"79":0.02822,"80":0.02822,"81":1.47674,"82":0.02352,"83":0.03762,"84":0.02822,"86":0.00941,"87":0.01881,"88":0.00941,"89":0.04703,"90":0.00941,"91":0.53144,"92":0.0047,"94":0.03292,"95":0.0047,"96":0.00941,"97":0.02352,"98":0.05173,"99":0.21164,"100":1.16634,"101":0.07055,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 57 58 64 85 93 102 103 3.5 3.6"},D:{"41":0.0047,"49":0.08465,"53":0.0047,"57":0.00941,"59":0.26337,"60":0.05644,"61":0.01881,"62":0.01881,"63":0.06114,"64":0.03292,"65":0.02822,"66":0.03762,"67":0.05173,"68":0.19282,"69":0.19753,"70":0.20693,"71":0.14109,"72":1.04877,"73":0.08465,"74":0.26337,"75":0.14109,"76":0.14109,"77":0.1552,"78":0.39035,"79":0.36213,"80":0.6255,"81":0.18342,"83":0.90298,"84":0.9453,"85":1.05347,"86":0.76659,"87":0.27277,"88":0.26807,"89":0.48441,"90":0.45149,"91":0.24456,"92":0.55966,"93":0.1599,"94":0.1552,"95":0.03762,"96":0.18342,"97":0.25867,"98":0.07525,"99":1.47204,"100":1.67897,"101":6.07157,"102":0.67253,"103":0.00941,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 54 55 56 58 104"},F:{"48":0.0047,"49":0.00941,"51":0.0047,"52":0.00941,"53":0.02822,"54":0.04233,"55":0.03762,"56":0.01411,"65":0.0047,"66":0.00941,"67":0.05644,"68":0.00941,"69":0.19753,"70":0.00941,"71":1.02055,"72":0.00941,"73":0.03762,"74":0.01881,"75":0.03762,"76":0.00941,"83":0.00941,"84":0.0047,"85":0.08936,"86":0.1505,_:"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 50 57 58 60 62 63 64 77 78 79 80 81 82 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.00941,"13":0.00941,"14":0.03292,"15":0.02352,"16":0.02822,"17":0.04703,"18":0.1505,"79":0.01411,"80":0.07525,"81":0.03762,"83":0.02352,"84":0.07055,"85":0.61139,"86":0.02822,"87":0.05644,"88":0.02822,"89":0.05644,"90":0.04233,"91":0.05173,"92":0.00941,"96":0.00941,"97":0.0047,"98":0.01411,"99":0.01411,"100":0.11287,"101":1.75892,_:"93 94 95"},E:{"4":0,"10":0.0047,"13":0.06114,"14":0.08936,"15":0.01881,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.99704,"10.1":0.00941,"11.1":0.05173,"12.1":0.29159,"13.1":0.07995,"14.1":0.35743,"15.1":0.59728,"15.2-15.3":0.37154,"15.4":3.83295,"15.5":0.07995},G:{"8":0.03624,"3.2":0.01691,"4.0-4.1":0.01208,"4.2-4.3":0.0459,"5.0-5.1":0.03866,"6.0-6.1":0.08214,"7.0-7.1":0.12805,"8.1-8.4":0.15704,"9.0-9.2":0.15462,"9.3":0.20053,"10.0-10.2":0.12563,"10.3":0.16187,"11.0-11.2":0.2875,"11.3-11.4":0.21985,"12.0-12.1":0.24885,"12.2-12.5":0.59433,"13.0-13.1":0.14254,"13.2":0.0749,"13.3":0.21261,"13.4-13.7":0.48078,"14.0-14.4":1.59697,"14.5-14.8":0.6499,"15.0-15.1":0.76345,"15.2-15.3":2.87503,"15.4":14.84867},P:{"4":0.07279,"5.0-5.4":0.01045,"6.2-6.4":0.04159,"7.2-7.4":0.16637,"8.2":0.01022,"9.2":0.11438,"10.1":0.17677,"11.1-11.2":0.25995,"12.0":0.09358,"13.0":0.57189,"14.0":0.08318,"15.0":0.04159,"16.0":0.5303},I:{"0":0,"3":0,"4":0.00191,"2.1":0,"2.2":0.0023,"2.3":0,"4.1":0.00613,"4.2-4.3":0.0134,"4.4":0,"4.4.3-4.4.4":0.07159},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":1.4656,"9":1.26858,"10":0.8265,"11":2.18638,_:"6 7 5.5"},J:{"7":0,"10":0.0053},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":1.23397},Q:{"10.4":0.01059},O:{"0":1.38226},H:{"0":0.33092},L:{"0":23.74865},S:{"2.5":0}}; 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 53178ec7830e10..a795b5bc4ddf7a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js @@ -1 +1 @@ -module.exports={C:{"28":0.00249,"30":0.00249,"31":0.00124,"32":0.00124,"33":0.00124,"35":0.00373,"37":0.00622,"38":0.00746,"39":0.00249,"40":0.00373,"41":0.00124,"43":0.00498,"44":0.00498,"45":0.00498,"47":0.04478,"48":0.00249,"49":0.00373,"51":0.00249,"52":0.02239,"53":0.00249,"54":0.00124,"55":0.00249,"56":0.00622,"57":0.00373,"60":0.00124,"63":0.00249,"66":0.00498,"70":0.00124,"71":0.00249,"72":0.01368,"78":0.01493,"79":0.00124,"80":0.00124,"81":0.00124,"82":0.00124,"83":0.00498,"84":0.00124,"85":0.00746,"87":0.00373,"88":0.0112,"89":0.03234,"90":0.00373,"91":0.03981,"92":0.00373,"93":0.00498,"94":0.01617,"95":0.00995,"96":0.02488,"97":0.0311,"98":0.52994,"99":1.2328,"100":0.02488,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 34 36 42 46 50 58 59 61 62 64 65 67 68 69 73 74 75 76 77 86 101 3.5 3.6"},D:{"11":0.00249,"25":0.00124,"26":0.00373,"29":0.00498,"31":0.00124,"32":0.00373,"33":0.00498,"34":0.00124,"36":0.00124,"37":0.00995,"38":0.00746,"40":0.00746,"43":0.04105,"44":0.00124,"45":0.00124,"46":0.00373,"48":0.00124,"49":0.00249,"50":0.00498,"51":0.00124,"52":0.00373,"53":0.00622,"55":0.00373,"56":0.00124,"57":0.00622,"58":0.00498,"60":0.00249,"62":0.00249,"63":0.01244,"64":0.00373,"65":0.00124,"67":0.00373,"68":0.00498,"69":0.01866,"70":0.01244,"71":0.00373,"72":0.00622,"73":0.00373,"74":0.00871,"75":0.00498,"76":0.00498,"77":0.00249,"78":0.02115,"79":0.02861,"80":0.00871,"81":0.02239,"83":0.01742,"84":0.00871,"85":0.00746,"86":0.051,"87":0.04852,"88":0.02115,"89":0.00995,"90":0.02364,"91":0.03359,"92":0.051,"93":0.01244,"94":0.0199,"95":0.02239,"96":0.0734,"97":0.05722,"98":0.25751,"99":0.93424,"100":4.17735,"101":0.05474,"102":0.00622,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 30 35 39 41 42 47 54 59 61 66 103 104"},F:{"18":0.00249,"36":0.00249,"64":0.00124,"73":0.00249,"77":0.00249,"78":0.00249,"79":0.0112,"80":0.00498,"81":0.00249,"82":0.00871,"83":0.00373,"84":0.09206,"85":0.51128,"86":0.0112,"87":0.00373,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00498},B:{"12":0.02239,"13":0.00746,"14":0.02861,"15":0.00871,"16":0.00995,"17":0.03359,"18":0.04727,"81":0.00124,"83":0.00124,"84":0.01368,"85":0.00622,"86":0.00124,"87":0.00249,"88":0.00373,"89":0.0199,"90":0.00995,"91":0.00498,"92":0.02239,"93":0.00249,"94":0.00498,"95":0.00373,"96":0.02861,"97":0.01617,"98":0.02612,"99":0.16172,"100":0.74267,"101":0.01244,_:"79 80"},E:{"4":0,"7":0.00124,"8":0.00124,"10":0.00373,"12":0.00124,"13":0.01742,"14":0.02861,"15":0.00871,_:"0 5 6 9 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01368,"10.1":0.00124,"11.1":0.00871,"12.1":0.00995,"13.1":0.02861,"14.1":0.0734,"15.1":0.07464,"15.2-15.3":0.01493,"15.4":0.06718},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0,"6.0-6.1":0.001,"7.0-7.1":0.02101,"8.1-8.4":0.0015,"9.0-9.2":0.002,"9.3":0.01651,"10.0-10.2":0.0025,"10.3":0.02151,"11.0-11.2":0.02501,"11.3-11.4":0.02852,"12.0-12.1":0.03552,"12.2-12.5":0.43773,"13.0-13.1":0.03352,"13.2":0.01951,"13.3":0.05303,"13.4-13.7":0.11156,"14.0-14.4":0.66736,"14.5-14.8":0.83295,"15.0-15.1":0.48126,"15.2-15.3":1.3122,"15.4":0.89448},P:{"4":1.06823,"5.0-5.4":0.08139,"6.2-6.4":0.10174,"7.2-7.4":0.64094,"8.2":0.01017,"9.2":0.11191,"10.1":0.04069,"11.1-11.2":0.33573,"12.0":0.08139,"13.0":0.27469,"14.0":0.61042,"15.0":0.30521,"16.0":1.67865},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.00709,"4.4":0,"4.4.3-4.4.4":0.05301},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00513,"11":0.12301,_:"6 7 8 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.6111},H:{"0":8.37251},L:{"0":67.56056},S:{"2.5":0.03502},R:{_:"0"},M:{"0":0.15761},Q:{"10.4":0}}; +module.exports={C:{"20":0.00141,"26":0.00283,"27":0.00141,"28":0.00141,"29":0.00707,"30":0.00283,"32":0.00141,"33":0.00283,"34":0.00424,"35":0.00141,"36":0.00141,"37":0.00141,"38":0.00424,"40":0.00283,"42":0.00141,"43":0.00566,"44":0.00283,"45":0.00283,"47":0.0099,"48":0.00283,"49":0.00424,"50":0.00141,"51":0.00283,"52":0.03535,"53":0.00141,"54":0.00283,"55":0.00283,"56":0.00707,"57":0.00283,"58":0.00141,"66":0.00141,"67":0.00283,"68":0.00283,"69":0.00283,"70":0.00283,"72":0.04666,"73":0.00141,"78":0.0099,"80":0.00283,"81":0.00283,"83":0.00424,"84":0.00141,"85":0.00566,"87":0.00424,"88":0.00707,"89":0.01131,"91":0.02687,"92":0.0099,"93":0.00141,"94":0.0099,"95":0.01555,"96":0.01273,"97":0.01414,"98":0.04525,"99":0.36764,"100":1.54692,"101":0.03676,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 31 39 41 46 59 60 61 62 63 64 65 71 74 75 76 77 79 82 86 90 102 103 3.5 3.6"},D:{"23":0.00141,"26":0.00566,"29":0.00283,"31":0.00141,"33":0.00566,"36":0.00424,"37":0.00141,"38":0.00424,"40":0.00848,"42":0.44682,"43":0.04525,"46":0.00424,"47":0.00141,"49":0.00283,"50":0.00424,"52":0.00283,"55":0.00566,"56":0.00424,"57":0.00566,"58":0.00424,"59":0.00283,"60":0.00283,"61":0.00283,"62":0.00424,"63":0.01697,"64":0.00848,"65":0.00283,"67":0.00141,"68":0.00424,"69":0.0099,"70":0.01697,"71":0.00848,"72":0.00283,"74":0.00566,"75":0.00283,"76":0.00707,"77":0.00283,"78":0.0198,"79":0.05373,"80":0.0099,"81":0.01414,"83":0.01697,"84":0.00424,"85":0.0099,"86":0.06504,"87":0.03111,"88":0.0198,"89":0.00707,"90":0.04101,"91":0.04242,"92":0.05656,"93":0.04383,"94":0.03252,"95":0.00848,"96":0.04383,"97":0.04949,"98":0.1923,"99":0.20927,"100":0.85547,"101":3.95496,"102":0.51187,"103":0.00848,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 27 28 30 32 34 35 39 41 44 45 48 51 53 54 66 73 104"},F:{"34":0.00141,"36":0.02545,"42":0.00141,"43":0.00141,"75":0.01555,"79":0.0099,"82":0.00566,"83":0.00424,"84":0.01697,"85":0.31674,"86":0.3634,"87":0.02545,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.02828},B:{"12":0.02262,"13":0.00707,"14":0.00848,"15":0.00707,"16":0.01838,"17":0.01131,"18":0.04383,"81":0.00283,"84":0.0198,"85":0.00566,"87":0.00141,"88":0.00283,"89":0.0198,"90":0.00848,"91":0.00424,"92":0.0198,"93":0.00283,"94":0.00424,"95":0.00283,"96":0.00848,"97":0.01131,"98":0.01414,"99":0.02969,"100":0.08484,"101":1.00253,_:"79 80 83 86"},E:{"4":0,"8":0.00283,"11":0.00141,"12":0.00141,"13":0.0198,"14":0.02262,"15":0.00707,_:"0 5 6 7 9 10 3.1 3.2 6.1 7.1","5.1":0.02404,"9.1":0.00283,"10.1":0.00283,"11.1":0.01414,"12.1":0.01131,"13.1":0.01555,"14.1":0.05656,"15.1":0.01131,"15.2-15.3":0.01131,"15.4":0.13574,"15.5":0.02262},G:{"8":0.00109,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00327,"5.0-5.1":0,"6.0-6.1":0.00327,"7.0-7.1":0.0049,"8.1-8.4":0.00109,"9.0-9.2":0.00436,"9.3":0.01634,"10.0-10.2":0.00327,"10.3":0.02995,"11.0-11.2":0.01361,"11.3-11.4":0.02559,"12.0-12.1":0.02505,"12.2-12.5":0.3877,"13.0-13.1":0.03703,"13.2":0.03213,"13.3":0.06207,"13.4-13.7":0.11925,"14.0-14.4":0.63708,"14.5-14.8":0.69426,"15.0-15.1":0.40948,"15.2-15.3":0.83747,"15.4":2.0953},P:{"4":0.83929,"5.0-5.4":0.04045,"6.2-6.4":0.07078,"7.2-7.4":0.36403,"8.2":0.21569,"9.2":0.0809,"10.1":0.02046,"11.1-11.2":0.21235,"12.0":0.07078,"13.0":0.24269,"14.0":0.43481,"15.0":0.18202,"16.0":1.19321},I:{"0":0,"3":0,"4":0.00078,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00129,"4.2-4.3":0.00828,"4.4":0,"4.4.3-4.4.4":0.07552},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00146,"9":0.00437,"11":0.14123,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.19748},Q:{"10.4":0},O:{"0":2.05205},H:{"0":9.03908},L:{"0":65.3385},S:{"2.5":0.03434}}; 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 2f34ec7f7b3a9f..82be439166e584 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:{"48":0.00913,"51":0.105,"52":0.10956,"53":0.10043,"54":0.05022,"55":0.09587,"56":0.06848,"57":0.06848,"58":0.02739,"59":0.03196,"60":0.00913,"68":0.0137,"78":0.06391,"79":0.0137,"80":0.0137,"81":0.0137,"82":0.00457,"83":0.00913,"84":0.00913,"88":0.0137,"89":0.00457,"91":0.06391,"92":0.00913,"94":0.01826,"95":0.01826,"96":0.0137,"97":0.02739,"98":0.6528,"99":1.70731,"100":0.00457,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 85 86 87 90 93 101 3.5 3.6"},D:{"38":0.0137,"39":0.02739,"40":0.02739,"41":0.03196,"42":0.02739,"43":0.03196,"44":0.03196,"45":0.03652,"46":0.03652,"47":0.04109,"48":0.06391,"49":0.06391,"50":0.02283,"51":0.02739,"52":0.02283,"53":0.02739,"54":0.02739,"55":0.02739,"56":0.02739,"57":0.03196,"58":0.03652,"59":0.03652,"60":0.04109,"61":0.03652,"62":0.03196,"63":0.03652,"64":0.03196,"65":0.04565,"66":0.03652,"67":0.00913,"69":0.22825,"70":0.00457,"75":0.02739,"76":0.03196,"77":0.00913,"78":0.00913,"79":0.07304,"80":0.02739,"81":0.00913,"83":0.05935,"84":0.10043,"85":0.0913,"86":0.12782,"87":0.20999,"88":0.01826,"89":0.07304,"90":0.04109,"91":0.03652,"92":0.03652,"93":0.13239,"94":0.07304,"95":0.04109,"96":0.17347,"97":0.1963,"98":0.72127,"99":6.27231,"100":15.55296,"101":0.20999,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 68 71 72 73 74 102 103 104"},F:{"46":0.00457,"68":0.00457,"69":0.00913,"71":0.00913,"79":0.00913,"82":0.0137,"83":0.00913,"84":0.35607,"85":1.65253,"86":0.04109,"87":0.00913,_:"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 70 72 73 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00457,"17":0.00913,"18":0.03196,"80":0.00457,"84":0.0137,"85":0.00913,"86":0.01826,"88":0.00913,"89":0.00913,"90":0.00457,"92":0.00913,"93":0.00913,"94":0.00457,"95":0.00913,"96":0.01826,"97":0.05478,"98":0.08674,"99":1.05452,"100":5.01694,"101":0.06391,_:"12 13 14 15 79 81 83 87 91"},E:{"4":0,"13":0.07304,"14":0.36977,"15":0.12326,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00913,"10.1":0.0137,"11.1":0.03652,"12.1":0.08217,"13.1":0.39259,"14.1":1.23255,"15.1":0.27847,"15.2-15.3":0.31955,"15.4":1.75296},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.00515,"8.1-8.4":0.01288,"9.0-9.2":0.02576,"9.3":0.10045,"10.0-10.2":0.04379,"10.3":0.17256,"11.0-11.2":0.03606,"11.3-11.4":0.04636,"12.0-12.1":0.03863,"12.2-12.5":0.94782,"13.0-13.1":0.02576,"13.2":0.01288,"13.3":0.08499,"13.4-13.7":0.26529,"14.0-14.4":0.74692,"14.5-14.8":3.42296,"15.0-15.1":0.94524,"15.2-15.3":10.19934,"15.4":8.61277},P:{"4":0.11593,"5.0-5.4":0.01054,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01054,"12.0":0.02108,"13.0":0.06323,"14.0":0.07377,"15.0":0.06323,"16.0":4.14185},I:{"0":0,"3":0,"4":0.00237,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00237,"4.2-4.3":0.00949,"4.4":0,"4.4.3-4.4.4":0.05099},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04109,"9":0.05022,"10":0.01826,"11":0.21456,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.04348},H:{"0":1.13716},L:{"0":22.06844},S:{"2.5":0},R:{_:"0"},M:{"0":0.37502},Q:{"10.4":0}}; +module.exports={C:{"51":0.05006,"52":0.07737,"53":0.04551,"54":0.03186,"55":0.05006,"56":0.03186,"57":0.03641,"58":0.01365,"59":0.0182,"60":0.0091,"65":0.0091,"68":0.0091,"70":0.0091,"77":0.0091,"78":0.08192,"79":0.02731,"80":0.02276,"81":0.02731,"82":0.03186,"83":0.01365,"84":0.01365,"88":0.0091,"91":0.06371,"92":0.00455,"94":0.0182,"95":0.01365,"96":0.0091,"97":0.0091,"98":0.02731,"99":0.47786,"100":1.85681,"101":0.0091,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 61 62 63 64 66 67 69 71 72 73 74 75 76 85 86 87 89 90 93 102 103 3.5 3.6"},D:{"38":0.01365,"39":0.01365,"40":0.01365,"41":0.0182,"42":0.01365,"43":0.01365,"44":0.0182,"45":0.0182,"46":0.0182,"47":0.0182,"48":0.02276,"49":0.04096,"50":0.0091,"51":0.01365,"52":0.01365,"53":0.01365,"54":0.0182,"55":0.01365,"56":0.0182,"57":0.01365,"58":0.03641,"59":0.0182,"60":0.0182,"61":0.0182,"62":0.0182,"63":0.02731,"64":0.0182,"65":0.02276,"66":0.04096,"67":0.0091,"69":0.16839,"71":0.00455,"73":0.00455,"74":0.00455,"75":0.02276,"76":0.02731,"77":0.0091,"78":0.00455,"79":0.06827,"80":0.05461,"81":0.0182,"83":0.12743,"84":0.25486,"85":0.2412,"86":0.29582,"87":0.26851,"88":0.01365,"89":0.07282,"90":0.02276,"91":0.03641,"92":0.02731,"93":0.10922,"94":0.05916,"95":0.02731,"96":0.12288,"97":0.08647,"98":0.24575,"99":0.4551,"100":5.89355,"101":16.57474,"102":0.98302,"103":0.00455,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 68 70 72 104"},F:{"46":0.00455,"68":0.0091,"69":0.0091,"70":0.00455,"71":0.0091,"72":0.0091,"84":0.00455,"85":0.66445,"86":0.48241,"87":0.01365,_:"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 73 74 75 76 77 78 79 80 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:{"17":0.0091,"18":0.02731,"80":0.0091,"83":0.01365,"84":0.0182,"85":0.02731,"86":0.02276,"88":0.0091,"89":0.00455,"92":0.00455,"93":0.00455,"95":0.00455,"96":0.01365,"97":0.0182,"98":0.02276,"99":0.06827,"100":0.57343,"101":5.6933,_:"12 13 14 15 16 79 81 87 90 91 94"},E:{"4":0,"13":0.05006,"14":0.33677,"15":0.10012,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00455,"10.1":0.01365,"11.1":0.03186,"12.1":0.07737,"13.1":0.34588,"14.1":1.07404,"15.1":0.19114,"15.2-15.3":0.20935,"15.4":3.12199,"15.5":0.2321},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.00822,"9.0-9.2":0.01644,"9.3":0.08494,"10.0-10.2":0.0274,"10.3":0.13974,"11.0-11.2":0.02466,"11.3-11.4":0.0411,"12.0-12.1":0.03288,"12.2-12.5":0.81927,"13.0-13.1":0.01918,"13.2":0.01918,"13.3":0.0822,"13.4-13.7":0.27126,"14.0-14.4":0.74529,"14.5-14.8":3.09624,"15.0-15.1":0.65213,"15.2-15.3":1.90707,"15.4":19.39946},P:{"4":0.11537,"5.0-5.4":0.01049,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01049,"12.0":0.02098,"13.0":0.05244,"14.0":0.06293,"15.0":0.04195,"16.0":1.40539},I:{"0":0,"3":0,"4":0.00567,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00283,"4.2-4.3":0.0085,"4.4":0,"4.4.3-4.4.4":0.05384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02276,"9":0.03641,"10":0.0091,"11":0.25486,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":22.24051},S:{"2.5":0},R:{_:"0"},M:{"0":0.36508},Q:{"10.4":0},O:{"0":0.03269},H:{"0":0.325}}; 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 657d8a8c858659..8e9433cd9bae45 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:{"48":0.00247,"52":0.00494,"56":0.00247,"78":0.01978,"79":0.00247,"80":0.00494,"81":0.00247,"82":0.00247,"83":0.00494,"84":0.00494,"85":0.00247,"87":0.00494,"88":0.00742,"89":0.00494,"90":0.00742,"91":0.01483,"92":0.00494,"93":0.00247,"94":0.00494,"95":0.00494,"96":0.00989,"97":0.01236,"98":0.28181,"99":0.89734,"100":0.00247,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 86 101 3.5 3.6"},D:{"22":0.00494,"34":0.02719,"38":0.07416,"47":0.0173,"49":0.01978,"51":0.00247,"53":0.01978,"55":0.00247,"56":0.01236,"57":0.00247,"60":0.02472,"61":0.00247,"62":0.00494,"63":0.00247,"65":0.00742,"66":0.00494,"67":0.00989,"68":0.00494,"69":0.00247,"70":0.00494,"71":0.00742,"72":0.00494,"73":0.00494,"74":0.00494,"75":0.00494,"76":0.00742,"77":0.00494,"78":0.01236,"79":0.22742,"80":0.03708,"81":0.04202,"83":0.03214,"84":0.03708,"85":0.03461,"86":0.04944,"87":0.07416,"88":0.02225,"89":0.01978,"90":0.00989,"91":0.03955,"92":0.03955,"93":0.01978,"94":0.0618,"95":0.0173,"96":0.09146,"97":0.11618,"98":0.35102,"99":2.77853,"100":11.98178,"101":0.1681,"102":0.00494,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 52 54 58 59 64 103 104"},F:{"28":0.00494,"36":0.01236,"40":0.00494,"46":0.02719,"77":0.00247,"84":0.05191,"85":0.22001,"86":0.00494,_:"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 78 79 80 81 82 83 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.00247,"18":0.00742,"84":0.00247,"91":0.00247,"94":0.00247,"96":0.00247,"97":0.00494,"98":0.01236,"99":0.26698,"100":1.6241,"101":0.02225,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 89 90 92 93 95"},E:{"4":0,"8":0.00989,"12":0.00247,"13":0.03708,"14":0.14832,"15":0.07169,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00247,"10.1":0.00742,"11.1":0.01978,"12.1":0.02472,"13.1":0.15326,"14.1":0.48946,"15.1":0.13596,"15.2-15.3":0.14585,"15.4":0.98633},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00284,"5.0-5.1":0,"6.0-6.1":0.00568,"7.0-7.1":0.01135,"8.1-8.4":0.01277,"9.0-9.2":0.00568,"9.3":0.10787,"10.0-10.2":0.00994,"10.3":0.06671,"11.0-11.2":0.01987,"11.3-11.4":0.02271,"12.0-12.1":0.01703,"12.2-12.5":0.33354,"13.0-13.1":0.01845,"13.2":0.01135,"13.3":0.04258,"13.4-13.7":0.14761,"14.0-14.4":0.38605,"14.5-14.8":1.30293,"15.0-15.1":0.6174,"15.2-15.3":4.63547,"15.4":6.41245},P:{"4":0.39032,"5.0-5.4":0.05127,"6.2-6.4":0.02056,"7.2-7.4":0.1333,"8.2":0.11279,"9.2":0.02051,"10.1":0.1542,"11.1-11.2":0.05127,"12.0":0.01027,"13.0":0.03081,"14.0":0.01027,"15.0":0.04109,"16.0":2.91715},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":9.39064,"4.4":0,"4.4.3-4.4.4":23.47661},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00786,"9":0.01179,"11":0.13361,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.46674},H:{"0":0.48464},L:{"0":19.26071},S:{"2.5":0},R:{_:"0"},M:{"0":0.39146},Q:{"10.4":0.01506}}; +module.exports={C:{"48":0.00248,"52":0.00744,"56":0.00248,"65":0.00248,"78":0.02728,"80":0.00496,"81":0.00992,"82":0.00496,"83":0.00496,"84":0.00248,"87":0.00248,"88":0.00744,"89":0.00496,"90":0.00496,"91":0.01488,"92":0.00496,"94":0.00248,"95":0.00496,"96":0.01736,"97":0.00496,"98":0.0124,"99":0.20832,"100":0.93,"101":0.00248,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 85 86 93 102 103 3.5 3.6"},D:{"22":0.00496,"34":0.03224,"38":0.07688,"47":0.01736,"48":0.00248,"49":0.02232,"51":0.00248,"53":0.01984,"55":0.00248,"56":0.00992,"57":0.00496,"60":0.03224,"61":0.00248,"62":0.00496,"65":0.00992,"66":0.00248,"67":0.0124,"68":0.00248,"69":0.00248,"70":0.00496,"71":0.00496,"72":0.00248,"73":0.00496,"74":0.00496,"75":0.00248,"76":0.00744,"77":0.00496,"78":0.01488,"79":0.23064,"80":0.03224,"81":0.03472,"83":0.04464,"84":0.08432,"85":0.05952,"86":0.07936,"87":0.08928,"88":0.02232,"89":0.01984,"90":0.00992,"91":0.03472,"92":0.03224,"93":0.00992,"94":0.062,"95":0.02232,"96":0.06944,"97":0.07688,"98":0.1116,"99":0.24304,"100":3.04792,"101":10.88224,"102":1.0788,"103":0.00992,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 52 54 58 59 63 64 104"},F:{"28":0.00744,"36":0.00992,"40":0.00248,"46":0.02728,"68":0.00248,"69":0.00248,"71":0.00496,"72":0.00248,"85":0.14136,"86":0.1612,"87":0.00744,_:"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 70 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:{"18":0.0124,"84":0.00496,"85":0.00496,"86":0.00496,"96":0.00248,"98":0.00496,"99":0.02976,"100":0.10664,"101":1.80296,_:"12 13 14 15 16 17 79 80 81 83 87 88 89 90 91 92 93 94 95 97"},E:{"4":0,"8":0.00992,"12":0.00248,"13":0.03968,"14":0.1488,"15":0.05456,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00248,"10.1":0.00496,"11.1":0.01984,"12.1":0.0248,"13.1":0.15128,"14.1":0.40424,"15.1":0.09424,"15.2-15.3":0.09424,"15.4":1.72112,"15.5":0.17856},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00148,"6.0-6.1":0.00593,"7.0-7.1":0.01186,"8.1-8.4":0.01335,"9.0-9.2":0.00593,"9.3":0.10529,"10.0-10.2":0.01038,"10.3":0.06376,"11.0-11.2":0.01928,"11.3-11.4":0.01779,"12.0-12.1":0.01483,"12.2-12.5":0.32772,"13.0-13.1":0.01779,"13.2":0.01928,"13.3":0.04152,"13.4-13.7":0.14236,"14.0-14.4":0.36183,"14.5-14.8":1.11217,"15.0-15.1":0.43745,"15.2-15.3":0.96685,"15.4":11.13061},P:{"4":0.39904,"5.0-5.4":0.02054,"6.2-6.4":0.04159,"7.2-7.4":0.13352,"8.2":0.21569,"9.2":0.02054,"10.1":0.01023,"11.1-11.2":0.0719,"12.0":0.02046,"13.0":0.04093,"14.0":0.02046,"15.0":0.0307,"16.0":0.99249},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":7.69946,"4.4":0,"4.4.3-4.4.4":23.09837},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00815,"9":0.01222,"10":0.00407,"11":0.14667,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.44362},Q:{"10.4":0.01504},O:{"0":0.4737},H:{"0":0.50541},L:{"0":19.81994},S:{"2.5":0}}; 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 eaa0728b9eb05d..3f63180020f74f 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 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 3.5 3.6"},D:{"99":67.85779,"100":28.57221,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 101 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1 15.2-15.3 15.4"},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":3.57,"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},P:{"4":0.05579,"5.0-5.4":0.01116,"6.2-6.4":0.04084,"7.2-7.4":0.05579,"8.2":0.01011,"9.2":0.02062,"10.1":0.03034,"11.1-11.2":0.06695,"12.0":0.02232,"13.0":0.02232,"14.0":0.04463,"15.0":0.04463,"16.0":0.70298},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:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 3.5 3.6"},D:{"101":94.12,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1 15.2-15.3 15.4 15.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0},P:{"4":0.0923,"5.0-5.4":0.02027,"6.2-6.4":0.02046,"7.2-7.4":0.06808,"8.2":0.01022,"9.2":0.02051,"10.1":0.03041,"11.1-11.2":0.09077,"12.0":0.01135,"13.0":0.02269,"14.0":0.02269,"15.0":0.03404,"16.0":0.35175},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.12316,_:"11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":5.88},S:{"2.5":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 7cd97066133786..64c5a7b7b967b5 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:{"52":0.16291,"60":0.11036,"66":0.02102,"68":0.01577,"71":0.00526,"72":0.00526,"76":0.00526,"77":0.01051,"78":0.09459,"83":0.02102,"88":0.06306,"89":0.00526,"91":0.14714,"92":0.01051,"93":0.01051,"94":0.00526,"95":0.04204,"96":0.11036,"97":0.05255,"98":2.36475,"99":4.54558,"100":0.01051,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 73 74 75 79 80 81 82 84 85 86 87 90 101 3.5 3.6"},D:{"49":0.06832,"51":0.03153,"63":0.00526,"67":0.01051,"69":0.00526,"70":0.00526,"73":0.01051,"76":0.02628,"77":0.02628,"78":0.01577,"79":0.06306,"80":0.02628,"81":0.01051,"83":0.03153,"84":0.05781,"85":0.03679,"86":0.01577,"87":0.03679,"88":0.02628,"89":0.02628,"90":0.07883,"91":0.07883,"92":0.12087,"93":0.03679,"94":0.02102,"95":0.02628,"96":0.13138,"97":0.09985,"98":0.35209,"99":6.18514,"100":25.68644,"101":0.26275,"102":0.01051,"103":0.00526,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 71 72 74 75 104"},F:{"28":0.04204,"36":0.00526,"46":0.01051,"83":0.00526,"84":0.25224,"85":0.89335,"86":0.01051,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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.01577,"87":0.01577,"92":0.02102,"96":0.01051,"97":0.03153,"98":0.03153,"99":0.79876,"100":4.31961,"101":0.03679,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 88 89 90 91 93 94 95"},E:{"4":0,"5":0.02102,"12":0.00526,"13":0.02628,"14":0.14714,"15":0.06832,_:"0 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00526,"11.1":0.02628,"12.1":0.03153,"13.1":0.24173,"14.1":0.43617,"15.1":0.1051,"15.2-15.3":0.24173,"15.4":0.83555},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0009,"6.0-6.1":0,"7.0-7.1":0.00902,"8.1-8.4":0.0009,"9.0-9.2":0,"9.3":0.02614,"10.0-10.2":0.0018,"10.3":0.05139,"11.0-11.2":0.01893,"11.3-11.4":0.00631,"12.0-12.1":0.01172,"12.2-12.5":0.15597,"13.0-13.1":0.00992,"13.2":0.00631,"13.3":0.01533,"13.4-13.7":0.09737,"14.0-14.4":0.32726,"14.5-14.8":1.01513,"15.0-15.1":0.59321,"15.2-15.3":3.40871,"15.4":3.25635},P:{"4":0.06251,"5.0-5.4":0.05127,"6.2-6.4":0.02056,"7.2-7.4":0.1333,"8.2":0.11279,"9.2":0.02051,"10.1":0.1542,"11.1-11.2":0.04167,"12.0":0.02084,"13.0":0.06251,"14.0":0.14586,"15.0":0.07293,"16.0":3.1152},I:{"0":0,"3":0,"4":0.00252,"2.1":0,"2.2":0.00126,"2.3":0.00252,"4.1":0.01007,"4.2-4.3":0.00504,"4.4":0,"4.4.3-4.4.4":0.04029},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01051,"11":0.28377,_:"6 7 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.01424},H:{"0":0.26061},L:{"0":30.38941},S:{"2.5":0},R:{_:"0"},M:{"0":0.60274},Q:{"10.4":0}}; +module.exports={C:{"52":0.14693,"60":0.02177,"66":0.01633,"68":0.01633,"72":0.01088,"73":0.02177,"76":0.00544,"78":0.11972,"83":0.01088,"88":0.04354,"89":0.00544,"91":0.13605,"92":0.00544,"95":0.03265,"96":0.04354,"97":0.03809,"98":0.07619,"99":1.11017,"100":5.43112,"101":0.02177,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 74 75 77 79 80 81 82 84 85 86 87 90 93 94 102 103 3.5 3.6"},D:{"49":0.07075,"51":0.03265,"63":0.01088,"67":0.00544,"69":0.02177,"70":0.00544,"76":0.02721,"77":0.05986,"78":0.01633,"79":0.05442,"80":0.03809,"81":0.01088,"83":0.01633,"84":0.04354,"85":0.02721,"86":0.02177,"87":0.04898,"88":0.03809,"89":0.02721,"90":0.05442,"91":0.05986,"92":0.03265,"93":0.01633,"94":0.02721,"95":0.02177,"96":0.08163,"97":0.05442,"98":0.1687,"99":0.25577,"100":6.68278,"101":25.01687,"102":2.57407,"103":0.00544,"104":0.05442,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 71 72 73 74 75"},F:{"28":0.01633,"85":0.7129,"86":0.87072,"87":0.02721,_:"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:{"18":0.01633,"87":0.01088,"92":0.00544,"96":0.00544,"97":0.01088,"98":0.01088,"99":0.04354,"100":0.28298,"101":4.93045,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 88 89 90 91 93 94 95"},E:{"4":0,"5":0.02177,"13":0.04354,"14":0.11972,"15":0.05442,_:"0 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00544,"11.1":0.05442,"12.1":0.03265,"13.1":0.1687,"14.1":0.41359,"15.1":0.08707,"15.2-15.3":0.09251,"15.4":1.20268,"15.5":0.16326},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.00105,"9.0-9.2":0,"9.3":0.02718,"10.0-10.2":0.00105,"10.3":0.04599,"11.0-11.2":0.00732,"11.3-11.4":0.01254,"12.0-12.1":0.00836,"12.2-12.5":0.13903,"13.0-13.1":0.01568,"13.2":0.00418,"13.3":0.01673,"13.4-13.7":0.07004,"14.0-14.4":0.27597,"14.5-14.8":0.92722,"15.0-15.1":0.49235,"15.2-15.3":1.15823,"15.4":7.23792},P:{"4":0.05224,"5.0-5.4":0.02054,"6.2-6.4":0.04159,"7.2-7.4":0.13352,"8.2":0.21569,"9.2":0.02054,"10.1":0.01023,"11.1-11.2":0.04179,"12.0":0.01045,"13.0":0.05224,"14.0":0.09403,"15.0":0.06269,"16.0":1.28507},I:{"0":0,"3":0,"4":0.00556,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00667,"4.2-4.3":0.00222,"4.4":0,"4.4.3-4.4.4":0.03112},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00544,"11":0.2721,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.48304},Q:{"10.4":0},O:{"0":0.01367},H:{"0":0.25454},L:{"0":31.39121},S:{"2.5":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 f895a7512f6cd1..7b90f03feb01d2 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:{"33":0.00435,"52":0.14352,"56":0.01305,"68":0.02175,"72":0.00435,"78":0.03044,"80":0.0087,"81":0.01305,"84":0.01305,"87":0.00435,"88":0.01305,"89":0.0087,"90":0.0087,"91":0.10003,"92":0.01305,"93":0.0087,"94":0.01305,"95":0.0174,"96":0.08263,"97":0.06524,"98":1.5091,"99":4.20113,"100":0.02175,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 79 82 83 85 86 101 3.5 3.6"},D:{"34":0.00435,"38":0.08263,"43":0.00435,"47":0.01305,"49":0.11307,"53":0.02609,"63":0.11307,"65":0.0087,"67":0.00435,"68":0.00435,"69":0.06089,"70":0.00435,"72":0.02609,"73":0.00435,"74":0.00435,"75":0.00435,"76":0.00435,"79":0.35227,"80":0.0087,"81":0.06958,"83":0.03479,"84":0.02609,"85":0.0174,"86":0.03479,"87":0.03044,"88":0.0174,"89":0.03914,"90":0.0174,"91":0.03044,"92":0.03914,"93":0.02175,"94":0.02175,"95":0.02175,"96":0.09568,"97":0.10003,"98":0.29138,"99":4.45773,"100":20.19676,"101":0.26529,"102":0.00435,_:"4 5 6 7 8 9 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 66 71 77 78 103 104"},F:{"28":0.02175,"36":0.02609,"40":0.0087,"46":0.02175,"69":0.0087,"77":0.00435,"78":0.00435,"79":0.0087,"82":0.0087,"83":0.0087,"84":0.52188,"85":2.05708,"86":0.03044,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 80 81 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.0087,"18":0.03044,"83":0.0087,"87":0.01305,"89":0.00435,"91":0.00435,"92":0.0087,"94":0.00435,"96":0.0087,"97":0.03914,"98":0.04349,"99":0.50883,"100":3.10519,"101":0.04784,_:"12 13 14 15 16 79 80 81 84 85 86 88 90 93 95"},E:{"4":0,"12":0.00435,"13":0.0174,"14":0.10438,"15":0.06524,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.0087,"12.1":0.03044,"13.1":0.16526,"14.1":0.29573,"15.1":0.15222,"15.2-15.3":0.13917,"15.4":0.63495},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0273,"6.0-6.1":0,"7.0-7.1":0.00101,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0364,"10.0-10.2":0,"10.3":0.08089,"11.0-11.2":0.00506,"11.3-11.4":0.00708,"12.0-12.1":0.0091,"12.2-12.5":0.24974,"13.0-13.1":0.00607,"13.2":0.00809,"13.3":0.02022,"13.4-13.7":0.09302,"14.0-14.4":0.2821,"14.5-14.8":0.9828,"15.0-15.1":0.47623,"15.2-15.3":3.67436,"15.4":4.14453},P:{"4":0.42825,"5.0-5.4":0.05127,"6.2-6.4":0.02056,"7.2-7.4":0.1333,"8.2":0.11279,"9.2":0.02051,"10.1":0.1542,"11.1-11.2":0.05223,"12.0":0.01045,"13.0":0.05223,"14.0":0.06267,"15.0":0.04178,"16.0":2.24571},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00208,"4.2-4.3":0.01353,"4.4":0,"4.4.3-4.4.4":0.0635},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17396,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.03956},H:{"0":0.49755},L:{"0":35.93392},S:{"2.5":0},R:{_:"0"},M:{"0":0.29385},Q:{"10.4":0}}; +module.exports={C:{"33":0.00477,"52":0.15277,"56":0.01432,"57":0.00955,"68":0.02387,"74":0.00477,"75":0.00477,"78":0.03819,"79":0.00955,"81":0.00477,"82":0.00955,"84":0.00955,"88":0.00955,"89":0.00955,"90":0.00955,"91":0.1098,"92":0.00955,"94":0.00955,"95":0.01432,"96":0.02864,"97":0.03342,"98":0.10025,"99":1.10279,"100":4.75968,"101":0.0191,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 76 77 80 83 85 86 87 93 102 103 3.5 3.6"},D:{"34":0.00477,"38":0.06206,"43":0.00477,"47":0.00955,"49":0.14799,"53":0.02864,"63":0.1098,"65":0.00477,"66":0.00477,"69":0.10025,"70":0.00477,"71":0.00477,"72":0.03342,"74":0.00477,"75":0.00477,"76":0.0191,"79":0.26734,"80":0.00955,"81":0.02864,"83":0.05251,"84":0.03819,"85":0.0191,"86":0.06206,"87":0.04774,"88":0.00955,"89":0.04774,"90":0.02864,"91":0.02387,"92":0.03342,"93":0.0191,"94":0.10503,"95":0.01432,"96":0.06684,"97":0.04774,"98":0.1289,"99":0.27689,"100":5.17979,"101":20.99605,"102":1.99076,"103":0.00955,_:"4 5 6 7 8 9 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 67 68 73 77 78 104"},F:{"28":0.0191,"36":0.00955,"40":0.00955,"46":0.00955,"69":0.01432,"77":0.00477,"79":0.00477,"80":0.00955,"82":0.00477,"84":0.01432,"85":1.29853,"86":1.57065,"87":0.04297,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 78 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.02387,"87":0.00955,"89":0.00477,"91":0.00955,"92":0.00955,"96":0.00955,"97":0.01432,"98":0.0191,"99":0.05251,"100":0.2578,"101":3.78101,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 88 90 93 94 95"},E:{"4":0,"13":0.00955,"14":0.11458,"15":0.06206,_:"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.01432,"12.1":0.02864,"13.1":0.15277,"14.1":0.28167,"15.1":0.13367,"15.2-15.3":0.10025,"15.4":1.0646,"15.5":0.15277},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01669,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01892,"10.0-10.2":0,"10.3":0.08234,"11.0-11.2":0.00445,"11.3-11.4":0.01001,"12.0-12.1":0.00779,"12.2-12.5":0.21808,"13.0-13.1":0.00445,"13.2":0.01446,"13.3":0.01669,"13.4-13.7":0.08901,"14.0-14.4":0.26815,"14.5-14.8":0.82225,"15.0-15.1":0.35382,"15.2-15.3":0.86898,"15.4":8.32484},P:{"4":0.30195,"5.0-5.4":0.02054,"6.2-6.4":0.04159,"7.2-7.4":0.13352,"8.2":0.21569,"9.2":0.02054,"10.1":0.01023,"11.1-11.2":0.03124,"12.0":0.02082,"13.0":0.04165,"14.0":0.05206,"15.0":0.03124,"16.0":0.83297},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.004,"4.2-4.3":0.01119,"4.4":0,"4.4.3-4.4.4":0.05275},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21006,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.27175},Q:{"10.4":0},O:{"0":0.04703},H:{"0":0.5195},L:{"0":36.38095},S:{"2.5":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 8b1456e51a143f..b092b0ccd08004 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:{"27":0.0018,"30":0.0018,"47":0.01616,"56":0.00539,"72":0.01257,"78":0.0018,"89":0.0018,"91":0.01078,"94":0.0018,"95":0.01437,"97":0.01078,"98":0.21911,"99":0.5406,"100":0.06106,_:"2 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 96 101 3.5 3.6"},D:{"22":0.00359,"26":0.00359,"37":0.00359,"43":0.00539,"46":0.0018,"49":0.01078,"51":0.0018,"55":0.00718,"56":0.00539,"58":0.0018,"60":0.01078,"63":0.00359,"64":0.02874,"65":0.00539,"69":0.0018,"72":0.05747,"74":0.00898,"75":0.02335,"76":0.02694,"78":0.00539,"79":0.0431,"80":0.01078,"81":0.01257,"83":0.00539,"84":0.00359,"86":0.01616,"87":0.03772,"88":0.00539,"89":0.00539,"90":0.01257,"91":0.01616,"92":0.01437,"93":0.03772,"94":0.01437,"95":0.01437,"96":0.03592,"97":0.09878,"98":0.07364,"99":1.06503,"100":4.52233,"101":0.03772,"102":0.00359,_:"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 34 35 36 38 39 40 41 42 44 45 47 48 50 52 53 54 57 59 61 62 66 67 68 70 71 73 77 85 103 104"},F:{"36":0.00539,"42":0.05029,"51":0.0018,"60":0.0018,"64":0.0018,"65":0.00359,"66":0.0018,"67":0.00359,"76":0.0018,"79":0.00359,"82":0.00898,"83":0.01796,"84":0.19397,"85":0.5855,"86":0.02514,"87":0.00359,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 62 63 68 69 70 71 72 73 74 75 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.04849,"13":0.03053,"14":0.01976,"15":0.01976,"16":0.01796,"17":0.02335,"18":0.09878,"84":0.01257,"85":0.01796,"87":0.00359,"88":0.00359,"89":0.01437,"90":0.00359,"91":0.0018,"92":0.05029,"93":0.0018,"94":0.00898,"95":0.00718,"96":0.01257,"97":0.01796,"98":0.05208,"99":0.26401,"100":1.4799,"101":0.01976,_:"79 80 81 83 86"},E:{"4":0,"11":0.00359,"14":0.01616,"15":0.00718,_:"0 5 6 7 8 9 10 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00539,"12.1":0.00539,"13.1":0.04131,"14.1":0.07543,"15.1":0.04131,"15.2-15.3":0.02874,"15.4":0.06286},G:{"8":0.00138,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00207,"6.0-6.1":0,"7.0-7.1":0.02757,"8.1-8.4":0.0193,"9.0-9.2":0.00276,"9.3":0.05721,"10.0-10.2":0,"10.3":0.04687,"11.0-11.2":0.02757,"11.3-11.4":0.01448,"12.0-12.1":0.07376,"12.2-12.5":0.56042,"13.0-13.1":0.07996,"13.2":0.01861,"13.3":0.08134,"13.4-13.7":0.14889,"14.0-14.4":1.4207,"14.5-14.8":1.05191,"15.0-15.1":0.75137,"15.2-15.3":1.44828,"15.4":1.05605},P:{"4":0.48193,"5.0-5.4":0.05127,"6.2-6.4":0.02056,"7.2-7.4":0.1333,"8.2":0.11279,"9.2":0.02051,"10.1":0.1542,"11.1-11.2":0.05127,"12.0":0.09252,"13.0":0.02051,"14.0":0.08203,"15.0":0.04102,"16.0":0.687},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00199,"4.2-4.3":0.00256,"4.4":0,"4.4.3-4.4.4":0.05287},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00844,"11":0.07597,_:"6 7 8 9 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.50935},H:{"0":20.51019},L:{"0":56.62705},S:{"2.5":0.0082},R:{_:"0"},M:{"0":0.08203},Q:{"10.4":0}}; +module.exports={C:{"25":0.00394,"35":0.00197,"43":0.00197,"44":0.00197,"46":0.00591,"47":0.00788,"53":0.00197,"72":0.00788,"73":0.00197,"77":0.00394,"78":0.00591,"80":0.00197,"83":0.00394,"91":0.00986,"95":0.00591,"96":0.01774,"97":0.00394,"98":0.00788,"99":0.23258,"100":0.65043,"101":0.07884,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 45 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 79 81 82 84 85 86 87 88 89 90 92 93 94 102 103 3.5 3.6"},D:{"11":0.00788,"22":0.00197,"37":0.00197,"38":0.00591,"43":0.00197,"46":0.00197,"48":0.00788,"49":0.00591,"50":0.00591,"51":0.00788,"53":0.00394,"60":0.02168,"63":0.00197,"64":0.00591,"65":0.00591,"67":0.00394,"68":0.00394,"70":0.00197,"71":0.00394,"72":0.12614,"73":0.00197,"74":0.00394,"75":0.02957,"76":0.0138,"77":0.00197,"78":0.00197,"79":0.02759,"80":0.00788,"81":0.00986,"83":0.00591,"84":0.00197,"85":0.00591,"86":0.01774,"87":0.02759,"88":0.00394,"89":0.00591,"90":0.0138,"91":0.01774,"92":0.04928,"93":0.03351,"94":0.04533,"95":0.02562,"96":0.03351,"97":0.04928,"98":0.0473,"99":0.17148,"100":1.47431,"101":4.55892,"102":0.54991,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 44 45 47 52 54 55 56 57 58 59 61 62 66 69 103 104"},F:{"37":0.00394,"42":0.00591,"74":0.00197,"79":0.01971,"82":0.00394,"83":0.00394,"84":0.00591,"85":0.25229,"86":0.4691,"87":0.03351,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.04336,"13":0.03548,"14":0.02168,"15":0.00986,"16":0.01183,"17":0.00197,"18":0.09658,"84":0.02168,"85":0.00788,"89":0.02759,"90":0.01183,"92":0.05125,"94":0.00197,"95":0.00197,"96":0.00788,"97":0.02562,"98":0.02365,"99":0.03745,"100":0.16556,"101":1.60834,_:"79 80 81 83 86 87 88 91 93"},E:{"4":0,"12":0.00197,"13":0.00197,"14":0.01183,"15":0.00197,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01183,"12.1":0.00591,"13.1":0.02759,"14.1":0.04139,"15.1":0.00986,"15.2-15.3":0.0138,"15.4":0.09658,"15.5":0.03154},G:{"8":0.00249,"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.01243,"8.1-8.4":0,"9.0-9.2":0.00166,"9.3":0.08453,"10.0-10.2":0.00083,"10.3":0.05553,"11.0-11.2":0.0116,"11.3-11.4":0.02652,"12.0-12.1":0.0489,"12.2-12.5":0.59339,"13.0-13.1":0.06547,"13.2":0.02818,"13.3":0.13923,"13.4-13.7":0.12183,"14.0-14.4":1.55309,"14.5-14.8":1.30861,"15.0-15.1":0.79727,"15.2-15.3":1.09148,"15.4":2.3429},P:{"4":0.1746,"5.0-5.4":0.02054,"6.2-6.4":0.04159,"7.2-7.4":0.13352,"8.2":0.21569,"9.2":0.02054,"10.1":0.17677,"11.1-11.2":0.0719,"12.0":0.09358,"13.0":0.09244,"14.0":0.0719,"15.0":0.04108,"16.0":0.40056},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00115,"4.2-4.3":0.00115,"4.4":0,"4.4.3-4.4.4":0.02982},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00719,"10":0.01199,"11":0.06952,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.20073},Q:{"10.4":0},O:{"0":1.51748},H:{"0":17.17902},L:{"0":57.34772},S:{"2.5":0.04015}}; 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 7e80d0edaacb02..c93a64f8f86ff3 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:{"48":0.02742,"52":0.11516,"56":0.04936,"65":0.00548,"78":0.07678,"88":0.00548,"89":0.08774,"91":0.04387,"94":0.01097,"95":0.01645,"96":0.02194,"97":0.17549,"98":1.87553,"99":2.64877,"100":0.01645,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 93 101 3.5 3.6"},D:{"49":0.01645,"53":0.04936,"63":0.02194,"67":0.00548,"74":0.00548,"76":0.42227,"79":1.4039,"86":0.01097,"87":0.08226,"89":0.01097,"91":0.01645,"93":0.01645,"96":0.07678,"97":0.04387,"98":0.61969,"99":5.07818,"100":30.8804,"101":0.72937,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 68 69 70 71 72 73 75 77 78 80 81 83 84 85 88 90 92 94 95 102 103 104"},F:{"36":0.01097,"84":0.09323,"85":0.26872,"86":0.02742,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.01645,"86":0.00548,"90":0.01645,"94":0.10968,"95":0.01645,"96":0.00548,"99":0.34549,"100":4.59011,"101":0.00548,_:"12 13 14 15 16 18 79 80 81 83 84 85 87 88 89 91 92 93 97 98"},E:{"4":0,"11":0.01097,"13":0.05484,"14":0.17549,"15":0.17549,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00548,"11.1":0.26323,"12.1":0.04936,"13.1":0.24678,"14.1":0.34549,"15.1":0.04387,"15.2-15.3":0.15355,"15.4":1.30519},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.00564,"9.0-9.2":0.01127,"9.3":0.01409,"10.0-10.2":0,"10.3":0.00845,"11.0-11.2":0.05917,"11.3-11.4":0.00282,"12.0-12.1":0.01972,"12.2-12.5":0.42969,"13.0-13.1":0,"13.2":0.00282,"13.3":0.01972,"13.4-13.7":0.16483,"14.0-14.4":0.79739,"14.5-14.8":0.88756,"15.0-15.1":0.26768,"15.2-15.3":3.01347,"15.4":8.38108},P:{"4":0.05191,"5.0-5.4":0.01116,"6.2-6.4":0.01036,"7.2-7.4":0.6422,"8.2":0.01011,"9.2":0.09322,"10.1":0.01036,"11.1-11.2":0.03115,"12.0":0.02076,"13.0":0.37289,"14.0":0.06229,"15.0":0.03115,"16.0":2.61621},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.02258},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06032,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.0342},L:{"0":28.75438},S:{"2.5":0},R:{_:"0"},M:{"0":0.11742},Q:{"10.4":0}}; +module.exports={C:{"48":0.01105,"52":0.05524,"56":0.02762,"65":0.01105,"78":0.06629,"81":0.01105,"89":0.01105,"91":0.03867,"93":0.00552,"95":0.00552,"96":0.00552,"99":2.32008,"100":2.46923,"101":0.04972,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 88 90 92 94 97 98 102 103 3.5 3.6"},D:{"49":0.01657,"53":0.01657,"66":0.01105,"75":0.01657,"76":0.14362,"79":0.86174,"81":0.00552,"84":0.06076,"87":0.02762,"89":0.01105,"91":0.02762,"95":0.01105,"96":0.03867,"97":0.01105,"98":1.15452,"99":0.12153,"100":4.65121,"101":28.23316,"102":3.80051,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 77 78 80 83 85 86 88 90 92 93 94 103 104"},F:{"85":0.04419,"86":0.41982,"87":0.01657,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00552,"18":0.01657,"95":0.01657,"99":0.0221,"100":0.12153,"101":5.62343,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98"},E:{"4":0,"14":0.16572,"15":0.60764,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.08838,"11.1":0.14915,"12.1":0.06076,"13.1":0.18782,"14.1":0.53583,"15.1":0.05524,"15.2-15.3":0.17124,"15.4":1.11585,"15.5":0.18229},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.00162,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02917,"10.0-10.2":0,"10.3":0.05834,"11.0-11.2":0.00162,"11.3-11.4":0.00162,"12.0-12.1":0.00486,"12.2-12.5":0.75357,"13.0-13.1":0,"13.2":0.01621,"13.3":0,"13.4-13.7":0.05996,"14.0-14.4":0.54128,"14.5-14.8":1.47312,"15.0-15.1":0.14261,"15.2-15.3":0.39704,"15.4":12.71676},P:{"4":0.06373,"5.0-5.4":0.02027,"6.2-6.4":0.01043,"7.2-7.4":0.58467,"8.2":0.01022,"9.2":0.08206,"10.1":0.04171,"11.1-11.2":0.12309,"12.0":0.05129,"13.0":0.01062,"14.0":0.01062,"15.0":0.15386,"16.0":0.55234},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.00448},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01105,"11":0.11048,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.29996},Q:{"10.4":0},O:{"0":0},H:{"0":0.01272},L:{"0":26.53662},S:{"2.5":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 c31da6597db5e7..31bef3ef14453d 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:{"34":0.0047,"35":0.0094,"36":0.0047,"41":0.00235,"42":0.01176,"43":0.0047,"47":0.00235,"48":0.00235,"49":0.0047,"52":0.03997,"57":0.01411,"58":0.01881,"60":0.00235,"64":0.00235,"70":0.03527,"72":0.0047,"78":0.04232,"79":0.0047,"80":0.03056,"84":0.00705,"85":0.00705,"86":0.00235,"88":0.00705,"89":0.01176,"90":0.00705,"91":0.02351,"94":0.01411,"95":0.0047,"96":0.0047,"97":0.01881,"98":0.45139,"99":1.38709,"100":0.00705,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 44 45 46 50 51 53 54 55 56 59 61 62 63 65 66 67 68 69 71 73 74 75 76 77 81 82 83 87 92 93 101 3.5 3.6"},D:{"37":0.00235,"38":0.00235,"40":0.0047,"49":0.03997,"50":0.0047,"56":0.0047,"60":0.00235,"62":0.00235,"63":0.01176,"65":0.0094,"67":0.0047,"69":0.01646,"70":0.00235,"71":0.00235,"72":0.0047,"73":0.00235,"74":0.0094,"75":0.0094,"76":0.01176,"77":0.0094,"78":0.00705,"79":0.02821,"80":0.0094,"81":0.01411,"83":0.0047,"84":0.0047,"85":0.03997,"86":0.02351,"87":0.02351,"88":0.01646,"89":0.01411,"90":0.0094,"91":0.04702,"92":0.07758,"93":0.02351,"94":0.0094,"95":0.03291,"96":0.09874,"97":0.15517,"98":0.1058,"99":1.6551,"100":9.59443,"101":0.15752,"102":0.0047,_:"4 5 6 7 8 9 10 11 12 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 41 42 43 44 45 46 47 48 51 52 53 54 55 57 58 59 61 64 66 68 103 104"},F:{"28":0.00235,"83":0.00235,"84":0.07053,"85":0.42083,"86":0.0047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 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.01646,"13":0.01176,"14":0.00705,"15":0.00705,"16":0.01881,"17":0.0094,"18":0.05407,"84":0.0094,"85":0.00705,"87":0.0094,"89":0.0047,"91":0.00235,"92":0.01411,"94":0.00235,"95":0.00235,"96":0.02351,"97":0.0094,"98":0.07758,"99":0.3597,"100":2.01011,"101":0.02586,_:"79 80 81 83 86 88 90 93"},E:{"4":0,"6":0.00235,"10":0.00705,"12":0.00705,"13":0.0094,"14":0.03762,"15":0.01411,_:"0 5 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01411,"11.1":0.02351,"12.1":0.02586,"13.1":0.05878,"14.1":0.07758,"15.1":0.02116,"15.2-15.3":0.02351,"15.4":0.13871},G:{"8":0.00173,"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.03281,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08289,"10.0-10.2":0.00863,"10.3":0.1865,"11.0-11.2":0.1675,"11.3-11.4":0.06562,"12.0-12.1":0.10706,"12.2-12.5":1.89089,"13.0-13.1":0.05353,"13.2":0.06562,"13.3":0.1865,"13.4-13.7":0.56122,"14.0-14.4":1.7752,"14.5-14.8":3.01162,"15.0-15.1":1.39184,"15.2-15.3":4.19105,"15.4":3.48132},P:{"4":0.37516,"5.0-5.4":0.02054,"6.2-6.4":0.03042,"7.2-7.4":0.52726,"8.2":0.01011,"9.2":0.03042,"10.1":0.04056,"11.1-11.2":0.16223,"12.0":0.16223,"13.0":0.14195,"14.0":0.18251,"15.0":0.14195,"16.0":1.78456},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.00202,"4.4":0,"4.4.3-4.4.4":0.04311},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18573,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.0153},O:{"0":0.04589},H:{"0":0.39823},L:{"0":59.36568},S:{"2.5":0.03824},R:{_:"0"},M:{"0":0.14531},Q:{"10.4":0}}; +module.exports={C:{"35":0.01283,"36":0.00428,"41":0.00428,"42":0.0107,"43":0.00428,"48":0.00428,"49":0.00428,"52":0.02353,"57":0.00428,"58":0.00428,"60":0.00428,"64":0.00214,"70":0.0385,"72":0.00856,"76":0.00214,"78":0.04492,"79":0.0107,"80":0.01711,"81":0.00214,"84":0.00642,"85":0.00856,"86":0.00214,"88":0.00642,"89":0.00856,"91":0.02353,"92":0.00214,"94":0.00856,"95":0.00856,"96":0.00856,"97":0.00428,"98":0.01283,"99":0.32941,"100":1.5358,"101":0.0107,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 40 44 45 46 47 50 51 53 54 55 56 59 61 62 63 65 66 67 68 69 71 73 74 75 77 82 83 87 90 93 102 103 3.5 3.6"},D:{"11":0.00214,"33":0.00214,"43":0.00214,"49":0.04064,"50":0.00428,"56":0.00214,"60":0.00214,"63":0.00428,"64":0.00428,"65":0.0107,"67":0.00428,"69":0.04278,"72":0.00428,"74":0.00642,"75":0.0107,"76":0.0107,"77":0.00642,"78":0.00214,"79":0.03636,"80":0.00642,"81":0.01283,"83":0.00428,"84":0.00856,"85":0.00856,"86":0.02139,"87":0.02139,"88":0.0107,"89":0.00856,"90":0.00642,"91":0.02995,"92":0.04064,"93":0.01711,"94":0.0107,"95":0.02139,"96":0.0492,"97":0.10909,"98":0.08128,"99":0.08128,"100":1.69195,"101":8.20093,"102":0.75079,"103":0.00428,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 51 52 53 54 55 57 58 59 61 62 66 68 70 71 73 104"},F:{"79":0.00428,"84":0.00214,"85":0.19037,"86":0.27165,"87":0.01497,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01711,"13":0.00856,"14":0.00428,"15":0.00856,"16":0.00856,"17":0.01711,"18":0.0492,"84":0.01283,"85":0.00428,"87":0.01711,"89":0.00428,"92":0.01925,"94":0.00214,"95":0.00214,"96":0.0107,"97":0.0107,"98":0.04064,"99":0.02781,"100":0.1647,"101":1.91013,_:"79 80 81 83 86 88 90 91 93"},E:{"4":0,"6":0.00428,"10":0.00856,"11":0.00214,"12":0.0107,"13":0.00642,"14":0.02781,"15":0.00642,_:"0 5 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.00214,"10.1":0.0107,"11.1":0.02139,"12.1":0.01711,"13.1":0.05134,"14.1":0.06845,"15.1":0.01711,"15.2-15.3":0.01711,"15.4":0.24385,"15.5":0.03209},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.03095,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09112,"10.0-10.2":0.00172,"10.3":0.19255,"11.0-11.2":0.12722,"11.3-11.4":0.0533,"12.0-12.1":0.0808,"12.2-12.5":1.46822,"13.0-13.1":0.03954,"13.2":0.0533,"13.3":0.20459,"13.4-13.7":0.42121,"14.0-14.4":1.53355,"14.5-14.8":2.44474,"15.0-15.1":1.14672,"15.2-15.3":1.89115,"15.4":7.40127},P:{"4":0.43769,"5.0-5.4":0.01045,"6.2-6.4":0.01043,"7.2-7.4":0.47841,"8.2":0.01022,"9.2":0.03054,"10.1":0.03054,"11.1-11.2":0.18322,"12.0":0.11197,"13.0":0.11197,"14.0":0.13233,"15.0":0.08143,"16.0":0.88557},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00105,"4.2-4.3":0.00228,"4.4":0,"4.4.3-4.4.4":0.05169},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19679,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.12576},Q:{"10.4":0},O:{"0":0.04716},H:{"0":0.27533},L:{"0":61.46514},S:{"2.5":0.02358}}; 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 7ffc2e8068df91..60e9f6a5ee31e2 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:{"87":0.02151,"91":0.01173,"94":0.00196,"95":0.00196,"96":0.01369,"97":0.01173,"98":0.21505,"99":0.44574,"100":0.15054,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 92 93 101 3.5 3.6"},D:{"38":0.00782,"39":0.00196,"43":0.0176,"45":0.00196,"49":0.01369,"63":0.00587,"64":0.00782,"65":0.00391,"66":0.01564,"68":0.00391,"70":0.02542,"71":0.00782,"72":0.00587,"73":0.00196,"76":0.00391,"77":0.00196,"78":0.00391,"79":0.04301,"80":0.01173,"81":0.03128,"84":0.00196,"85":0.00587,"86":0.01173,"87":0.0567,"88":0.00587,"89":0.00587,"90":0.00978,"91":0.01955,"92":0.0176,"93":0.02346,"94":0.0567,"95":0.0567,"96":0.04692,"97":0.08993,"98":0.10753,"99":2.27953,"100":10.83657,"101":0.12708,"102":0.0176,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 44 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 67 69 74 75 83 103 104"},F:{"83":0.00782,"84":0.04301,"85":0.25024,"86":0.00782,_:"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 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.02151,"13":0.00391,"14":0.00782,"15":0.00391,"16":0.00587,"17":0.00391,"18":0.05474,"84":0.01955,"85":0.01173,"89":0.00782,"90":0.01173,"91":0.00196,"92":0.0176,"94":0.00391,"95":0.00587,"96":0.01369,"97":0.01955,"98":0.02737,"99":0.2913,"100":1.61483,"101":0.01955,_:"79 80 81 83 86 87 88 93"},E:{"4":0,"13":0.01173,"14":0.04888,"15":0.00587,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.09189,"11.1":0.00391,"12.1":0.00587,"13.1":0.02346,"14.1":0.10362,"15.1":0.05083,"15.2-15.3":0.02542,"15.4":0.07038},G:{"8":0.00177,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00621,"6.0-6.1":0,"7.0-7.1":0.00621,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07011,"10.0-10.2":0,"10.3":0.02485,"11.0-11.2":0.0071,"11.3-11.4":0.0213,"12.0-12.1":0.03195,"12.2-12.5":0.92561,"13.0-13.1":0.03106,"13.2":0.01864,"13.3":0.14377,"13.4-13.7":0.2192,"14.0-14.4":1.1173,"14.5-14.8":1.57878,"15.0-15.1":1.08092,"15.2-15.3":2.08374,"15.4":1.50512},P:{"4":0.25388,"5.0-5.4":0.03047,"6.2-6.4":0.11171,"7.2-7.4":0.96474,"8.2":0.01016,"9.2":0.04062,"10.1":0.02033,"11.1-11.2":0.23357,"12.0":0.10155,"13.0":0.23357,"14.0":0.589,"15.0":0.2945,"16.0":2.08181},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0293,"4.4":0,"4.4.3-4.4.4":0.15574},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01369,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.79404},H:{"0":1.83557},L:{"0":63.59568},S:{"2.5":0},R:{_:"0"},M:{"0":0.03218},Q:{"10.4":0}}; +module.exports={C:{"34":0.00179,"37":0.00179,"48":0.00179,"55":0.00357,"66":0.01251,"78":0.00357,"79":0.00536,"87":0.00536,"91":0.00715,"98":0.00357,"99":0.07327,"100":0.68263,"101":0.01787,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"33":0.00179,"38":0.00536,"39":0.00357,"43":0.01966,"47":0.00357,"49":0.0143,"50":0.00179,"53":0.00715,"59":0.00179,"60":0.01072,"63":0.01251,"64":0.00357,"65":0.00536,"66":0.01787,"68":0.01251,"70":0.01251,"71":0.00179,"74":0.00357,"76":0.00357,"77":0.00357,"78":0.00357,"79":0.06969,"80":0.00536,"81":0.01787,"83":0.00179,"85":0.00357,"86":0.01787,"87":0.03217,"88":0.00536,"89":0.00179,"90":0.00536,"91":0.02502,"92":0.01072,"93":0.04289,"94":0.01251,"95":0.03931,"96":0.03038,"97":0.06969,"98":0.05182,"99":0.14832,"100":2.25162,"101":8.99576,"102":0.8113,"103":0.00715,_:"4 5 6 7 8 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 40 41 42 44 45 46 48 51 52 54 55 56 57 58 61 62 67 69 72 73 75 84 104"},F:{"36":0.00179,"79":0.00357,"82":0.00536,"84":0.00536,"85":0.11437,"86":0.14475,"87":0.01251,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01072,"13":0.00357,"14":0.00894,"15":0.00715,"16":0.02502,"17":0.01072,"18":0.07327,"84":0.00715,"85":0.00715,"89":0.0143,"90":0.00357,"92":0.02502,"95":0.00357,"96":0.01072,"97":0.02502,"98":0.01787,"99":0.04468,"100":0.1233,"101":1.59579,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"13":0.00536,"14":0.02144,"15":0.01072,_:"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","12.1":0.00715,"13.1":0.01251,"14.1":0.10901,"15.1":0.04289,"15.2-15.3":0.01966,"15.4":0.11616,"15.5":0.01251},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.00607,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00781,"10.0-10.2":0,"10.3":0.02688,"11.0-11.2":0.01561,"11.3-11.4":0.00954,"12.0-12.1":0.02602,"12.2-12.5":0.73194,"13.0-13.1":0.01561,"13.2":0.00867,"13.3":0.13182,"13.4-13.7":0.16131,"14.0-14.4":0.99645,"14.5-14.8":1.30692,"15.0-15.1":0.84642,"15.2-15.3":1.12567,"15.4":3.24692},P:{"4":0.24288,"5.0-5.4":0.06072,"6.2-6.4":0.12144,"7.2-7.4":0.99174,"8.2":0.21569,"9.2":0.06072,"10.1":0.01023,"11.1-11.2":0.21252,"12.0":0.06072,"13.0":0.21252,"14.0":0.42503,"15.0":0.253,"16.0":1.41678},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.01816,"4.4":0,"4.4.3-4.4.4":0.25197},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01608,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.04927},Q:{"10.4":0},O:{"0":1.94624},H:{"0":2.3246},L:{"0":64.45122},S:{"2.5":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 7072ba164fa7d0..02b10a561a9d87 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:{"52":0.02886,"78":0.00962,"91":0.00641,"96":0.00641,"97":0.00962,"98":0.58367,"99":1.77026,"100":0.02245,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 101 3.5 3.6"},D:{"38":0.00641,"42":0.00321,"49":0.09942,"58":0.00321,"61":0.00321,"64":0.00641,"65":0.01283,"67":0.00962,"69":0.01604,"70":0.02245,"71":0.00641,"74":0.00321,"75":0.00962,"76":0.01283,"77":0.00321,"78":0.00321,"79":0.05131,"81":0.01604,"83":0.01283,"84":0.00962,"86":0.00641,"87":0.00641,"88":0.08659,"89":0.00962,"90":0.01604,"91":0.02245,"92":0.00641,"93":0.29504,"94":0.00641,"95":0.00962,"96":0.1379,"97":0.10583,"98":0.10583,"99":3.05948,"100":15.82975,"101":0.16035,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 62 63 66 68 72 73 80 85 102 103 104"},F:{"63":0.00962,"75":0.01604,"83":0.00321,"84":0.15714,"85":0.57405,"86":0.00641,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 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.00641,"13":0.00641,"17":0.00641,"18":0.02245,"84":0.00962,"85":0.00641,"88":0.00641,"92":0.00962,"93":0.00962,"94":0.00321,"96":0.03848,"97":0.02245,"98":0.02566,"99":0.57085,"100":3.72012,"101":0.07055,_:"14 15 16 79 80 81 83 86 87 89 90 91 95"},E:{"4":0,"13":0.00321,"14":0.01924,"15":0.00962,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00321,"11.1":0.00641,"12.1":0.01283,"13.1":0.10262,"14.1":0.3207,"15.1":0.02886,"15.2-15.3":0.09942,"15.4":0.38484},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02305,"6.0-6.1":0,"7.0-7.1":0.11314,"8.1-8.4":0,"9.0-9.2":0.00105,"9.3":0.07019,"10.0-10.2":0.00629,"10.3":0.14247,"11.0-11.2":0.00314,"11.3-11.4":0.01152,"12.0-12.1":0.00943,"12.2-12.5":0.83493,"13.0-13.1":0.09324,"13.2":0.0021,"13.3":0.07752,"13.4-13.7":0.1718,"14.0-14.4":0.35094,"14.5-14.8":1.19425,"15.0-15.1":0.54684,"15.2-15.3":3.16266,"15.4":3.66026},P:{"4":0.57102,"5.0-5.4":0.08139,"6.2-6.4":0.02039,"7.2-7.4":0.54043,"8.2":0.01017,"9.2":0.04079,"10.1":0.0102,"11.1-11.2":0.3161,"12.0":0.10197,"13.0":0.3059,"14.0":0.21413,"15.0":0.24472,"16.0":7.09699},I:{"0":0,"3":0,"4":0.00035,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0007,"4.2-4.3":0.0007,"4.4":0,"4.4.3-4.4.4":0.01862},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11866,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.40758},H:{"0":0.19294},L:{"0":48.92987},S:{"2.5":0},R:{_:"0"},M:{"0":0.20379},Q:{"10.4":0}}; +module.exports={C:{"52":0.0194,"78":0.00647,"79":0.00323,"81":0.00647,"89":0.00323,"91":0.00323,"96":0.01617,"97":0.00323,"99":0.48187,"100":2.16031,"101":0.00647,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 82 83 84 85 86 87 88 90 92 93 94 95 98 102 103 3.5 3.6"},D:{"49":0.03557,"60":0.00323,"63":0.00647,"65":0.02587,"69":0.01617,"70":0.01617,"75":0.01617,"76":0.00647,"79":0.02911,"81":0.00647,"83":0.0194,"84":0.00323,"86":0.00647,"87":0.02587,"88":0.10672,"89":0.00647,"90":0.00647,"91":0.06145,"92":0.01617,"93":0.12936,"94":0.00647,"95":0.01294,"96":0.10996,"97":0.09702,"98":0.05821,"99":0.10349,"100":4.20097,"101":14.09701,"102":1.30654,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 61 62 64 66 67 68 71 72 73 74 77 78 80 85 103 104"},F:{"63":0.03881,"84":0.00647,"85":0.27812,"86":0.32987,"87":0.02911,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 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.01294,"15":0.00647,"16":0.00323,"17":0.00647,"18":0.02264,"84":0.0097,"89":0.0097,"91":0.00323,"92":0.01294,"96":0.04204,"97":0.0097,"98":0.01617,"99":0.03557,"100":0.22638,"101":3.77408,_:"13 14 79 80 81 83 85 86 87 88 90 93 94 95"},E:{"4":0,"11":0.00323,"13":0.00323,"14":0.05174,"15":0.0097,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.0097,"13.1":0.07115,"14.1":0.35897,"15.1":0.0194,"15.2-15.3":0.152,"15.4":0.79556,"15.5":0.12613},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00968,"6.0-6.1":0,"7.0-7.1":0.16233,"8.1-8.4":0,"9.0-9.2":0.00323,"9.3":0.03655,"10.0-10.2":0,"10.3":0.18813,"11.0-11.2":0.0043,"11.3-11.4":0.01075,"12.0-12.1":0.01183,"12.2-12.5":0.79121,"13.0-13.1":0.1763,"13.2":0.0043,"13.3":0.1075,"13.4-13.7":0.17093,"14.0-14.4":0.26338,"14.5-14.8":0.90516,"15.0-15.1":0.30315,"15.2-15.3":0.90623,"15.4":6.69624},P:{"4":0.58016,"5.0-5.4":0.04045,"6.2-6.4":0.07078,"7.2-7.4":0.68195,"8.2":0.21569,"9.2":0.06107,"10.1":0.01018,"11.1-11.2":0.29517,"12.0":0.1425,"13.0":0.2341,"14.0":0.18321,"15.0":0.12214,"16.0":2.98224},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00047,"4.2-4.3":0.00153,"4.4":0,"4.4.3-4.4.4":0.01153},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19081,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.18268},Q:{"10.4":0.0203},O:{"0":0.32477},H:{"0":0.2306},L:{"0":48.63486},S:{"2.5":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 a0b6ef22333dd7..4f83f64c73dbbd 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:{"45":0.00994,"96":0.18393,"97":0.05965,"98":0.4971,"99":0.96935,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 100 101 3.5 3.6"},D:{"22":0.00994,"26":0.01988,"38":0.00994,"43":0.17399,"60":0.00994,"64":0.02983,"65":0.05965,"70":0.01988,"79":0.12925,"81":0.08948,"86":0.04971,"88":0.19387,"89":5.5874,"90":0.00994,"94":0.08948,"95":0.05965,"96":0.30323,"97":0.23364,"98":0.14416,"99":3.38028,"100":18.1193,"101":0.35294,_:"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 34 35 36 37 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 66 67 68 69 71 72 73 74 75 76 77 78 80 83 84 85 87 91 92 93 102 103 104"},F:{"28":0.06959,"79":0.00994,"84":0.05965,"85":0.47722,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 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.01988,"16":0.00994,"18":0.16404,"84":0.08948,"86":0.00994,"90":0.01988,"92":0.05965,"96":0.01988,"97":0.02983,"98":0.02983,"99":0.51698,"100":3.92709,"101":0.17399,_:"13 14 15 17 79 80 81 83 85 87 88 89 91 93 94 95"},E:{"4":0,"15":0.07954,_:"0 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.01988,"14.1":0.00994,"15.1":0.08948,"15.2-15.3":0.26346,"15.4":0.21375},G:{"8":0.00908,"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.08944,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00908,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.62565,"13.0-13.1":0,"13.2":0.00908,"13.3":0.00908,"13.4-13.7":0,"14.0-14.4":0.05403,"14.5-14.8":0.25925,"15.0-15.1":0.46447,"15.2-15.3":1.13507,"15.4":1.87695},P:{"4":0.0614,"5.0-5.4":0.01116,"6.2-6.4":0.0307,"7.2-7.4":0.0614,"8.2":0.01011,"9.2":0.09322,"10.1":0.01036,"11.1-11.2":0.03115,"12.0":0.02047,"13.0":0.37289,"14.0":0.05117,"15.0":0.02047,"16.0":0.63447},I:{"0":0,"3":0,"4":0.00019,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00224,"4.2-4.3":0.00191,"4.4":0,"4.4.3-4.4.4":0.01579},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.65037,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":2.39883},H:{"0":0.15236},L:{"0":43.54429},S:{"2.5":0},R:{_:"0"},M:{"0":0.09052},Q:{"10.4":0}}; +module.exports={C:{"56":0.04694,"92":0.01043,"99":0.05738,"100":1.79952,"101":0.04694,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 102 103 3.5 3.6"},D:{"34":0.08346,"43":0.33904,"50":0.02608,"64":0.23472,"68":0.01043,"74":0.16691,"78":0.32861,"79":0.70416,"81":0.02608,"86":0.01043,"88":0.15126,"89":7.69882,"90":0.01043,"91":0.01043,"92":0.10432,"93":0.02608,"95":0.03651,"96":0.11997,"97":0.33904,"98":0.03651,"99":0.46944,"100":5.60198,"101":15.38198,"102":2.02381,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 69 70 71 72 73 75 76 77 80 83 84 85 87 94 103 104"},F:{"85":1.15274,"86":0.35469,"87":0.01043,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.01043,"14":0.1304,"17":0.07302,"18":0.02608,"80":0.03651,"84":0.01043,"89":0.01043,"91":0.09389,"92":0.08346,"96":0.02608,"98":0.36512,"99":0.04694,"100":0.2921,"101":5.8367,_:"12 15 16 79 81 83 85 86 87 88 90 93 94 95 97"},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 15.1","13.1":0.01043,"14.1":0.03651,"15.2-15.3":0.17734,"15.4":0.48509,"15.5":0.10432},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.01113,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02176,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.04403,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.07692,"13.0-13.1":0,"13.2":0,"13.3":0.01113,"13.4-13.7":0,"14.0-14.4":0.1756,"14.5-14.8":0.15333,"15.0-15.1":0.17509,"15.2-15.3":0.55867,"15.4":3.8338},P:{"4":0.06373,"5.0-5.4":0.02027,"6.2-6.4":0.01043,"7.2-7.4":0.58467,"8.2":0.01022,"9.2":0.08206,"10.1":0.04171,"11.1-11.2":0.02048,"12.0":0.05129,"13.0":0.15362,"14.0":0.05121,"15.0":0.15386,"16.0":0.40965},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01408,"4.2-4.3":0.00585,"4.4":0,"4.4.3-4.4.4":0.01834},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.48134,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.3301},Q:{"10.4":0},O:{"0":1.49739},H:{"0":0.23099},L:{"0":42.14238},S:{"2.5":0}}; 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 392857de25c63d..59397328f2a4cb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js @@ -1 +1 @@ -module.exports={C:{"35":0.01297,"52":0.01297,"65":0.00865,"73":0.06052,"78":0.02162,"80":0.00432,"88":0.01297,"89":0.00865,"90":0.19021,"91":0.03026,"94":0.06917,"95":0.01297,"96":0.01297,"97":0.01729,"98":0.46256,"99":1.34445,"100":0.00865,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 74 75 76 77 79 81 82 83 84 85 86 87 92 93 101 3.5 3.6"},D:{"38":0.00865,"49":0.05188,"53":0.00432,"55":0.00432,"56":0.00432,"65":0.00432,"66":0.00432,"67":0.01729,"68":0.00432,"69":0.00432,"70":0.02162,"71":0.02162,"72":0.03026,"73":0.00865,"74":0.02162,"75":0.01729,"76":0.01729,"77":0.01297,"78":0.00865,"79":0.17724,"80":0.03026,"81":0.01729,"83":0.01729,"84":0.02594,"85":0.00432,"86":0.03026,"87":0.03891,"88":0.01729,"89":0.02594,"90":0.02162,"91":0.1686,"92":0.04323,"93":0.03458,"94":0.0562,"95":0.13834,"96":0.06485,"97":0.19021,"98":0.17724,"99":4.57373,"100":22.97675,"101":0.38042,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 57 58 59 60 61 62 63 64 102 103 104"},F:{"28":0.00865,"84":0.32423,"85":1.05914,"86":0.01729,_:"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 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.02162,"84":0.00432,"89":0.00432,"90":0.00865,"92":0.01297,"94":0.00432,"95":0.00865,"96":0.03458,"97":0.01729,"98":0.03026,"99":0.49715,"100":2.95261,"101":0.03891,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 91 93"},E:{"4":0,"13":0.01729,"14":0.03891,"15":0.03458,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.02594,"12.1":0.00432,"13.1":0.06052,"14.1":0.13401,"15.1":0.14266,"15.2-15.3":0.08214,"15.4":0.36313},G:{"8":0,"3.2":0.00106,"4.0-4.1":0.00053,"4.2-4.3":0.00053,"5.0-5.1":0.00423,"6.0-6.1":0.02275,"7.0-7.1":0.02487,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03069,"10.0-10.2":0.00106,"10.3":0.03492,"11.0-11.2":0.00265,"11.3-11.4":0.00688,"12.0-12.1":0.01058,"12.2-12.5":0.24337,"13.0-13.1":0.00635,"13.2":0.00317,"13.3":0.06031,"13.4-13.7":0.05767,"14.0-14.4":0.20104,"14.5-14.8":0.58249,"15.0-15.1":0.23649,"15.2-15.3":1.65912,"15.4":2.09929},P:{"4":0.23656,"5.0-5.4":0.01029,"6.2-6.4":0.07073,"7.2-7.4":0.17485,"8.2":0.02057,"9.2":0.02057,"10.1":0.04099,"11.1-11.2":0.14399,"12.0":0.03086,"13.0":0.21599,"14.0":0.14399,"15.0":0.12342,"16.0":1.77935},I:{"0":0,"3":0,"4":0.00169,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00254,"4.2-4.3":0.00762,"4.4":0,"4.4.3-4.4.4":0.0449},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1124,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":51.58121},S:{"2.5":0},R:{_:"0"},M:{"0":0.57895},Q:{"10.4":0},O:{"0":0.12487},H:{"0":0.21495}}; +module.exports={C:{"35":0.00904,"47":0.00904,"52":0.02261,"60":0.00452,"68":0.00452,"73":0.04522,"78":0.01809,"88":0.00452,"90":0.17636,"91":0.03165,"94":0.0407,"95":0.01357,"96":0.01357,"97":0.01357,"98":0.01357,"99":0.33463,"100":1.44704,"101":0.03165,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 92 93 102 103 3.5 3.6"},D:{"38":0.00452,"49":0.05426,"55":0.00904,"63":0.00452,"65":0.00452,"67":0.01357,"70":0.01357,"71":0.02713,"72":0.03165,"73":0.00904,"74":0.01357,"75":0.00904,"76":0.01357,"77":0.00904,"78":0.00904,"79":0.14018,"80":0.02261,"81":0.01357,"83":0.00452,"84":0.0407,"85":0.00452,"86":0.04522,"87":0.02713,"88":0.01357,"89":0.01809,"90":0.05426,"91":0.19445,"92":0.03618,"93":0.02713,"94":0.02713,"95":0.06783,"96":0.05426,"97":0.07687,"98":0.14923,"99":0.2261,"100":5.11438,"101":22.62809,"102":2.30622,"103":0.00452,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 64 66 68 69 104"},F:{"28":0.00904,"85":0.91344,"86":0.87727,"87":0.0407,_:"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:{"13":0.00452,"15":0.00904,"18":0.01809,"89":0.00452,"90":0.00452,"92":0.00904,"94":0.00904,"95":0.00452,"96":0.02713,"97":0.00904,"98":0.02261,"99":0.05879,"100":0.15375,"101":3.62212,_:"12 14 16 17 79 80 81 83 84 85 86 87 88 91 93"},E:{"4":0,"13":0.01357,"14":0.03618,"15":0.04974,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.01357,"12.1":0.00904,"13.1":0.08592,"14.1":0.14018,"15.1":0.0814,"15.2-15.3":0.07687,"15.4":0.54716,"15.5":0.0814},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00232,"6.0-6.1":0.01801,"7.0-7.1":0.01918,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01976,"10.0-10.2":0,"10.3":0.01918,"11.0-11.2":0.00349,"11.3-11.4":0.00639,"12.0-12.1":0.00697,"12.2-12.5":0.2121,"13.0-13.1":0.00523,"13.2":0.00232,"13.3":0.10053,"13.4-13.7":0.05055,"14.0-14.4":0.23011,"14.5-14.8":0.44395,"15.0-15.1":0.15108,"15.2-15.3":0.40502,"15.4":4.10943},P:{"4":0.13419,"5.0-5.4":0.0107,"6.2-6.4":0.03051,"7.2-7.4":0.15483,"8.2":0.01032,"9.2":0.02064,"10.1":0.04105,"11.1-11.2":0.12386,"12.0":0.02064,"13.0":0.17547,"14.0":0.11354,"15.0":0.08258,"16.0":0.78447},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00246,"4.2-4.3":0.00822,"4.4":0,"4.4.3-4.4.4":0.03861},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06331,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06871,_:"11"},L:{"0":48.51973},S:{"2.5":0},R:{_:"0"},M:{"0":0.48745},Q:{"10.4":0},O:{"0":0.1424},H:{"0":0.21778}}; 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 3cf2f4c75d155f..37e909b309fc1c 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:{"34":0.00267,"38":0.00267,"40":0.00134,"43":0.00267,"44":0.00134,"45":0.00267,"47":0.00801,"48":0.00267,"49":0.00134,"51":0.00267,"52":0.03338,"56":0.00401,"57":0.00267,"59":0.00267,"61":0.00267,"64":0.00267,"66":0.00267,"67":0.00134,"72":0.00935,"76":0.00267,"78":0.00534,"80":0.00401,"81":0.01068,"82":0.00134,"83":0.00267,"84":0.01869,"85":0.00134,"86":0.00401,"87":0.00134,"88":0.00267,"89":0.01602,"90":0.00134,"91":0.00801,"92":0.00801,"93":0.00267,"94":0.03605,"95":0.01202,"96":0.01469,"97":0.03338,"98":0.32441,"99":1.05198,"100":0.00935,_:"2 3 4 5 6 7 8 9 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 41 42 46 50 53 54 55 58 60 62 63 65 68 69 70 71 73 74 75 77 79 101 3.5 3.6"},D:{"11":0.00267,"26":0.00134,"32":0.00267,"33":0.00401,"36":0.00267,"37":0.00134,"38":0.01469,"39":0.00134,"40":0.00267,"42":0.00134,"43":0.01335,"44":0.00267,"46":0.00134,"49":0.00935,"50":0.00134,"52":0.00267,"53":0.00401,"54":0.00134,"55":0.00401,"56":0.00401,"57":0.00401,"58":0.00534,"59":0.00134,"60":0.00401,"61":0.00534,"62":0.00534,"63":0.01335,"64":0.00401,"65":0.00401,"66":0.00401,"67":0.00401,"68":0.00401,"69":0.02003,"70":0.11081,"71":0.01202,"72":0.00534,"73":0.00534,"74":0.00401,"75":0.00401,"76":0.00401,"77":0.00267,"78":0.01335,"79":0.03071,"80":0.01602,"81":0.03071,"83":0.01602,"84":0.02003,"85":0.00935,"86":0.0267,"87":0.03605,"88":0.03471,"89":0.05073,"90":0.01469,"91":0.03204,"92":0.05607,"93":0.03872,"94":0.03338,"95":0.06942,"96":0.08411,"97":0.0534,"98":0.1068,"99":1.25891,"100":6.39999,"101":0.08277,"102":0.00401,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 34 35 41 45 47 48 51 103 104"},F:{"79":0.00267,"82":0.00401,"83":0.00534,"84":0.0534,"85":0.27768,"86":0.00668,"87":0.01469,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00267,"14":0.00267,"15":0.00267,"16":0.00401,"17":0.00668,"18":0.02537,"83":0.00267,"84":0.00801,"85":0.00267,"88":0.00134,"89":0.00534,"90":0.00534,"91":0.00267,"92":0.01469,"94":0.00134,"95":0.00267,"96":0.00801,"97":0.01202,"98":0.01068,"99":0.12683,"100":0.6942,"101":0.00801,_:"13 79 80 81 86 87 93"},E:{"4":0,"13":0.00401,"14":0.01869,"15":0.00534,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.11748,"10.1":0.00401,"12.1":0.00401,"13.1":0.00668,"14.1":0.02003,"15.1":0.00935,"15.2-15.3":0.01202,"15.4":0.01469},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00068,"5.0-5.1":0.00274,"6.0-6.1":0.00205,"7.0-7.1":0.02872,"8.1-8.4":0,"9.0-9.2":0.00023,"9.3":0.06953,"10.0-10.2":0.00388,"10.3":0.04126,"11.0-11.2":0.01231,"11.3-11.4":0.02804,"12.0-12.1":0.07021,"12.2-12.5":0.34763,"13.0-13.1":0.01094,"13.2":0.00957,"13.3":0.03055,"13.4-13.7":0.08845,"14.0-14.4":0.23411,"14.5-14.8":0.34558,"15.0-15.1":0.19057,"15.2-15.3":0.49968,"15.4":0.26192},P:{"4":3.45138,"5.0-5.4":0.14046,"6.2-6.4":0.32106,"7.2-7.4":0.81268,"8.2":0.0903,"9.2":0.47156,"10.1":0.31103,"11.1-11.2":0.55182,"12.0":0.26086,"13.0":0.86285,"14.0":1.23407,"15.0":0.61202,"16.0":3.45138},I:{"0":0,"3":0,"4":0.00096,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01112,"4.2-4.3":0.02551,"4.4":0,"4.4.3-4.4.4":0.1097},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00267,"11":0.05607,_:"6 7 8 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.9617},H:{"0":1.50926},L:{"0":69.30768},S:{"2.5":0},R:{_:"0"},M:{"0":0.19061},Q:{"10.4":0}}; +module.exports={C:{"35":0.00147,"38":0.00293,"43":0.00733,"47":0.00586,"48":0.0044,"49":0.00293,"50":0.00147,"52":0.04984,"56":0.00733,"58":0.00147,"61":0.00147,"63":0.00147,"65":0.00147,"66":0.00147,"69":0.00147,"72":0.01613,"74":0.00147,"78":0.00586,"80":0.00293,"81":0.00586,"84":0.03372,"85":0.00147,"86":0.00293,"87":0.00293,"88":0.00293,"89":0.01026,"90":0.00293,"91":0.00733,"92":0.0044,"93":0.00147,"94":0.01906,"95":0.01613,"96":0.01759,"97":0.01613,"98":0.01759,"99":0.32252,"100":1.21238,"101":0.01173,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 41 42 44 45 46 51 53 54 55 57 59 60 62 64 67 68 70 71 73 75 76 77 79 82 83 102 103 3.5 3.6"},D:{"11":0.00147,"23":0.00293,"26":0.00147,"28":0.00147,"31":0.0044,"32":0.00147,"33":0.00293,"34":0.00293,"36":0.00293,"37":0.00293,"38":0.01173,"39":0.00147,"40":0.00293,"43":0.01026,"44":0.00293,"47":0.0044,"49":0.01319,"50":0.00293,"52":0.00293,"53":0.00147,"55":0.00293,"56":0.00293,"57":0.00586,"58":0.0044,"59":0.0044,"60":0.0044,"61":0.00147,"62":0.00733,"63":0.02199,"64":0.00586,"65":0.00293,"66":0.01466,"67":0.0044,"68":0.0044,"69":0.02052,"70":0.18325,"71":0.01173,"72":0.0044,"73":0.0044,"74":0.00733,"75":0.0088,"76":0.0044,"77":0.0044,"78":0.00733,"79":0.04251,"80":0.01173,"81":0.03225,"83":0.01466,"84":0.02346,"85":0.02052,"86":0.04251,"87":0.03665,"88":0.01906,"89":0.03812,"90":0.02346,"91":0.04105,"92":0.03812,"93":0.01173,"94":0.02785,"95":0.08649,"96":0.09236,"97":0.04251,"98":0.09969,"99":0.11142,"100":1.66244,"101":6.18359,"102":0.62452,"103":0.00293,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 27 29 30 35 41 42 45 46 48 51 54 104"},F:{"75":0.00147,"79":0.00733,"83":0.00733,"84":0.00586,"85":0.17152,"86":0.25069,"87":0.01759,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00733,"13":0.00147,"14":0.0044,"15":0.00147,"16":0.00586,"17":0.01026,"18":0.04545,"83":0.00147,"84":0.00733,"85":0.00586,"87":0.00147,"89":0.00586,"90":0.0044,"92":0.02052,"94":0.00147,"95":0.00147,"96":0.0044,"97":0.01613,"98":0.0088,"99":0.01319,"100":0.06597,"101":0.86787,_:"79 80 81 86 88 91 93"},E:{"4":0,"13":0.0044,"14":0.03518,"15":0.0044,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.1378,"10.1":0.00147,"12.1":0.00293,"13.1":0.00586,"14.1":0.02052,"15.1":0.01173,"15.2-15.3":0.0044,"15.4":0.04398,"15.5":0.00293},G:{"8":0,"3.2":0.00101,"4.0-4.1":0,"4.2-4.3":0.00101,"5.0-5.1":0.00227,"6.0-6.1":0.0005,"7.0-7.1":0.02392,"8.1-8.4":0.00025,"9.0-9.2":0.0005,"9.3":0.06648,"10.0-10.2":0.00378,"10.3":0.03828,"11.0-11.2":0.01284,"11.3-11.4":0.03903,"12.0-12.1":0.04256,"12.2-12.5":0.36842,"13.0-13.1":0.01032,"13.2":0.00705,"13.3":0.04281,"13.4-13.7":0.09746,"14.0-14.4":0.23948,"14.5-14.8":0.36892,"15.0-15.1":0.18585,"15.2-15.3":0.32712,"15.4":0.63737},P:{"4":2.13109,"5.0-5.4":0.08042,"6.2-6.4":0.19099,"7.2-7.4":0.41214,"8.2":0.06031,"9.2":0.26136,"10.1":0.26136,"11.1-11.2":0.45235,"12.0":0.13068,"13.0":0.51267,"14.0":0.78408,"15.0":0.33173,"16.0":1.83957},I:{"0":0,"3":0,"4":0.00162,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02078,"4.2-4.3":0.02726,"4.4":0,"4.4.3-4.4.4":0.1722},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00293,"11":0.05424,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.21333},Q:{"10.4":0},O:{"0":1.16049},H:{"0":1.58338},L:{"0":70.95177},S:{"2.5":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 64ba8a06a4f541..6572b4a3550213 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:{"34":0.01676,"36":0.00559,"45":0.01117,"52":0.00838,"60":0.01397,"63":0.01117,"72":0.00559,"77":0.00559,"78":0.00279,"80":0.00279,"88":0.01117,"91":0.0419,"92":0.00559,"93":0.00559,"96":0.00279,"97":0.01117,"98":0.68987,"99":0.82673,"100":0.01117,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 64 65 66 67 68 69 70 71 73 74 75 76 79 81 82 83 84 85 86 87 89 90 94 95 101 3.5 3.6"},D:{"11":0.00279,"40":0.00279,"49":0.00279,"50":0.24578,"56":0.00559,"64":0.00559,"65":0.00559,"67":0.00279,"69":0.00559,"70":0.081,"74":0.00279,"75":0.03072,"76":0.00559,"78":0.01117,"79":0.01117,"80":0.00279,"81":0.16199,"83":0.00559,"85":0.01117,"86":0.00279,"87":0.03352,"88":0.01955,"89":0.01955,"90":0.02514,"91":0.01117,"92":0.02514,"93":0.00559,"94":0.01117,"95":0.02793,"96":0.03072,"97":0.05307,"98":0.0782,"99":1.8769,"100":8.11367,"101":0.08658,"102":0.00559,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 51 52 53 54 55 57 58 59 60 61 62 63 66 68 71 72 73 77 84 103 104"},F:{"37":0.00559,"40":0.00559,"63":0.01955,"79":0.01676,"83":0.00559,"84":0.08658,"85":0.56977,"86":0.01955,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 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.01955,"13":0.01676,"14":0.02234,"15":0.01117,"16":0.01117,"17":0.02793,"18":0.09496,"84":0.01117,"85":0.00838,"86":0.08938,"88":0.00559,"89":0.01117,"92":0.01397,"93":0.00559,"94":0.00838,"95":0.00838,"96":0.00838,"97":0.00279,"98":0.01676,"99":0.33795,"100":1.51381,"101":0.01676,_:"79 80 81 83 87 90 91"},E:{"4":0,"10":0.00838,"13":0.00559,"14":0.0419,_:"0 5 6 7 8 9 11 12 15 3.1 3.2 5.1 6.1 7.1 11.1","9.1":0.00559,"10.1":0.00838,"12.1":0.00559,"13.1":0.01676,"14.1":0.05307,"15.1":0.1592,"15.2-15.3":0.11172,"15.4":0.10613},G:{"8":0.00189,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00189,"5.0-5.1":0,"6.0-6.1":0.00236,"7.0-7.1":0.0033,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00707,"10.0-10.2":0.00047,"10.3":0.03632,"11.0-11.2":0.00283,"11.3-11.4":0.00519,"12.0-12.1":0.00519,"12.2-12.5":0.15659,"13.0-13.1":0.01604,"13.2":0,"13.3":0.0283,"13.4-13.7":0.02075,"14.0-14.4":0.13301,"14.5-14.8":0.38298,"15.0-15.1":0.2995,"15.2-15.3":2.47333,"15.4":1.13573},P:{"4":0.48928,"5.0-5.4":0.08139,"6.2-6.4":0.01019,"7.2-7.4":0.79509,"8.2":0.01017,"9.2":0.04077,"10.1":0.0102,"11.1-11.2":0.33638,"12.0":0.01019,"13.0":0.13251,"14.0":0.49948,"15.0":0.29561,"16.0":1.44746},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00091,"4.4":0,"4.4.3-4.4.4":0.04953},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08938,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.12414},H:{"0":15.75922},L:{"0":55.70682},S:{"2.5":0.12971},R:{_:"0"},M:{"0":0.08647},Q:{"10.4":0}}; +module.exports={C:{"23":0.0054,"34":0.0054,"43":0.0027,"52":0.0054,"60":0.0135,"68":0.0081,"72":0.0135,"91":0.0297,"98":0.0108,"99":0.2754,"100":0.8856,"101":0.0405,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"40":0.0027,"49":0.0081,"50":0.0162,"55":0.0027,"69":0.0108,"70":0.0513,"74":0.0135,"75":0.0108,"79":0.0108,"81":0.0081,"83":0.0108,"85":0.0108,"86":0.0108,"87":0.2106,"88":0.0324,"89":0.2079,"90":0.0324,"91":0.0162,"92":0.0162,"94":0.0108,"95":0.0405,"96":0.0243,"97":0.0432,"98":0.0459,"99":0.1134,"100":1.9521,"101":7.6275,"102":0.5805,"103":0.0324,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 76 77 78 80 84 93 104"},F:{"79":0.0054,"83":0.0027,"84":0.0054,"85":0.297,"86":0.3294,"87":0.0297,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0432,"13":0.0108,"14":0.0081,"15":0.0135,"16":0.0297,"17":0.0081,"18":0.0567,"84":0.0081,"85":0.0108,"86":0.0594,"89":0.0054,"90":0.0054,"92":0.0135,"93":0.0027,"96":0.0918,"97":0.0027,"98":0.0243,"99":0.0162,"100":0.0837,"101":1.8063,_:"79 80 81 83 87 88 91 94 95"},E:{"4":0,"13":0.0027,"14":0.0243,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.0027,"9.1":0.0054,"12.1":0.0054,"13.1":0.027,"14.1":0.0243,"15.1":0.1107,"15.2-15.3":0.4428,"15.4":0.7398,"15.5":0.0189},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.00271,"7.0-7.1":0.00407,"8.1-8.4":0.00271,"9.0-9.2":0.00542,"9.3":0.00452,"10.0-10.2":0,"10.3":0.01853,"11.0-11.2":0.00497,"11.3-11.4":0.00226,"12.0-12.1":0.0113,"12.2-12.5":0.12294,"13.0-13.1":0.00362,"13.2":0.00136,"13.3":0.00723,"13.4-13.7":0.02079,"14.0-14.4":0.13469,"14.5-14.8":0.25808,"15.0-15.1":0.13876,"15.2-15.3":0.68023,"15.4":3.09514},P:{"4":0.3377,"5.0-5.4":0.04045,"6.2-6.4":0.07078,"7.2-7.4":1.00285,"8.2":0.21569,"9.2":0.06107,"10.1":0.01018,"11.1-11.2":0.37863,"12.0":0.02047,"13.0":0.0921,"14.0":0.34793,"15.0":0.22513,"16.0":0.53213},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00166,"4.4":0,"4.4.3-4.4.4":0.07865},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0702,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.43076},Q:{"10.4":0},O:{"0":1.32878},H:{"0":15.53152},L:{"0":55.91924},S:{"2.5":0.11682}}; 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 45ad6f41088403..9e1f1c0d8b7d42 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:{"52":0.0187,"78":0.00468,"91":0.00935,"92":0.00468,"98":0.2431,"99":0.96305,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 93 94 95 96 97 100 101 3.5 3.6"},D:{"23":0.00468,"29":0.00935,"38":0.00468,"50":0.00468,"65":0.04675,"68":0.02805,"73":0.02338,"76":0.0561,"78":0.00935,"79":0.07013,"80":0.01403,"83":0.04675,"86":0.00935,"87":0.07948,"88":0.00935,"89":0.02805,"91":0.0187,"92":0.22908,"93":0.187,"94":0.00468,"96":0.23843,"97":0.187,"98":1.0659,"99":7.02185,"100":19.1862,"101":0.28985,"102":0.07948,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 74 75 77 81 84 85 90 95 103 104"},F:{"79":0.00468,"84":0.0374,"85":0.1309,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00468,"16":0.05143,"18":0.0935,"91":0.00935,"92":0.00468,"96":0.00935,"97":0.06078,"98":0.00468,"99":0.65918,"100":5.00693,"101":0.07948,_:"12 14 15 17 79 80 81 83 84 85 86 87 88 89 90 93 94 95"},E:{"4":0,"13":0.00935,"14":0.2431,"15":0.6545,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.04675,"10.1":0.12155,"11.1":0.00468,"12.1":0.01403,"13.1":0.3366,"14.1":1.21083,"15.1":0.20103,"15.2-15.3":0.55633,"15.4":1.16875},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00298,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01787,"10.0-10.2":0,"10.3":0.02382,"11.0-11.2":0,"11.3-11.4":0.00893,"12.0-12.1":0.02978,"12.2-12.5":1.07195,"13.0-13.1":0.04169,"13.2":0.00893,"13.3":0.03573,"13.4-13.7":0.07444,"14.0-14.4":1.14341,"14.5-14.8":3.91856,"15.0-15.1":0.94689,"15.2-15.3":11.82417,"15.4":10.61228},P:{"4":0.03148,"5.0-5.4":0.02056,"6.2-6.4":0.03136,"7.2-7.4":0.02099,"8.2":0.02446,"9.2":0.03084,"10.1":0.01028,"11.1-11.2":0.03148,"12.0":0.04112,"13.0":0.02099,"14.0":0.07346,"15.0":0.05247,"16.0":4.06109},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03389,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00339},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11688,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.01598},H:{"0":0.23694},L:{"0":19.78078},S:{"2.5":0},R:{_:"0"},M:{"0":0.21833},Q:{"10.4":0}}; +module.exports={C:{"63":0.00442,"78":0.00442,"97":0.02651,"98":0.01325,"99":0.28717,"100":0.99405,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 101 102 103 3.5 3.6"},D:{"29":0.01325,"49":0.02651,"65":0.00884,"75":0.00442,"76":0.01767,"79":0.00442,"80":0.01325,"83":0.01767,"87":0.05302,"88":0.03093,"89":0.00442,"90":0.01325,"91":0.00884,"92":0.07069,"93":0.29601,"94":0.00884,"95":0.09278,"96":0.01325,"97":0.05743,"98":0.63619,"99":0.26508,"100":10.69156,"101":14.18178,"102":1.34307,"103":0.14579,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 77 78 81 84 85 86 104"},F:{"83":0.00442,"85":0.07952,"86":0.06185,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.04418,"18":0.11929,"84":0.00884,"86":0.00884,"92":0.0486,"99":0.05743,"100":0.32693,"101":4.67866,_:"12 13 14 15 17 79 80 81 83 85 87 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.00442,"14":0.10603,"15":0.12812,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00884,"10.1":0.2209,"11.1":0.00884,"12.1":0.05302,"13.1":0.25624,"14.1":1.59048,"15.1":0.22974,"15.2-15.3":0.539,"15.4":3.03958,"15.5":0.28717},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00564,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1072,"10.0-10.2":0,"10.3":0.04796,"11.0-11.2":0,"11.3-11.4":0.00846,"12.0-12.1":0,"12.2-12.5":0.93943,"13.0-13.1":0,"13.2":0,"13.3":0.01128,"13.4-13.7":0.18901,"14.0-14.4":0.72785,"14.5-14.8":2.67723,"15.0-15.1":0.7081,"15.2-15.3":2.53053,"15.4":20.24145},P:{"4":0.05254,"5.0-5.4":0.01021,"6.2-6.4":0.01051,"7.2-7.4":0.1261,"8.2":0.04047,"9.2":0.14135,"10.1":0.13125,"11.1-11.2":0.06305,"12.0":0.02102,"13.0":0.02102,"14.0":0.13661,"15.0":0.04203,"16.0":1.16641},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0036,"4.4":0,"4.4.3-4.4.4":0.02431},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11045,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.12841},Q:{"10.4":0},O:{"0":0.02792},H:{"0":0.222},L:{"0":24.39299},S:{"2.5":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 c9aa0a7e4d0e2c..2b015ecb656883 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:{"27":0.00442,"30":0.00221,"42":0.00221,"45":0.00221,"47":0.00221,"52":0.00221,"60":0.00663,"68":0.00111,"70":0.00332,"72":0.00774,"78":0.00221,"86":0.00663,"87":0.00111,"91":0.01326,"92":0.00221,"93":0.00111,"94":0.00111,"95":0.00884,"96":0.02542,"97":0.03094,"98":0.21658,"99":0.74477,"100":0.00553,_:"2 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 31 32 33 34 35 36 37 38 39 40 41 43 44 46 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 71 73 74 75 76 77 79 80 81 82 83 84 85 88 89 90 101 3.5 3.6"},D:{"31":0.00111,"43":0.00111,"49":0.00111,"53":0.00221,"55":0.01547,"60":0.00553,"61":0.00332,"63":0.00332,"68":0.00221,"69":0.00221,"70":0.00553,"74":0.00553,"75":0.01326,"77":0.00553,"78":0.03426,"79":0.00111,"80":0.00663,"81":0.00774,"83":0.00221,"84":0.00553,"85":0.00221,"86":0.00774,"87":0.03536,"89":0.00442,"90":0.00774,"91":0.03205,"92":0.01216,"93":0.03978,"94":0.00442,"95":0.00332,"96":0.0221,"97":0.02431,"98":0.03315,"99":0.52377,"100":2.24205,"101":0.04089,"102":0.03426,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 54 56 57 58 59 62 64 65 66 67 71 72 73 76 88 103 104"},F:{"34":0.00332,"36":0.00553,"37":0.00553,"38":0.00221,"44":0.00111,"45":0.00221,"46":0.00663,"57":0.00221,"78":0.00111,"79":0.00221,"80":0.00221,"81":0.00221,"83":0.02542,"84":0.01105,"85":0.01989,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 39 40 41 42 43 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 82 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.01768,"13":0.00663,"14":0.02542,"15":0.00221,"16":0.01216,"17":0.00663,"18":0.06299,"84":0.00221,"85":0.01216,"89":0.00111,"90":0.00221,"91":0.00332,"92":0.01216,"95":0.00221,"96":0.00553,"97":0.01879,"98":0.02542,"99":0.27515,"100":0.68731,"101":0.00884,_:"79 80 81 83 86 87 88 93 94"},E:{"4":0,"13":0.01105,"14":0.00995,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00553,"11.1":0.01547,"12.1":0.00111,"13.1":0.00774,"14.1":0.00663,"15.1":0.00442,"15.2-15.3":0.00221,"15.4":0.0442},G:{"8":0.00259,"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.00389,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00843,"10.0-10.2":0,"10.3":0.10311,"11.0-11.2":0.0201,"11.3-11.4":0.08041,"12.0-12.1":0.20168,"12.2-12.5":1.40466,"13.0-13.1":0.02399,"13.2":0.00259,"13.3":0.01362,"13.4-13.7":0.19779,"14.0-14.4":1.18287,"14.5-14.8":0.87937,"15.0-15.1":0.76069,"15.2-15.3":0.88585,"15.4":0.71206},P:{"4":0.37405,"5.0-5.4":1.20304,"6.2-6.4":0.07077,"7.2-7.4":0.39427,"8.2":0.01047,"9.2":0.15164,"10.1":0.02022,"11.1-11.2":0.24263,"12.0":0.02022,"13.0":0.13142,"14.0":0.67734,"15.0":0.18197,"16.0":0.96041},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00109,"4.2-4.3":0.00044,"4.4":0,"4.4.3-4.4.4":0.03405},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00269,"11":0.20837,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":79.82589},S:{"2.5":0.11562},R:{_:"0"},M:{"0":0.16899},Q:{"10.4":0.04447},O:{"0":0.51585},H:{"0":2.04612}}; +module.exports={C:{"16":0.00216,"30":0.00216,"31":0.00324,"33":0.00108,"43":0.00108,"44":0.00216,"45":0.00216,"48":0.00324,"49":0.00108,"52":0.01188,"56":0.0054,"66":0.0054,"70":0.00216,"71":0.00216,"72":0.01512,"78":0.00216,"85":0.00864,"86":0.00108,"88":0.00216,"89":0.00216,"91":0.00972,"94":0.00432,"95":0.0162,"96":0.00216,"97":0.01188,"98":0.0108,"99":0.189,"100":1.22472,"101":0.0054,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 32 34 35 36 37 38 39 40 41 42 46 47 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 73 74 75 76 77 79 80 81 82 83 84 87 90 92 93 102 103 3.5 3.6"},D:{"37":0.00324,"40":0.00864,"48":0.00216,"49":0.00216,"55":0.00648,"56":0.0054,"60":0.00108,"68":0.00216,"69":0.00324,"70":0.00432,"75":0.0054,"78":0.00324,"79":0.00216,"80":0.00216,"81":0.00324,"83":0.00216,"84":0.0054,"86":0.00648,"87":0.01728,"88":0.00432,"89":0.00216,"90":0.00756,"91":0.00324,"92":0.01188,"93":0.00972,"94":0.00864,"95":0.01512,"96":0.00972,"97":0.05184,"98":0.02484,"99":0.05724,"100":0.56808,"101":2.12868,"102":0.19224,"103":0.01728,_:"4 5 6 7 8 9 10 11 12 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 41 42 43 44 45 46 47 50 51 52 53 54 57 58 59 61 62 63 64 65 66 67 71 72 73 74 76 77 85 104"},F:{"28":0.00216,"40":0.00108,"45":0.00864,"46":0.0054,"47":0.00648,"51":0.00216,"62":0.00108,"79":0.0108,"80":0.00324,"83":0.01188,"84":0.01296,"85":0.04644,"86":0.04536,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 48 49 50 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 82 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.02808,"13":0.01296,"14":0.0216,"15":0.00108,"16":0.00648,"17":0.0216,"18":0.03132,"81":0.00324,"84":0.00972,"85":0.00432,"87":0.00108,"89":0.00216,"92":0.00432,"94":0.00108,"96":0.00756,"97":0.00216,"98":0.0054,"99":0.03132,"100":0.06156,"101":0.60156,_:"79 80 83 86 88 90 91 93 95"},E:{"4":0,"14":0.05616,"15":0.00108,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 11.1 15.5","5.1":0.00324,"10.1":0.00432,"12.1":0.00324,"13.1":0.02592,"14.1":0.05076,"15.1":0.00432,"15.2-15.3":0.01296,"15.4":0.03456},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.02211,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03979,"10.0-10.2":0.00088,"10.3":0.32363,"11.0-11.2":0.00707,"11.3-11.4":0.03449,"12.0-12.1":0.15828,"12.2-12.5":2.68278,"13.0-13.1":0.00619,"13.2":0.01415,"13.3":0.02564,"13.4-13.7":0.07604,"14.0-14.4":0.89396,"14.5-14.8":0.70916,"15.0-15.1":0.71623,"15.2-15.3":0.7967,"15.4":2.33262},P:{"4":0.19264,"5.0-5.4":0.06083,"6.2-6.4":0.05069,"7.2-7.4":0.4461,"8.2":0.22305,"9.2":0.28388,"10.1":0.02077,"11.1-11.2":0.34472,"12.0":0.03042,"13.0":0.05069,"14.0":0.72999,"15.0":0.07097,"16.0":0.75027},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00047,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01737},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11772,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":78.42584},S:{"2.5":0.05352},R:{_:"0"},M:{"0":0.33896},Q:{"10.4":0.08028},O:{"0":0.46384},H:{"0":1.79876}}; 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 fd4c9a8f2c2198..6b0c7485de3130 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js @@ -1 +1 @@ -module.exports={C:{"43":0.00726,"45":0.00726,"49":0.01088,"52":0.03628,"56":0.00363,"60":0.00726,"66":0.01088,"72":0.02902,"78":0.04354,"79":0.03991,"80":0.01088,"81":0.00726,"84":0.03991,"86":0.00363,"87":0.00726,"88":0.00726,"89":0.00726,"90":0.01451,"91":0.07982,"92":0.00726,"93":0.01088,"94":0.03628,"95":0.03628,"96":0.0653,"97":0.05805,"98":1.07389,"99":3.67154,"100":0.03628,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 47 48 50 51 53 54 55 57 58 59 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 82 83 85 101 3.5 3.6"},D:{"11":0.01088,"18":0.00363,"26":0.03991,"29":0.00726,"35":0.00363,"42":0.00363,"43":0.04354,"49":0.01451,"50":0.00726,"55":0.00726,"63":0.01451,"64":0.00363,"65":0.05079,"69":0.00726,"71":0.00363,"72":0.12335,"73":0.01451,"74":0.01814,"75":0.08707,"76":0.00726,"77":0.00363,"78":0.01451,"79":0.04354,"80":0.01088,"81":0.02177,"83":0.01814,"84":0.00726,"85":0.01451,"86":0.02902,"87":0.01814,"88":0.02902,"89":0.02177,"90":0.03628,"91":0.07619,"92":0.05079,"93":0.04354,"94":0.03628,"95":0.05805,"96":0.18866,"97":0.10521,"98":0.14512,"99":2.10787,"100":14.38502,"101":0.37006,"102":0.03628,"103":0.00363,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 27 28 30 31 32 33 34 36 37 38 39 40 41 44 45 46 47 48 51 52 53 54 56 57 58 59 60 61 62 66 67 68 70 104"},F:{"12":0.00363,"74":0.01451,"79":0.00726,"82":0.01088,"83":0.00363,"84":0.22131,"85":1.49836,"86":0.02177,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 75 76 77 78 80 81 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.01814,"13":0.00726,"15":0.00726,"16":0.00363,"17":0.0254,"18":0.0254,"84":0.00726,"85":0.00363,"89":0.00726,"90":0.00726,"91":0.01451,"92":0.03265,"95":0.01088,"96":0.01451,"97":0.01088,"98":0.02177,"99":0.30112,"100":2.3836,"101":0.03991,_:"14 79 80 81 83 86 87 88 93 94"},E:{"4":0,"14":0.00726,"15":0.00363,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 12.1","10.1":0.02177,"11.1":0.00363,"13.1":0.01451,"14.1":0.04716,"15.1":0.01451,"15.2-15.3":0.01088,"15.4":0.09433},G:{"8":0,"3.2":0.00104,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0026,"6.0-6.1":0.00104,"7.0-7.1":0.12221,"8.1-8.4":0.00156,"9.0-9.2":0,"9.3":0.039,"10.0-10.2":0,"10.3":0.17993,"11.0-11.2":0.13261,"11.3-11.4":0.0052,"12.0-12.1":0.04368,"12.2-12.5":0.93605,"13.0-13.1":0.00416,"13.2":0.0026,"13.3":0.06032,"13.4-13.7":0.20905,"14.0-14.4":0.4181,"14.5-14.8":0.46075,"15.0-15.1":0.21789,"15.2-15.3":1.30475,"15.4":1.05618},P:{"4":0.09786,"5.0-5.4":0.02446,"6.2-6.4":0.0103,"7.2-7.4":0.1442,"8.2":0.02446,"9.2":0.0412,"10.1":0.0309,"11.1-11.2":0.1339,"12.0":0.0515,"13.0":0.1545,"14.0":0.2884,"15.0":0.02446,"16.0":0.44036},I:{"0":0,"3":0,"4":0.00168,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00818,"4.2-4.3":0.01083,"4.4":0,"4.4.3-4.4.4":0.15133},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00363,"11":0.23582,_:"6 7 8 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.03186},O:{"0":0.70081},H:{"0":3.68534},L:{"0":55.96609},S:{"2.5":0.01274},R:{_:"0"},M:{"0":0.05734},Q:{"10.4":0.09557}}; +module.exports={C:{"43":0.00373,"47":0.00373,"52":0.04107,"56":0.00747,"60":0.00747,"65":0.0112,"66":0.00373,"68":0.00747,"72":0.01867,"75":0.00373,"76":0.00373,"77":0.00747,"78":0.01494,"79":0.02614,"80":0.0224,"81":0.00373,"84":0.01867,"85":0.00373,"86":0.00747,"87":0.00373,"88":0.0112,"89":0.00747,"90":0.00747,"91":0.05601,"92":0.0112,"93":0.0112,"94":0.03734,"95":0.0224,"96":0.01494,"97":0.04854,"98":0.04481,"99":0.87002,"100":4.1074,"101":0.04481,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 67 69 70 71 73 74 82 83 102 103 3.5 3.6"},D:{"11":0.01867,"18":0.00373,"25":0.00747,"28":0.0112,"29":0.00373,"31":0.00747,"32":0.01494,"33":0.01494,"39":0.00373,"40":0.00373,"42":0.00373,"43":0.02614,"49":0.00373,"50":0.00373,"58":0.00747,"63":0.00747,"64":0.01494,"65":0.07468,"68":0.00373,"69":0.00747,"70":0.0112,"72":0.05228,"73":0.01494,"74":0.0112,"75":0.01867,"76":0.00373,"77":0.05228,"78":0.00747,"79":0.05228,"80":0.01867,"81":0.04481,"83":0.0224,"84":0.02987,"85":0.01494,"86":0.03734,"87":0.02614,"88":0.02614,"89":0.00747,"90":0.0112,"91":0.16056,"92":0.08588,"93":0.03734,"94":0.04481,"95":0.07095,"96":0.11949,"97":0.08588,"98":0.09335,"99":0.3958,"100":2.9872,"101":12.21018,"102":1.20608,"103":0.0112,"104":0.00747,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 26 27 30 34 35 36 37 38 41 44 45 46 47 48 51 52 53 54 55 56 57 59 60 61 62 66 67 71"},F:{"12":0.00373,"69":0.01494,"77":0.00373,"79":0.0224,"82":0.01867,"85":1.34797,"86":1.20235,"87":0.05228,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 78 80 81 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.04854,"14":0.00747,"15":0.01494,"16":0.00373,"17":0.0112,"18":0.02987,"84":0.00373,"85":0.00373,"88":0.00373,"89":0.02614,"90":0.00373,"91":0.00373,"92":0.08588,"95":0.00747,"96":0.0112,"97":0.01867,"98":0.00747,"99":0.01867,"100":0.1755,"101":2.94239,_:"13 79 80 81 83 86 87 93 94"},E:{"4":0,"12":0.00747,"13":0.02614,"14":0.0112,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.04481,"12.1":0.00373,"13.1":0.0224,"14.1":0.05228,"15.1":0.00373,"15.2-15.3":0.00747,"15.4":0.15683,"15.5":0.08962},G:{"8":0,"3.2":0.00163,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00327,"6.0-6.1":0,"7.0-7.1":0.06317,"8.1-8.4":0.00327,"9.0-9.2":0,"9.3":0.1356,"10.0-10.2":0,"10.3":0.27502,"11.0-11.2":0.06372,"11.3-11.4":0.00327,"12.0-12.1":0.02178,"12.2-12.5":0.80709,"13.0-13.1":0.00708,"13.2":0.00109,"13.3":0.01361,"13.4-13.7":0.18952,"14.0-14.4":0.36215,"14.5-14.8":0.36161,"15.0-15.1":0.21784,"15.2-15.3":0.574,"15.4":2.33957},P:{"4":0.15814,"5.0-5.4":0.04074,"6.2-6.4":0.04518,"7.2-7.4":0.0113,"8.2":0.04047,"9.2":0.03389,"10.1":0.02078,"11.1-11.2":0.09385,"12.0":0.0113,"13.0":0.0113,"14.0":0.37542,"15.0":0.0113,"16.0":0.19203},I:{"0":0,"3":0,"4":0.00546,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00758,"4.2-4.3":0.01456,"4.4":0,"4.4.3-4.4.4":0.11649},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23898,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.07518},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.07518},Q:{"10.4":0.03133},O:{"0":0.51373},H:{"0":3.68927},L:{"0":56.41495},S:{"2.5":0.0188}}; 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 5d2c740aabc7a5..e78eb851310712 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:{"50":0.00372,"51":0.02233,"52":0.05209,"53":0.02233,"54":0.01488,"55":0.02605,"56":0.21954,"57":0.01488,"58":0.00744,"59":0.00744,"68":0.00744,"78":0.01861,"81":0.00372,"84":0.00372,"87":0.04837,"88":0.00744,"89":0.00372,"91":0.01116,"94":0.00372,"95":0.00744,"96":0.00744,"97":0.01116,"98":0.33117,"99":0.93397,"100":0.01116,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 82 83 85 86 90 92 93 101 3.5 3.6"},D:{"38":0.00744,"39":0.00744,"40":0.00744,"41":0.00744,"42":0.00744,"43":0.01488,"44":0.00744,"45":0.00744,"46":0.01116,"47":0.01116,"48":0.01116,"49":0.07442,"50":0.00744,"51":0.00744,"52":0.00372,"53":0.02605,"54":0.00744,"55":0.00744,"56":0.02605,"57":0.01116,"58":0.01488,"59":0.00744,"60":0.01116,"61":0.01116,"62":0.00744,"63":0.01488,"64":0.01116,"65":0.01488,"66":0.00372,"67":0.00372,"68":0.01116,"69":0.01116,"70":0.01116,"71":0.01116,"72":0.00744,"73":0.00744,"74":0.01861,"75":0.01488,"76":0.01861,"77":0.00744,"78":0.01116,"79":0.12279,"80":0.02233,"81":0.01488,"83":0.03721,"84":0.03721,"85":0.03721,"86":0.05209,"87":0.05954,"88":0.02605,"89":0.03349,"90":0.02233,"91":0.03721,"92":0.05582,"93":0.02233,"94":0.04465,"95":0.03721,"96":0.10047,"97":0.08558,"98":0.13396,"99":3.56472,"100":20.19759,"101":0.34605,"102":0.01116,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 103 104"},F:{"28":0.01861,"46":0.00744,"84":0.06698,"85":0.32001,"86":0.00372,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00744},B:{"14":0.00372,"16":0.00744,"17":0.00372,"18":0.01861,"84":0.01488,"85":0.00372,"86":0.00744,"87":0.00372,"88":0.00372,"89":0.00744,"90":0.00372,"91":0.00744,"92":0.01116,"94":0.00744,"95":0.00744,"96":0.01116,"97":0.01116,"98":0.01488,"99":0.27163,"100":2.05027,"101":0.02977,_:"12 13 15 79 80 81 83 93"},E:{"4":0,"12":0.00372,"13":0.03721,"14":0.12279,"15":0.10047,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01488,"10.1":0.00744,"11.1":0.01116,"12.1":0.01861,"13.1":0.11163,"14.1":0.4614,"15.1":0.13768,"15.2-15.3":0.13768,"15.4":1.21677},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00304,"6.0-6.1":0.00608,"7.0-7.1":0.01521,"8.1-8.4":0.00304,"9.0-9.2":0.00761,"9.3":0.04716,"10.0-10.2":0.01521,"10.3":0.0715,"11.0-11.2":0.01978,"11.3-11.4":0.02434,"12.0-12.1":0.02282,"12.2-12.5":0.63283,"13.0-13.1":0.02586,"13.2":0.01673,"13.3":0.06541,"13.4-13.7":0.17038,"14.0-14.4":0.59632,"14.5-14.8":1.7555,"15.0-15.1":0.86862,"15.2-15.3":4.50436,"15.4":6.33592},P:{"4":0.1965,"5.0-5.4":0.04085,"6.2-6.4":0.01021,"7.2-7.4":0.10342,"8.2":0.0201,"9.2":0.03103,"10.1":0.07035,"11.1-11.2":0.10342,"12.0":0.02068,"13.0":0.08274,"14.0":0.14479,"15.0":0.09308,"16.0":2.03735},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0007,"4.2-4.3":0.00279,"4.4":0,"4.4.3-4.4.4":0.02791},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01128,"9":0.01504,"10":0.00376,"11":0.66574,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.28256},H:{"0":0.23778},L:{"0":46.37747},S:{"2.5":0},R:{_:"0"},M:{"0":0.1193},Q:{"10.4":0}}; +module.exports={C:{"51":0.01834,"52":0.044,"53":0.01467,"54":0.011,"55":0.01834,"56":0.05867,"57":0.011,"58":0.00733,"59":0.00367,"68":0.00367,"72":0.00367,"78":0.01834,"79":0.00733,"80":0.00367,"83":0.00367,"84":0.00733,"88":0.01467,"91":0.011,"94":0.00367,"95":0.00733,"96":0.00367,"97":0.00733,"98":0.04034,"99":0.19068,"100":0.97909,"101":0.01467,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 81 82 85 86 87 89 90 92 93 102 103 3.5 3.6"},D:{"25":0.00733,"38":0.00733,"39":0.00367,"40":0.00367,"41":0.00733,"42":0.00367,"43":0.011,"44":0.00367,"45":0.00733,"46":0.00733,"47":0.00733,"48":0.00733,"49":0.06601,"50":0.00733,"51":0.00367,"52":0.00367,"53":0.022,"54":0.00733,"55":0.00733,"56":0.01834,"57":0.00733,"58":0.011,"59":0.00733,"60":0.00733,"61":0.00733,"62":0.00733,"63":0.011,"64":0.00733,"65":0.011,"66":0.00367,"67":0.00367,"68":0.01834,"69":0.01467,"70":0.011,"71":0.01834,"72":0.01467,"73":0.011,"74":0.02934,"75":0.01834,"76":0.02567,"77":0.01467,"78":0.022,"79":0.11734,"80":0.02934,"81":0.022,"83":0.04767,"84":0.05134,"85":0.05501,"86":0.07334,"87":0.07701,"88":0.03667,"89":0.04034,"90":0.033,"91":0.04767,"92":0.05134,"93":0.01834,"94":0.03667,"95":0.033,"96":0.06967,"97":0.06967,"98":0.06967,"99":0.14668,"100":3.96036,"101":18.67236,"102":1.96918,"103":0.01467,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 104"},F:{"28":0.01467,"46":0.00733,"85":0.16868,"86":0.19435,"87":0.011,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00367,"18":0.022,"81":0.00367,"83":0.00367,"84":0.011,"85":0.00367,"86":0.00367,"87":0.00367,"89":0.00733,"90":0.00733,"91":0.00367,"92":0.011,"96":0.00733,"97":0.00733,"98":0.011,"99":0.01834,"100":0.07701,"101":2.32488,_:"12 13 14 15 16 79 80 88 93 94 95"},E:{"4":0,"13":0.02567,"14":0.10268,"15":0.07334,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.05501,"10.1":0.00733,"11.1":0.011,"12.1":0.01467,"13.1":0.09534,"14.1":0.37037,"15.1":0.09168,"15.2-15.3":0.08067,"15.4":2.02418,"15.5":0.17602},G:{"8":0.00154,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00154,"5.0-5.1":0.00461,"6.0-6.1":0.00768,"7.0-7.1":0.01383,"8.1-8.4":0.00922,"9.0-9.2":0.01383,"9.3":0.0507,"10.0-10.2":0.02151,"10.3":0.07374,"11.0-11.2":0.03533,"11.3-11.4":0.02919,"12.0-12.1":0.03841,"12.2-12.5":0.62066,"13.0-13.1":0.03533,"13.2":0.02151,"13.3":0.06606,"13.4-13.7":0.16746,"14.0-14.4":0.52541,"14.5-14.8":1.4349,"15.0-15.1":0.61145,"15.2-15.3":1.17834,"15.4":10.39919},P:{"4":0.17667,"5.0-5.4":0.04074,"6.2-6.4":0.02037,"7.2-7.4":0.09353,"8.2":0.04047,"9.2":0.03118,"10.1":0.02078,"11.1-11.2":0.10392,"12.0":0.02078,"13.0":0.06235,"14.0":0.10392,"15.0":0.07275,"16.0":0.85216},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.00463,"4.4":0,"4.4.3-4.4.4":0.03151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00746,"9":0.01119,"10":0.00373,"11":0.41032,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.1393},Q:{"10.4":0},O:{"0":0.26594},H:{"0":0.2278},L:{"0":46.11252},S:{"2.5":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 be6aedfb21955a..779e4c52466ba8 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:{"30":0.00283,"32":0.00565,"35":0.00848,"52":0.09323,"56":0.00565,"70":0.00283,"72":0.24578,"78":0.0226,"79":0.00565,"80":0.00848,"81":0.00848,"82":0.00565,"83":0.00848,"88":0.00283,"91":0.03955,"92":0.00283,"94":0.0113,"95":0.00848,"96":0.00283,"97":0.0113,"98":0.17798,"99":0.84185,"100":0.01413,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 84 85 86 87 89 90 93 101 3.5 3.6"},D:{"11":0.00565,"35":0.00565,"37":0.00283,"40":0.00565,"44":0.09888,"45":0.00283,"47":0.00565,"49":0.0226,"50":0.00283,"57":0.00283,"62":0.00848,"63":0.00565,"64":0.00283,"67":0.00565,"69":0.01695,"70":0.00848,"71":0.01978,"72":0.00565,"74":0.0113,"75":0.02543,"76":0.00283,"78":0.00565,"79":0.25708,"80":0.02543,"81":0.00848,"83":0.12713,"84":0.43223,"85":0.04238,"86":0.62715,"87":0.09323,"88":0.01695,"89":0.08475,"90":0.01695,"91":0.03955,"92":0.04238,"93":0.02543,"94":0.01695,"95":0.01413,"96":0.42093,"97":0.11018,"98":0.2373,"99":2.0114,"100":12.14468,"101":0.226,"102":0.00283,_:"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 36 38 39 41 42 43 46 48 51 52 53 54 55 56 58 59 60 61 65 66 68 73 77 103 104"},F:{"27":0.00565,"36":0.00565,"63":0.00283,"64":0.00283,"68":0.00848,"78":0.00848,"79":0.00848,"80":0.01695,"82":0.0113,"83":0.00848,"84":0.19493,"85":1.13565,"86":0.03955,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 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 65 66 67 69 70 71 72 73 74 75 76 77 81 87 9.5-9.6 10.6 11.1 11.5 11.6","10.0-10.1":0,"10.5":0.00565,"12.1":0.00283},B:{"12":0.0113,"13":0.00565,"14":0.00565,"15":0.00565,"16":0.00565,"17":0.0339,"18":0.0339,"84":0.02543,"85":0.0113,"86":0.01695,"87":0.01413,"88":0.01695,"89":0.01978,"90":0.02825,"91":0.0226,"92":0.03955,"93":0.0113,"94":0.0113,"95":0.01978,"96":0.02543,"97":0.03108,"98":0.02825,"99":0.15255,"100":0.57065,"101":0.00848,_:"79 80 81 83"},E:{"4":0,"13":0.04238,"14":0.05085,"15":0.02543,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":1.38143,"11.1":0.00283,"12.1":0.01978,"13.1":0.07345,"14.1":0.06215,"15.1":0.08193,"15.2-15.3":0.14125,"15.4":0.17515},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00189,"5.0-5.1":0.00283,"6.0-6.1":0.00094,"7.0-7.1":0.01602,"8.1-8.4":0.00189,"9.0-9.2":0.02545,"9.3":0.02922,"10.0-10.2":0.01225,"10.3":0.05561,"11.0-11.2":0.01979,"11.3-11.4":0.03959,"12.0-12.1":0.06881,"12.2-12.5":0.67864,"13.0-13.1":0.05938,"13.2":0.01885,"13.3":0.07729,"13.4-13.7":0.21584,"14.0-14.4":0.70031,"14.5-14.8":0.66827,"15.0-15.1":1.02078,"15.2-15.3":3.86068,"15.4":1.84645},P:{"4":1.23616,"5.0-5.4":0.1407,"6.2-6.4":0.2412,"7.2-7.4":0.57285,"8.2":0.0201,"9.2":0.25125,"10.1":0.07035,"11.1-11.2":0.27135,"12.0":0.11055,"13.0":0.2613,"14.0":0.3618,"15.0":0.21105,"16.0":1.96981},I:{"0":0,"3":0,"4":0.00083,"2.1":0,"2.2":0,"2.3":0.00248,"4.1":0.00455,"4.2-4.3":0.012,"4.4":0,"4.4.3-4.4.4":0.04471},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01207,"9":0.02414,"11":0.09656,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.16235},H:{"0":2.07181},L:{"0":53.88708},S:{"2.5":0},R:{_:"0"},M:{"0":0.0287},Q:{"10.4":0}}; +module.exports={C:{"32":0.0027,"35":0.0027,"47":0.0108,"52":0.31602,"72":0.05672,"78":0.0054,"81":0.0081,"82":0.59422,"83":0.0081,"86":0.0027,"88":0.0054,"89":0.01351,"90":0.0027,"91":0.04052,"93":0.0054,"94":0.0054,"95":0.0054,"96":0.0081,"97":0.0054,"98":0.02161,"99":0.19717,"100":0.90754,"101":0.0027,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 84 85 87 92 102 103 3.5 3.6"},D:{"11":0.0108,"35":0.0081,"40":0.0108,"44":0.06212,"45":0.0027,"46":0.0027,"47":0.0081,"49":0.03781,"50":0.0027,"53":0.0027,"61":0.0027,"62":0.02701,"63":0.01891,"64":0.0027,"65":0.0108,"67":0.01891,"69":0.0081,"70":0.0027,"71":0.0108,"72":0.0054,"73":0.0054,"74":0.01621,"75":0.0108,"76":0.0081,"77":0.0027,"78":0.0108,"79":0.17016,"80":0.02161,"81":0.01621,"83":0.02971,"84":0.02971,"85":0.16746,"86":0.90213,"87":0.60232,"88":0.01351,"89":0.03511,"90":0.05942,"91":0.13775,"92":0.03781,"93":0.02161,"94":0.03511,"95":0.02431,"96":0.11074,"97":0.04592,"98":0.12155,"99":0.11074,"100":2.1608,"101":9.90997,"102":0.91834,"104":0.0054,_:"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 36 37 38 39 41 42 43 48 51 52 54 55 56 57 58 59 60 66 68 103"},F:{"11":0.0027,"34":0.0027,"36":0.0054,"63":0.0108,"68":0.02431,"72":0.0027,"73":0.0027,"75":0.0027,"78":0.01351,"79":0.02161,"80":0.0054,"81":0.0027,"82":0.0108,"83":0.0081,"84":0.0081,"85":0.50239,"86":0.76979,"87":0.05402,_:"9 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 69 70 71 74 76 77 9.5-9.6 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0,"10.5":0.0027},B:{"12":0.0081,"13":0.0027,"14":0.0027,"15":0.01351,"16":0.0054,"17":0.01621,"18":0.02971,"84":0.02971,"85":0.0108,"87":0.0027,"88":0.0054,"89":0.0108,"90":0.0054,"91":0.0027,"92":0.0108,"94":0.0027,"95":0.0054,"96":0.0054,"97":0.0081,"98":0.0108,"99":0.01351,"100":0.03781,"101":0.76168,_:"79 80 81 83 86 93"},E:{"4":0,"13":0.04862,"14":0.04322,"15":0.0081,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":1.6314,"12.1":0.0054,"13.1":0.03241,"14.1":0.06753,"15.1":0.07833,"15.2-15.3":0.11614,"15.4":0.38084,"15.5":0.01891},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01033,"5.0-5.1":0.00947,"6.0-6.1":0.00086,"7.0-7.1":0.00947,"8.1-8.4":0,"9.0-9.2":0.02325,"9.3":0.03617,"10.0-10.2":0.01206,"10.3":0.11539,"11.0-11.2":0.01894,"11.3-11.4":0.03444,"12.0-12.1":0.11883,"12.2-12.5":0.61225,"13.0-13.1":0.03186,"13.2":0.02239,"13.3":0.05769,"13.4-13.7":0.155,"14.0-14.4":0.589,"14.5-14.8":0.8103,"15.0-15.1":0.83183,"15.2-15.3":1.44236,"15.4":3.67091},P:{"4":1.04204,"5.0-5.4":0.13152,"6.2-6.4":0.15175,"7.2-7.4":0.62725,"8.2":0.04047,"9.2":0.23269,"10.1":0.05058,"11.1-11.2":0.26304,"12.0":0.10117,"13.0":0.23269,"14.0":0.35409,"15.0":0.17199,"16.0":1.23426},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00117,"4.1":0.00311,"4.2-4.3":0.00389,"4.4":0,"4.4.3-4.4.4":0.05022},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00289,"9":0.00866,"11":0.15591,_:"6 7 10 5.5"},J:{"7":0,"10":0.0146},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.05109},Q:{"10.4":0},O:{"0":1.4598},H:{"0":2.45313},L:{"0":55.29632},S:{"2.5":0}}; 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 b6d7f3933f0346..2eaee8c40efcc9 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:{"98":0.14765,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 99 100 101 3.5 3.6"},D:{"99":0.0579,"100":0.53268,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 101 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"84":0.23739,"96":0.02895,"99":0.1187,"100":0.26634,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 97 98 101"},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 14.1","13.1":0.0579,"15.1":2.72709,"15.2-15.3":2.01492,"15.4":2.19152},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.02774,"13.4-13.7":0.09014,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":2.81512,"15.2-15.3":60.84398,"15.4":5.56783},P:{"4":0.09786,"5.0-5.4":0.02446,"6.2-6.4":0.0103,"7.2-7.4":0.1442,"8.2":0.02446,"9.2":0.36472,"10.1":0.0309,"11.1-11.2":0.1339,"12.0":0.0515,"13.0":0.1545,"14.0":0.2884,"15.0":0.03039,"16.0":0.15197},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:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":1.15812},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0}}; +module.exports={C:{"100":0.01998,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 101 102 103 3.5 3.6"},D:{"99":0.0799,"100":0.27966,"101":0.23971,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.05993,"101":0.05993,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},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","15.1":9.80322,"15.2-15.3":1.96764,"15.4":25.91387},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.01948,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":2.4203,"15.2-15.3":7.54823,"15.4":38.70535},P:{"4":0.15814,"5.0-5.4":0.04074,"6.2-6.4":0.04518,"7.2-7.4":0.0113,"8.2":0.04047,"9.2":0.03389,"10.1":0.02078,"11.1-11.2":0.09385,"12.0":0.0113,"13.0":0.0113,"14.0":0.16464,"15.0":0.0113,"16.0":0.02058},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.02648,_:"11"},R:{_:"0"},M:{"0":0.04005},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":1.14137},S:{"2.5":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 f2f6b0d8a74580..23211a9decbc65 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:{"17":0.01542,"20":0.00514,"21":0.04627,"30":0.01028,"31":0.01028,"33":0.01028,"34":0.00514,"37":0.04113,"38":0.01028,"41":0.21078,"43":0.00514,"44":0.01028,"46":0.00514,"47":0.04627,"48":0.04113,"49":0.01028,"50":0.03085,"54":0.01028,"55":0.01028,"56":0.02571,"57":0.01028,"58":0.01028,"61":0.09768,"65":0.01028,"69":0.02056,"72":0.04627,"78":0.10282,"79":0.4884,"81":0.01028,"84":0.01028,"85":0.07712,"86":0.00514,"88":0.03085,"89":0.09768,"91":0.08226,"92":0.03599,"93":0.02571,"94":0.03599,"95":0.10796,"96":0.02056,"97":0.10796,"98":2.93551,"99":5.55742,"100":0.57065,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 22 23 24 25 26 27 28 29 32 35 36 39 40 42 45 51 52 53 59 60 62 63 64 66 67 68 70 71 73 74 75 76 77 80 82 83 87 90 101 3.5 3.6"},D:{"31":0.01542,"40":0.03085,"43":0.04113,"49":0.04627,"58":0.08226,"61":0.02571,"62":0.10282,"63":0.18508,"64":0.01028,"65":0.11824,"67":0.01542,"68":0.03085,"72":0.01542,"74":0.02571,"75":0.01542,"76":0.00514,"79":0.01028,"80":0.05141,"81":0.01028,"83":0.02056,"84":0.17479,"85":0.02056,"86":0.01542,"87":0.37529,"88":0.19022,"89":0.01542,"90":0.03085,"91":0.02056,"92":0.04627,"93":0.01542,"94":0.06683,"95":0.07197,"96":0.44727,"97":0.10796,"98":0.27247,"99":4.93536,"100":21.49966,"101":0.25705,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 66 69 70 71 73 77 78 102 103 104"},F:{"63":0.01028,"77":0.00514,"79":0.01028,"81":0.01028,"82":0.04627,"84":0.12338,"85":0.7403,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 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:{"12":0.08226,"13":0.02056,"14":0.01542,"15":0.05655,"16":0.03085,"17":0.04113,"18":0.17479,"80":0.01028,"84":0.02056,"85":0.00514,"87":0.04113,"89":0.00514,"90":0.01542,"91":0.00514,"92":0.02056,"93":0.02056,"96":0.10796,"97":0.06683,"98":0.12853,"99":0.96137,"100":5.27467,"101":0.08226,_:"79 81 83 86 88 94 95"},E:{"4":0,"12":0.02571,"13":0.01028,"14":0.0874,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1","5.1":0.00514,"9.1":0.01028,"10.1":0.05655,"11.1":0.01542,"12.1":0.06169,"13.1":0.10282,"14.1":0.17994,"15.1":0.22106,"15.2-15.3":0.04627,"15.4":0.17479},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00091,"6.0-6.1":0,"7.0-7.1":0.00592,"8.1-8.4":0,"9.0-9.2":0.0082,"9.3":0.00501,"10.0-10.2":0.00547,"10.3":0.01367,"11.0-11.2":0.0164,"11.3-11.4":0.04375,"12.0-12.1":0.05742,"12.2-12.5":0.58464,"13.0-13.1":0.04283,"13.2":0.02415,"13.3":0.12486,"13.4-13.7":0.19594,"14.0-14.4":0.91091,"14.5-14.8":0.92595,"15.0-15.1":0.44019,"15.2-15.3":0.72043,"15.4":0.43108},P:{"4":0.2884,"5.0-5.4":0.04085,"6.2-6.4":0.0103,"7.2-7.4":0.1442,"8.2":0.0201,"9.2":0.0412,"10.1":0.0309,"11.1-11.2":0.1339,"12.0":0.0515,"13.0":0.1545,"14.0":0.2884,"15.0":0.0824,"16.0":0.4944},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00117,"4.2-4.3":0.00583,"4.4":0,"4.4.3-4.4.4":0.00758},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17479,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.72399},H:{"0":1.60087},L:{"0":40.8125},S:{"2.5":0},R:{_:"0"},M:{"0":0.13605},Q:{"10.4":0.00972}}; +module.exports={C:{"6":0.00483,"8":0.00483,"12":0.00483,"18":0.00483,"20":0.00483,"21":0.05797,"24":0.00483,"30":0.01932,"31":0.00483,"34":0.00966,"35":0.03382,"37":0.02416,"38":0.00966,"39":0.00483,"40":0.00483,"41":0.24155,"43":0.05314,"44":0.02416,"47":0.03865,"48":0.06763,"50":0.00966,"52":0.06763,"53":0.00483,"56":0.04831,"57":0.03382,"61":0.09662,"65":0.03865,"66":0.00966,"67":0.0628,"68":0.00483,"72":0.05797,"75":0.00966,"78":0.02899,"79":0.4058,"81":0.00483,"84":0.00966,"85":0.0628,"88":0.12561,"89":0.05314,"91":0.15459,"92":0.02416,"94":0.01932,"95":0.07247,"96":0.00966,"97":0.03865,"98":0.16909,"99":2.20294,"100":5.54599,"101":0.67634,_:"2 3 4 5 7 9 10 11 13 14 15 16 17 19 22 23 25 26 27 28 29 32 33 36 42 45 46 49 51 54 55 58 59 60 62 63 64 69 70 71 73 74 76 77 80 82 83 86 87 90 93 102 103 3.5 3.6"},D:{"20":0.00483,"31":0.03382,"40":0.00966,"43":0.0628,"46":0.00966,"49":0.08213,"53":0.01449,"55":0.02899,"56":0.01932,"58":0.0628,"61":0.03382,"62":0.03865,"63":0.04348,"65":0.0773,"67":0.01932,"68":0.03865,"71":0.00483,"74":0.02899,"75":0.01932,"78":0.02899,"79":0.00966,"80":0.04831,"81":0.00966,"83":0.02899,"84":0.11594,"85":0.01449,"86":0.03865,"87":0.29469,"88":0.04831,"89":0.07247,"90":0.03382,"91":0.04831,"92":0.07247,"93":0.01449,"94":0.02899,"95":0.0628,"96":0.22706,"97":0.15942,"98":0.19324,"99":0.39131,"100":5.20299,"101":18.43993,"102":1.65703,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 44 45 47 48 50 51 52 54 57 59 60 64 66 69 70 72 73 76 77 103 104"},F:{"75":0.01449,"79":0.00483,"84":0.01932,"85":0.32368,"86":0.51209,"87":0.02899,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 80 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.05797,"13":0.02416,"14":0.03382,"15":0.00966,"16":0.03865,"17":0.04348,"18":0.15459,"80":0.03382,"84":0.05314,"85":0.00966,"88":0.00966,"89":0.00966,"90":0.01932,"91":0.00966,"92":0.04831,"95":0.00483,"96":0.05797,"97":0.02899,"98":0.01932,"99":0.05797,"100":0.66185,"101":4.46868,_:"79 81 83 86 87 93 94"},E:{"4":0,"8":0.00966,"11":0.00483,"12":0.02416,"13":0.00483,"14":0.08696,_:"0 5 6 7 9 10 15 3.1 3.2 5.1 6.1 7.1 15.5","9.1":0.00966,"10.1":0.05314,"11.1":0.02899,"12.1":0.02899,"13.1":0.0773,"14.1":0.12561,"15.1":0.17392,"15.2-15.3":0.01932,"15.4":0.18358},G:{"8":0,"3.2":0.00157,"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.00681,"9.3":0.00262,"10.0-10.2":0.00785,"10.3":0.03717,"11.0-11.2":0.01256,"11.3-11.4":0.02984,"12.0-12.1":0.04711,"12.2-12.5":0.73652,"13.0-13.1":0.067,"13.2":0.01361,"13.3":0.10731,"13.4-13.7":0.26854,"14.0-14.4":0.92549,"14.5-14.8":0.86372,"15.0-15.1":0.40307,"15.2-15.3":0.43395,"15.4":1.27045},P:{"4":0.23985,"5.0-5.4":0.04074,"6.2-6.4":0.01043,"7.2-7.4":0.21899,"8.2":0.04047,"9.2":0.03128,"10.1":0.02078,"11.1-11.2":0.09385,"12.0":0.01043,"13.0":0.05214,"14.0":0.37542,"15.0":0.06257,"16.0":0.4067},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00126,"4.2-4.3":0.00461,"4.4":0,"4.4.3-4.4.4":0.00964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24155,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.04134},Q:{"10.4":0},O:{"0":0.68218},H:{"0":1.60971},L:{"0":43.69669},S:{"2.5":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 180fa97cc3657c..8cb1be6c6865ba 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:{"43":0.26809,"47":0.01711,"51":0.01711,"60":0.0057,"66":0.0057,"82":0.06845,"83":0.01711,"86":0.01711,"89":0.01711,"91":0.18253,"93":0.0057,"94":0.03993,"95":0.02282,"96":0.15971,"97":0.01711,"98":0.1369,"99":1.0039,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 52 53 54 55 56 57 58 59 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 84 85 87 88 90 92 100 101 3.5 3.6"},D:{"49":0.03993,"57":0.0057,"67":0.01711,"68":0.04563,"71":0.06274,"72":0.0057,"77":0.02852,"78":0.0057,"79":0.2909,"81":0.01711,"83":0.03993,"84":0.01711,"86":0.15401,"87":0.03993,"89":0.04563,"90":1.00961,"91":0.02282,"92":0.22246,"94":0.0057,"95":0.03993,"96":1.05524,"97":0.13119,"98":0.09126,"99":4.97959,"100":36.28314,"101":0.24527,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 58 59 60 61 62 63 64 65 66 69 70 73 74 75 76 80 85 88 93 102 103 104"},F:{"19":0.09126,"34":0.0057,"47":0.41069,"51":0.30231,"64":0.06845,"76":0.0057,"79":0.03993,"82":0.02282,"84":0.03993,"85":0.22246,"86":0.02282,_:"9 11 12 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 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.09126,"86":0.0057,"90":0.01711,"92":0.01711,"99":0.75863,"100":0.54758,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 91 93 94 95 96 97 98 101"},E:{"4":0,"14":0.29661,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","13.1":0.03993,"14.1":0.18253,"15.1":0.03993,"15.4":0.05134},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,"11.0-11.2":0.00648,"11.3-11.4":0,"12.0-12.1":0.00648,"12.2-12.5":0.2248,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.15347,"14.5-14.8":0.09943,"15.0-15.1":3.15368,"15.2-15.3":9.34431,"15.4":8.61804},P:{"4":0.05271,"5.0-5.4":0.02056,"6.2-6.4":0.03136,"7.2-7.4":0.11597,"8.2":0.02446,"9.2":0.03084,"10.1":0.01028,"11.1-11.2":0.03163,"12.0":0.04112,"13.0":0.05271,"14.0":0.05271,"15.0":0.04217,"16.0":1.71847},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00011,"4.2-4.3":0.00032,"4.4":0,"4.4.3-4.4.4":0.00816},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2852,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.06111},H:{"0":0.0244},L:{"0":17.63426},S:{"2.5":0},R:{_:"0"},M:{"0":0.43819},Q:{"10.4":0}}; +module.exports={C:{"60":1.51511,"91":0.07047,"99":0.18401,"100":2.76008,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 101 102 103 3.5 3.6"},D:{"71":0.11354,"79":0.52853,"80":0.01566,"84":0.01566,"89":0.1566,"90":0.43065,"92":0.02741,"95":0.01566,"96":0.05873,"97":0.02741,"98":0.05873,"99":0.2858,"100":6.78078,"101":19.92735,"102":2.30202,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 81 83 85 86 87 88 91 93 94 103 104"},F:{"54":0.02741,"85":0.01566,"86":0.01566,_:"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 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"99":0.19967,"100":0.01566,"101":0.14486,_:"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"},E:{"4":0,"14":0.01566,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.2-15.3","5.1":0.17226,"12.1":0.02741,"13.1":0.05873,"14.1":0.05873,"15.1":0.05873,"15.4":0.61466,"15.5":0.1292},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.08348,"9.3":0.05445,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.02904,"12.2-12.5":0.02904,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.07259,"14.0-14.4":0.06896,"14.5-14.8":0.04356,"15.0-15.1":5.41189,"15.2-15.3":7.89823,"15.4":22.60579},P:{"4":0.40386,"5.0-5.4":0.01021,"6.2-6.4":0.02051,"7.2-7.4":0.07068,"8.2":0.04047,"9.2":0.14135,"10.1":0.13125,"11.1-11.2":0.04039,"12.0":0.03063,"13.0":0.18174,"14.0":0.2827,"15.0":0.13125,"16.0":0.86829},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00522,"4.2-4.3":0.00386,"4.4":0,"4.4.3-4.4.4":0.00309},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05873,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.71803},Q:{"10.4":0},O:{"0":0.34685},H:{"0":0.12098},L:{"0":20.48634},S:{"2.5":0.03043}}; 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 cb2ba7b7779773..0e30256682f2cb 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:{"52":0.08026,"66":0.00803,"72":0.00401,"78":0.04013,"79":0.01204,"84":0.00803,"87":0.00401,"88":0.01204,"89":0.00803,"91":0.03612,"95":0.02007,"96":0.01605,"97":0.01605,"98":0.31703,"99":1.18384,"100":0.00803,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 80 81 82 83 85 86 90 92 93 94 101 3.5 3.6"},D:{"38":0.00803,"39":0.00803,"42":0.00401,"43":0.00803,"47":0.00803,"49":0.2167,"52":0.00803,"56":0.01605,"58":0.00401,"62":0.00401,"63":0.02408,"64":0.00803,"65":0.02007,"66":0.00401,"67":0.01204,"68":0.00401,"69":0.00803,"70":0.01605,"71":0.01204,"72":0.00401,"73":0.00803,"74":0.01605,"75":0.00803,"76":0.00803,"77":0.01204,"78":0.01204,"79":0.04816,"80":0.04013,"81":0.04013,"83":0.07223,"84":0.06822,"85":0.05618,"86":0.0923,"87":0.17256,"88":0.0321,"89":0.0602,"90":0.03612,"91":0.07625,"92":0.09631,"93":0.08829,"94":0.04816,"95":0.04816,"96":0.15651,"97":0.20065,"98":0.28492,"99":4.31799,"100":22.9985,"101":0.31703,"102":0.00803,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 44 45 46 48 50 51 53 54 55 57 59 60 61 103 104"},F:{"28":0.00803,"40":0.01204,"83":0.00803,"84":0.45748,"85":1.70553,"86":0.02408,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 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 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.00803,"13":0.01605,"15":0.01204,"16":0.01605,"17":0.04013,"18":0.02007,"83":0.00803,"84":0.00803,"85":0.00803,"86":0.00803,"88":0.00401,"89":0.00803,"90":0.00803,"91":0.00803,"92":0.02408,"93":0.00803,"94":0.00401,"95":0.00803,"96":0.0321,"97":0.03612,"98":0.02408,"99":0.34111,"100":2.34359,"101":0.02809,_:"14 79 80 81 87"},E:{"4":0,"12":0.00803,"13":0.02007,"14":0.02809,"15":0.02809,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00401,"11.1":0.00401,"12.1":0.00803,"13.1":0.02809,"14.1":0.07625,"15.1":0.02408,"15.2-15.3":0.02408,"15.4":0.08829},G:{"8":0,"3.2":0,"4.0-4.1":0.00075,"4.2-4.3":0,"5.0-5.1":0.00904,"6.0-6.1":0.00113,"7.0-7.1":0.03315,"8.1-8.4":0.00113,"9.0-9.2":0.00151,"9.3":0.0535,"10.0-10.2":0.00414,"10.3":0.06065,"11.0-11.2":0.01055,"11.3-11.4":0.01093,"12.0-12.1":0.0098,"12.2-12.5":0.32738,"13.0-13.1":0.0113,"13.2":0.00603,"13.3":0.02637,"13.4-13.7":0.09456,"14.0-14.4":0.27954,"14.5-14.8":0.60579,"15.0-15.1":0.21436,"15.2-15.3":1.0428,"15.4":0.96142},P:{"4":0.46394,"5.0-5.4":0.02446,"6.2-6.4":0.03136,"7.2-7.4":0.17527,"8.2":0.02446,"9.2":0.03093,"10.1":0.0309,"11.1-11.2":0.19589,"12.0":0.03093,"13.0":0.14434,"14.0":0.18558,"15.0":0.1031,"16.0":1.71143},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00412,"4.2-4.3":0.00647,"4.4":0,"4.4.3-4.4.4":0.05527},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00401,"11":0.07223,_:"6 7 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.13171},H:{"0":0.26073},L:{"0":54.43227},S:{"2.5":0},R:{_:"0"},M:{"0":0.07783},Q:{"10.4":0}}; +module.exports={C:{"52":0.07994,"71":0.004,"78":0.02398,"79":0.00799,"80":0.01199,"84":0.004,"87":0.004,"88":0.01199,"89":0.00799,"91":0.02798,"95":0.01199,"96":0.004,"97":0.01599,"98":0.01199,"99":0.28778,"100":1.10317,"101":0.01199,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 81 82 83 85 86 90 92 93 94 102 103 3.5 3.6"},D:{"30":0.00799,"38":0.004,"39":0.00799,"43":0.004,"47":0.00799,"48":0.00799,"49":0.17587,"50":0.004,"56":0.01999,"58":0.00799,"62":0.004,"63":0.01999,"64":0.00799,"65":0.01599,"66":0.00799,"67":0.01599,"68":0.00799,"69":0.00799,"70":0.01999,"71":0.01199,"72":0.004,"73":0.00799,"74":0.02798,"75":0.004,"76":0.00799,"77":0.02798,"78":0.03597,"79":0.07594,"80":0.02398,"81":0.03198,"83":0.03597,"84":0.07195,"85":0.07994,"86":0.09193,"87":0.15189,"88":0.02798,"89":0.05596,"90":0.04796,"91":0.10792,"92":0.07994,"93":0.03997,"94":0.03997,"95":0.04397,"96":0.1399,"97":0.12391,"98":0.18786,"99":0.34374,"100":4.36872,"101":21.14413,"102":2.23033,"103":0.01199,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 40 41 42 44 45 46 51 52 53 54 55 57 59 60 61 104"},F:{"28":0.01199,"40":0.004,"82":0.00799,"83":0.004,"84":0.01199,"85":1.41494,"86":1.40295,"87":0.04796,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00799,"16":0.004,"18":0.01999,"84":0.004,"89":0.004,"92":0.01599,"96":0.00799,"97":0.01199,"98":0.01199,"99":0.03597,"100":0.11192,"101":2.34624,_:"12 14 15 17 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"9":0.00799,"13":0.01199,"14":0.03198,"15":0.01199,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00799,"13.1":0.02798,"14.1":0.05996,"15.1":0.01999,"15.2-15.3":0.01199,"15.4":0.11192,"15.5":0.01599},G:{"8":0,"3.2":0,"4.0-4.1":0.00078,"4.2-4.3":0,"5.0-5.1":0.01362,"6.0-6.1":0.00078,"7.0-7.1":0.03463,"8.1-8.4":0.00195,"9.0-9.2":0.00117,"9.3":0.05097,"10.0-10.2":0.00428,"10.3":0.04941,"11.0-11.2":0.00817,"11.3-11.4":0.00817,"12.0-12.1":0.00895,"12.2-12.5":0.29375,"13.0-13.1":0.00778,"13.2":0.00428,"13.3":0.02179,"13.4-13.7":0.08287,"14.0-14.4":0.23383,"14.5-14.8":0.5447,"15.0-15.1":0.17586,"15.2-15.3":0.37429,"15.4":1.96793},P:{"4":0.23644,"5.0-5.4":0.04074,"6.2-6.4":0.02051,"7.2-7.4":0.13364,"8.2":0.04047,"9.2":0.02056,"10.1":0.02078,"11.1-11.2":0.1028,"12.0":0.02056,"13.0":0.14392,"14.0":0.11308,"15.0":0.07196,"16.0":0.72987},I:{"0":0,"3":0,"4":0.00139,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00417,"4.2-4.3":0.00556,"4.4":0,"4.4.3-4.4.4":0.05491},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04796,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.07204},Q:{"10.4":0},O:{"0":0.10205},H:{"0":0.26143},L:{"0":55.08703},S:{"2.5":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 dbe6fc5884734a..8754b0e23e89d1 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:{"46":0.01437,"57":0.00479,"78":0.01916,"84":0.00479,"92":0.01437,"94":0.01437,"97":0.00479,"98":0.34016,"99":1.22171,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 91 93 95 96 100 101 3.5 3.6"},D:{"43":0.01437,"45":0.00958,"61":0.02396,"65":0.00479,"69":0.00479,"71":0.01437,"73":0.00958,"75":0.03354,"76":0.01916,"79":0.11978,"80":0.00479,"81":0.01437,"83":0.00958,"84":0.00958,"88":0.02396,"89":0.0527,"90":0.02875,"91":0.08145,"92":0.04312,"93":1.02527,"94":0.08145,"95":0.01437,"96":0.16289,"97":0.03354,"98":0.18206,"99":4.0436,"100":20.8169,"101":1.24087,"102":0.04791,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 66 67 68 70 72 74 77 78 85 86 87 103 104"},F:{"79":0.00958,"85":0.19643,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00958,"16":0.01437,"17":0.00958,"18":0.06228,"84":0.04312,"85":0.02875,"90":0.01437,"91":0.01916,"92":0.0527,"94":0.00958,"96":0.02875,"97":0.02875,"98":0.02875,"99":1.62894,"100":7.67518,"101":0.04312,_:"12 14 15 79 80 81 83 86 87 88 89 93 95"},E:{"4":0,"13":0.01437,"14":0.04791,"15":0.01437,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.01916,"12.1":0.01916,"13.1":0.02875,"14.1":0.08145,"15.1":0.03354,"15.2-15.3":0.01437,"15.4":0.03354},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.00708,"8.1-8.4":0.29756,"9.0-9.2":0,"9.3":0.02328,"10.0-10.2":0.00405,"10.3":0.07085,"11.0-11.2":0.02429,"11.3-11.4":0.04555,"12.0-12.1":0.06882,"12.2-12.5":1.80966,"13.0-13.1":0.27327,"13.2":0.05668,"13.3":0.14271,"13.4-13.7":0.25505,"14.0-14.4":0.52225,"14.5-14.8":1.19531,"15.0-15.1":0.42104,"15.2-15.3":3.46954,"15.4":1.43215},P:{"4":0.11499,"5.0-5.4":0.02446,"6.2-6.4":0.03136,"7.2-7.4":0.15681,"8.2":0.02446,"9.2":0.09408,"10.1":0.0309,"11.1-11.2":0.02091,"12.0":0.0515,"13.0":0.07318,"14.0":0.16726,"15.0":0.06272,"16.0":0.72131},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00618,"4.4":0,"4.4.3-4.4.4":0.00423},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09103,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.03646},H:{"0":0.08875},L:{"0":47.24684},S:{"2.5":0},R:{_:"0"},M:{"0":0.47393},Q:{"10.4":0}}; +module.exports={C:{"48":0.01466,"49":0.00489,"61":0.01466,"72":0.00977,"78":0.00977,"91":0.07818,"96":0.00977,"99":0.21498,"100":1.28502,"101":0.2443,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 97 98 102 103 3.5 3.6"},D:{"49":0.06352,"50":0.01466,"62":0.00977,"66":0.00489,"69":0.01466,"73":0.00489,"75":0.01466,"76":0.00977,"77":0.0342,"79":0.07329,"80":0.01954,"81":0.2443,"86":0.01466,"88":0.06352,"89":0.00977,"90":0.06352,"91":0.02443,"92":0.00489,"93":0.07329,"94":0.07329,"95":0.04397,"96":0.12704,"97":0.10261,"98":0.02443,"99":0.34691,"100":5.58958,"101":17.81924,"102":1.98372,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 63 64 65 67 68 70 71 72 74 78 83 84 85 87 103 104"},F:{"79":0.00977,"83":0.00977,"85":0.1759,"86":0.34202,"87":0.00489,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 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.01954,"13":0.02443,"15":0.00977,"16":0.02443,"18":0.07329,"80":0.01466,"84":0.15635,"85":0.01954,"89":0.03909,"90":0.00977,"92":0.01466,"96":0.02443,"97":0.04397,"98":0.00977,"99":0.01954,"100":0.37622,"101":6.65473,_:"14 17 79 81 83 86 87 88 91 93 94 95"},E:{"4":0,"12":0.00489,"13":0.01954,"14":0.26384,"15":0.01954,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 11.1 15.2-15.3","10.1":0.00489,"12.1":0.00489,"13.1":0.02932,"14.1":0.08795,"15.1":0.00489,"15.4":0.6987,"15.5":0.26384},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.00355,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03989,"10.0-10.2":0.0133,"10.3":0.03102,"11.0-11.2":0.00443,"11.3-11.4":0.00177,"12.0-12.1":0.03989,"12.2-12.5":0.88546,"13.0-13.1":0.07445,"13.2":0.04166,"13.3":0.14713,"13.4-13.7":0.35542,"14.0-14.4":1.02107,"14.5-14.8":1.19834,"15.0-15.1":0.47065,"15.2-15.3":2.11482,"15.4":2.41972},P:{"4":0.10254,"5.0-5.4":0.04074,"6.2-6.4":0.02051,"7.2-7.4":0.27685,"8.2":0.04047,"9.2":0.05127,"10.1":0.02078,"11.1-11.2":0.08203,"12.0":0.0113,"13.0":0.04101,"14.0":0.36913,"15.0":0.11279,"16.0":0.59471},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00511,"4.4":0,"4.4.3-4.4.4":0.01534},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.41694,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.26081},Q:{"10.4":0},O:{"0":0.0358},H:{"0":0.09683},L:{"0":48.81136},S:{"2.5":0}}; 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 4a5af1872b6162..95e333a688b9f3 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:{"52":0.01076,"68":0.0043,"78":0.00861,"79":0.0043,"80":0.0043,"81":0.0043,"82":0.0043,"83":0.0043,"87":0.00215,"88":0.00215,"91":0.00646,"96":0.00215,"97":0.0043,"98":0.1076,"99":0.36799,"100":0.00215,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 84 85 86 89 90 92 93 94 95 101 3.5 3.6"},D:{"22":0.04089,"26":0.02152,"31":0.00646,"34":0.0495,"38":0.08608,"42":0.00215,"43":0.00215,"47":0.06456,"49":0.05595,"51":0.02582,"53":0.01506,"56":0.0043,"61":0.01291,"63":0.00646,"65":0.0043,"66":0.00215,"67":0.0043,"68":0.01722,"69":0.0043,"70":0.0043,"71":0.04304,"72":0.00215,"73":0.00861,"74":0.0043,"75":0.00646,"76":0.0043,"77":0.00646,"78":0.00861,"79":0.13988,"80":0.01722,"81":0.01506,"83":0.04089,"84":0.05595,"85":0.07317,"86":0.06456,"87":0.07747,"88":0.01506,"89":0.03228,"90":0.01291,"91":0.02582,"92":0.12482,"93":0.01937,"94":0.02582,"95":0.02798,"96":0.08608,"97":0.07532,"98":0.15925,"99":2.16922,"100":12.02538,"101":0.12051,"102":0.00215,"103":0.00215,_:"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 32 33 35 36 37 39 40 41 44 45 46 48 50 52 54 55 57 58 59 60 62 64 104"},F:{"28":0.01076,"31":0.00646,"32":0.00646,"36":0.01291,"40":0.0495,"46":0.03874,"68":0.00215,"71":0.0043,"82":0.00215,"83":0.00215,"84":0.15494,"85":0.65851,"86":0.00861,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 72 73 74 75 76 77 78 79 80 81 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.0043,"14":0.0043,"15":0.0043,"16":0.00215,"17":0.0043,"18":0.01506,"84":0.00646,"85":0.0043,"86":0.00215,"87":0.0043,"89":0.00215,"91":0.00215,"92":0.00646,"94":0.00215,"95":0.0043,"96":0.00646,"97":0.00861,"98":0.01076,"99":0.13342,"100":1.0803,"101":0.0043,_:"12 79 80 81 83 88 90 93"},E:{"4":0,"13":0.00861,"14":0.03874,"15":0.01722,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0043,"11.1":0.0043,"12.1":0.01076,"13.1":0.03874,"14.1":0.09899,"15.1":0.03443,"15.2-15.3":0.03013,"15.4":0.15064},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.02639,"8.1-8.4":0.00126,"9.0-9.2":0.00503,"9.3":0.05528,"10.0-10.2":0.01005,"10.3":0.13067,"11.0-11.2":0.049,"11.3-11.4":0.049,"12.0-12.1":0.03644,"12.2-12.5":1.89847,"13.0-13.1":0.02387,"13.2":0.0088,"13.3":0.08418,"13.4-13.7":0.26636,"14.0-14.4":0.64958,"14.5-14.8":1.91857,"15.0-15.1":0.4988,"15.2-15.3":3.40996,"15.4":3.43509},P:{"4":0.55518,"5.0-5.4":0.02056,"6.2-6.4":0.03136,"7.2-7.4":0.20562,"8.2":0.02446,"9.2":0.03084,"10.1":0.01028,"11.1-11.2":0.11309,"12.0":0.04112,"13.0":0.2159,"14.0":0.11309,"15.0":0.11309,"16.0":2.97123},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00207,"4.2-4.3":0.00551,"4.4":0,"4.4.3-4.4.4":0.01597},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0043,"9":0.00646,"11":0.24963,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.14911},H:{"0":0.72071},L:{"0":61.22182},S:{"2.5":0},R:{_:"0"},M:{"0":0.09418},Q:{"10.4":0}}; +module.exports={C:{"52":0.0057,"68":0.00142,"78":0.00427,"79":0.00427,"80":0.00427,"81":0.00285,"82":0.00285,"83":0.00285,"88":0.00142,"91":0.00427,"95":0.00142,"96":0.00142,"98":0.00285,"99":0.04984,"100":0.25347,"101":0.00142,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 84 85 86 87 89 90 92 93 94 97 102 103 3.5 3.6"},D:{"22":0.03418,"26":0.01566,"31":0.00142,"34":0.03845,"38":0.04984,"42":0.00142,"43":0.00285,"47":0.0413,"48":0.00142,"49":0.04414,"53":0.01139,"56":0.00142,"58":0.00142,"59":0.00142,"61":0.00285,"63":0.00427,"65":0.00142,"66":0.00142,"67":0.00142,"68":0.00997,"69":0.00285,"70":0.00427,"71":0.02563,"72":0.00285,"73":0.0057,"74":0.00427,"75":0.00427,"76":0.00285,"77":0.00285,"78":0.0057,"79":0.09114,"80":0.00997,"81":0.00997,"83":0.02848,"84":0.0413,"85":0.04842,"86":0.04842,"87":0.05126,"88":0.00997,"89":0.01994,"90":0.00712,"91":0.01709,"92":0.02421,"93":0.00712,"94":0.01424,"95":0.01851,"96":0.04272,"97":0.03845,"98":0.07262,"99":0.08259,"100":1.53222,"101":6.52192,"102":0.78605,"103":0.00285,_:"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 32 33 35 36 37 39 40 41 44 45 46 50 51 52 54 55 57 60 62 64 104"},F:{"28":0.00712,"31":0.00427,"32":0.00427,"36":0.00997,"40":0.0356,"46":0.0299,"68":0.00142,"69":0.00142,"71":0.00142,"72":0.00142,"84":0.00285,"85":0.28195,"86":0.33322,"87":0.01851,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 70 73 74 75 76 77 78 79 80 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:{"13":0.00142,"14":0.00142,"15":0.00142,"17":0.00285,"18":0.00997,"84":0.00285,"85":0.00285,"86":0.00285,"87":0.00427,"91":0.00142,"92":0.00285,"94":0.00142,"96":0.00285,"97":0.00427,"98":0.00285,"99":0.00997,"100":0.02563,"101":0.69349,_:"12 16 79 80 81 83 88 89 90 93 95"},E:{"4":0,"13":0.0057,"14":0.01994,"15":0.00854,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00142,"11.1":0.00285,"12.1":0.00427,"13.1":0.01994,"14.1":0.05126,"15.1":0.01566,"15.2-15.3":0.00997,"15.4":0.1481,"15.5":0.01994},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.01918,"8.1-8.4":0,"9.0-9.2":0.00338,"9.3":0.03046,"10.0-10.2":0.00677,"10.3":0.08461,"11.0-11.2":0.03046,"11.3-11.4":0.03497,"12.0-12.1":0.03046,"12.2-12.5":1.5105,"13.0-13.1":0.01579,"13.2":0.00677,"13.3":0.06656,"13.4-13.7":0.19177,"14.0-14.4":0.44221,"14.5-14.8":1.24427,"15.0-15.1":0.3215,"15.2-15.3":0.82124,"15.4":6.41653},P:{"4":0.43905,"5.0-5.4":0.01021,"6.2-6.4":0.02051,"7.2-7.4":0.20421,"8.2":0.04047,"9.2":0.03063,"10.1":0.01021,"11.1-11.2":0.09189,"12.0":0.03063,"13.0":0.194,"14.0":0.09189,"15.0":0.08168,"16.0":1.10273},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.00387,"4.4":0,"4.4.3-4.4.4":0.01176},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00142,"9":0.00142,"11":0.14382,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.07718},Q:{"10.4":0},O:{"0":0.20582},H:{"0":0.74697},L:{"0":70.14838},S:{"2.5":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 7468ab9ef81e89..da36f1bba1db95 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:{"51":0.00434,"52":0.01302,"53":0.00434,"55":0.00434,"56":0.00434,"68":0.00434,"72":0.00434,"78":0.01302,"87":0.00868,"91":0.0217,"97":0.00868,"98":0.4123,"99":1.29332,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 54 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 100 101 3.5 3.6"},D:{"38":0.00434,"47":0.01736,"49":0.03038,"51":0.00434,"53":0.00868,"55":0.00868,"56":0.01736,"58":0.00434,"62":0.00434,"63":0.00434,"65":0.01302,"68":0.00868,"70":0.00434,"74":0.1085,"75":0.02604,"76":0.05642,"77":0.00868,"79":0.0868,"80":0.02604,"81":0.04774,"83":0.01302,"84":0.01302,"85":0.0217,"86":0.00434,"87":0.10416,"88":0.00868,"89":0.0434,"90":0.01736,"91":0.05642,"92":0.0434,"93":0.1736,"94":0.05642,"95":0.0868,"96":0.11284,"97":0.1736,"98":0.31682,"99":4.92156,"100":21.36148,"101":0.30814,"102":0.01736,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 54 57 59 60 61 64 66 67 69 71 72 73 78 103 104"},F:{"28":0.03038,"65":0.00434,"84":0.23436,"85":0.84196,"86":0.01302,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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.00434,"18":0.02604,"85":0.0217,"86":0.00868,"89":0.00434,"92":0.00434,"96":0.01302,"97":0.06944,"98":0.02604,"99":0.80724,"100":4.73494,"101":0.07378,_:"12 13 14 15 16 79 80 81 83 84 87 88 90 91 93 94 95"},E:{"4":0,"13":0.03472,"14":0.08246,"15":0.0651,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01736,"11.1":0.03906,"12.1":0.0434,"13.1":0.2821,"14.1":0.38626,"15.1":0.1085,"15.2-15.3":0.07378,"15.4":0.8246},G:{"8":0,"3.2":0,"4.0-4.1":0.00182,"4.2-4.3":0,"5.0-5.1":0.01181,"6.0-6.1":0.00091,"7.0-7.1":0.04816,"8.1-8.4":0.00182,"9.0-9.2":0.00454,"9.3":0.12267,"10.0-10.2":0.00454,"10.3":0.12994,"11.0-11.2":0.00454,"11.3-11.4":0.01908,"12.0-12.1":0.02181,"12.2-12.5":0.42073,"13.0-13.1":0.00363,"13.2":0.00182,"13.3":0.02181,"13.4-13.7":0.09996,"14.0-14.4":0.2399,"14.5-14.8":0.72242,"15.0-15.1":0.39074,"15.2-15.3":2.81607,"15.4":3.99557},P:{"4":0.42464,"5.0-5.4":0.02446,"6.2-6.4":0.03136,"7.2-7.4":0.3291,"8.2":0.02446,"9.2":0.02123,"10.1":0.0309,"11.1-11.2":0.10616,"12.0":0.01062,"13.0":0.18047,"14.0":0.16986,"15.0":0.16986,"16.0":4.90462},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00119,"4.2-4.3":0.00357,"4.4":0,"4.4.3-4.4.4":0.03487},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01736,"11":0.16926,_:"6 7 8 9 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.03396},H:{"0":0.39653},L:{"0":43.17528},S:{"2.5":0},R:{_:"0"},M:{"0":0.1415},Q:{"10.4":0}}; +module.exports={C:{"36":0.00819,"45":0.0041,"52":0.01639,"53":0.0041,"55":0.0041,"56":0.00819,"68":0.01229,"72":0.01229,"78":0.01639,"91":0.03278,"98":0.0041,"99":0.33595,"100":1.20042,"101":0.01229,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 47 48 49 50 51 54 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"47":0.01229,"49":0.04097,"50":0.0041,"53":0.0041,"55":0.00819,"56":0.01229,"58":0.0041,"60":0.0041,"62":0.0041,"63":0.0041,"65":0.01229,"67":0.00819,"68":0.01639,"72":0.01229,"73":0.00819,"74":0.09013,"75":0.01229,"76":0.06555,"77":0.00819,"79":0.08194,"80":0.00819,"81":0.04097,"83":0.02458,"84":0.01639,"86":0.00819,"87":0.08604,"88":0.11881,"89":0.05326,"90":0.02049,"91":0.05326,"92":0.02458,"93":0.09423,"94":0.03687,"95":0.01639,"96":0.1352,"97":0.12291,"98":0.20895,"99":0.31957,"100":4.96147,"101":18.53073,"102":1.65109,"103":0.01229,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 51 52 54 57 59 61 64 66 69 70 71 78 85 104"},F:{"28":0.03278,"85":0.51622,"86":0.52851,"87":0.02868,_:"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.00819,"17":0.0041,"18":0.01639,"85":0.00819,"89":0.0041,"92":0.00819,"96":0.0041,"97":0.02049,"98":0.00819,"99":0.05326,"100":0.29089,"101":4.69516,_:"12 13 14 16 79 80 81 83 84 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.0041,"14":0.14749,"15":0.05736,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.0041,"10.1":0.01639,"11.1":0.08194,"12.1":0.03278,"13.1":0.25811,"14.1":0.25401,"15.1":0.06555,"15.2-15.3":0.05326,"15.4":1.23729,"15.5":0.22124},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0034,"6.0-6.1":0,"7.0-7.1":0.03289,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1951,"10.0-10.2":0.00454,"10.3":0.11116,"11.0-11.2":0.0034,"11.3-11.4":0.01361,"12.0-12.1":0.02042,"12.2-12.5":0.41061,"13.0-13.1":0.00567,"13.2":0.00113,"13.3":0.01928,"13.4-13.7":0.0828,"14.0-14.4":0.20417,"14.5-14.8":0.6386,"15.0-15.1":0.22572,"15.2-15.3":0.6783,"15.4":8.68294},P:{"4":0.53463,"5.0-5.4":0.04074,"6.2-6.4":0.02051,"7.2-7.4":0.28304,"8.2":0.04047,"9.2":0.01048,"10.1":0.02078,"11.1-11.2":0.07338,"12.0":0.02097,"13.0":0.15724,"14.0":0.18869,"15.0":0.10483,"16.0":1.66678},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.01327,"4.4":0,"4.4.3-4.4.4":0.09648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00819,"11":0.09423,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.15348},Q:{"10.4":0},O:{"0":0.04722},H:{"0":0.40797},L:{"0":43.39424},S:{"2.5":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 345c51c4407ffd..33fc7376f1e975 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:{"98":0.36206,"99":0.29891,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 100 101 3.5 3.6"},D:{"72":0.71991,"83":0.05894,"85":0.29891,"95":0.05894,"96":0.12209,"97":0.12209,"98":0.18103,"99":4.20579,"100":13.69092,"101":0.12209,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 84 86 87 88 89 90 91 92 93 94 102 103 104"},F:{"84":0.05894,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.05894,"92":0.05894,"96":0.47994,"97":0.23997,"99":1.43982,"100":7.98637,"101":0.36206,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 98"},E:{"4":0,"10":0.05894,_:"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 15.1 15.2-15.3","12.1":0.18103,"13.1":0.05894,"14.1":1.62085,"15.4":0.05894},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.1065,"13.0-13.1":0,"13.2":0.05315,"13.3":0,"13.4-13.7":0.1065,"14.0-14.4":0.05315,"14.5-14.8":0.79807,"15.0-15.1":0.31911,"15.2-15.3":0.42561,"15.4":0.1065},P:{"4":0.03148,"5.0-5.4":0.02056,"6.2-6.4":0.03136,"7.2-7.4":0.02099,"8.2":0.02446,"9.2":0.03084,"10.1":0.01028,"11.1-11.2":0.06067,"12.0":0.04112,"13.0":0.02099,"14.0":0.18201,"15.0":0.05247,"16.0":3.26606},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:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.10589},H:{"0":0},L:{"0":60.00876},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0}}; +module.exports={C:{"100":0.5528,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 101 102 103 3.5 3.6"},D:{"83":0.05649,"95":0.27438,"97":0.10895,"98":0.05649,"99":0.27438,"100":2.20311,"101":16.20456,"102":2.03768,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 84 85 86 87 88 89 90 91 92 93 94 96 103 104"},F:{"86":0.05649,"87":2.75591,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"80":0.10895,"84":0.05649,"96":0.05649,"99":0.05649,"100":1.15805,"101":8.32421,_:"12 13 14 15 16 17 18 79 81 83 85 86 87 88 89 90 91 92 93 94 95 97 98"},E:{"4":0,"10":0.05649,_:"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 15.2-15.3 15.5","12.1":0.49631,"13.1":0.43982,"14.1":3.14327,"15.1":0.05649,"15.4":0.10895},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.1566,"13.0-13.1":0,"13.2":0.10436,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.20871,"14.5-14.8":0,"15.0-15.1":0.20871,"15.2-15.3":0.20884,"15.4":0.36543},P:{"4":0.05254,"5.0-5.4":0.01021,"6.2-6.4":0.01051,"7.2-7.4":0.1261,"8.2":0.04047,"9.2":0.14135,"10.1":0.13125,"11.1-11.2":0.06074,"12.0":0.02102,"13.0":0.02102,"14.0":0.13661,"15.0":0.04203,"16.0":0.5669},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.02648,_:"11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0.05965},H:{"0":0},L:{"0":56.24762},S:{"2.5":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 392dbc050e1389..403fbf3454e67b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js @@ -1 +1 @@ -module.exports={C:{"34":0.02579,"52":0.01719,"55":0.0086,"78":0.0086,"88":0.0043,"91":0.0086,"95":0.0086,"96":0.0086,"97":0.01289,"98":0.23209,"99":0.68338,"100":0.0043,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 101 3.5 3.6"},D:{"11":0.0043,"22":0.0086,"30":0.0086,"34":0.02579,"38":0.09456,"45":0.0043,"49":0.13754,"53":0.09456,"55":0.0086,"56":0.02149,"57":0.0043,"58":0.0086,"61":0.03438,"62":0.0043,"63":0.0086,"64":0.0086,"65":0.01289,"66":0.01289,"67":0.02149,"68":0.01289,"69":0.01289,"70":0.01289,"71":0.01719,"72":0.01289,"73":0.0086,"74":0.02149,"75":0.01289,"76":0.01289,"77":0.0086,"78":0.0086,"79":0.44269,"80":0.02149,"81":0.04728,"83":0.03009,"84":0.01719,"85":0.01719,"86":0.04298,"87":0.08596,"88":0.01289,"89":0.05587,"90":0.02149,"91":0.03868,"92":0.03868,"93":0.03009,"94":0.04728,"95":0.05158,"96":0.13754,"97":0.23209,"98":0.30946,"99":4.7321,"100":24.13327,"101":0.33095,"102":0.02149,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 54 59 60 103 104"},F:{"28":0.03009,"36":0.01289,"46":0.06877,"84":0.02149,"85":0.09885,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.0043,"17":0.0086,"18":0.01719,"84":0.0043,"92":0.0086,"96":0.0086,"97":0.01719,"98":0.02149,"99":0.40401,"100":2.60889,"101":0.04298,_:"12 13 14 15 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.0043,"13":0.11175,"14":0.36103,"15":0.10315,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0086,"10.1":0.01719,"11.1":0.03009,"12.1":0.06017,"13.1":0.24928,"14.1":1.30659,"15.1":0.2149,"15.2-15.3":0.23209,"15.4":1.20774},G:{"8":0.00256,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02304,"6.0-6.1":0.01024,"7.0-7.1":0.07937,"8.1-8.4":0.04096,"9.0-9.2":0.01792,"9.3":0.24322,"10.0-10.2":0.02048,"10.3":0.23042,"11.0-11.2":0.04864,"11.3-11.4":0.0512,"12.0-12.1":0.11009,"12.2-12.5":0.83974,"13.0-13.1":0.09985,"13.2":0.04096,"13.3":0.18945,"13.4-13.7":0.40707,"14.0-14.4":2.10448,"14.5-14.8":4.13984,"15.0-15.1":1.89711,"15.2-15.3":7.08151,"15.4":7.92381},P:{"4":0.57671,"5.0-5.4":0.14046,"6.2-6.4":0.32106,"7.2-7.4":0.81268,"8.2":0.01088,"9.2":0.04353,"10.1":0.01088,"11.1-11.2":0.08705,"12.0":0.04353,"13.0":0.18498,"14.0":0.15234,"15.0":0.16322,"16.0":2.64416},I:{"0":0,"3":0,"4":0.00049,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00097,"4.2-4.3":0.00388,"4.4":0,"4.4.3-4.4.4":0.01747},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19771,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.09693},H:{"0":0.25372},L:{"0":27.93909},S:{"2.5":0},R:{_:"0"},M:{"0":0.07983},Q:{"10.4":0.0057}}; +module.exports={C:{"34":0.02626,"52":0.01313,"55":0.00875,"78":0.00875,"88":0.00438,"91":0.00875,"95":0.00438,"96":0.00438,"97":0.00438,"98":0.01313,"99":0.18821,"100":0.93668,"101":0.00438,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 102 103 3.5 3.6"},D:{"11":0.00438,"22":0.00875,"26":0.00438,"30":0.00875,"34":0.02626,"38":0.09629,"45":0.00438,"49":0.12693,"53":0.10067,"55":0.00875,"56":0.02626,"58":0.00438,"61":0.03502,"62":0.00875,"63":0.00875,"64":0.00875,"65":0.01313,"66":0.01313,"67":0.02189,"68":0.01313,"69":0.01313,"70":0.01313,"71":0.01751,"72":0.00875,"73":0.00875,"74":0.01751,"75":0.01313,"76":0.01313,"77":0.00875,"78":0.00875,"79":0.48585,"80":0.01751,"81":0.04377,"83":0.02626,"84":0.01751,"85":0.01751,"86":0.03939,"87":0.08316,"88":0.01313,"89":0.0569,"90":0.02189,"91":0.03064,"92":0.03502,"93":0.01751,"94":0.03502,"95":0.03939,"96":0.09629,"97":0.14444,"98":0.14444,"99":0.27137,"100":5.97461,"101":22.15637,"102":1.4269,"103":0.02189,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 54 57 59 60 104"},F:{"28":0.03064,"36":0.01751,"46":0.07003,"85":0.05252,"86":0.06566,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 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.00875,"18":0.01751,"84":0.00438,"92":0.00438,"96":0.00875,"97":0.00875,"98":0.00875,"99":0.02189,"100":0.12693,"101":2.90633,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.00438,"13":0.10943,"14":0.34578,"15":0.08754,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00875,"10.1":0.02189,"11.1":0.03064,"12.1":0.0569,"13.1":0.25387,"14.1":1.19054,"15.1":0.16633,"15.2-15.3":0.16195,"15.4":2.8538,"15.5":0.13569},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02008,"6.0-6.1":0.01004,"7.0-7.1":0.07528,"8.1-8.4":0.04517,"9.0-9.2":0.01506,"9.3":0.24342,"10.0-10.2":0.02008,"10.3":0.23589,"11.0-11.2":0.04266,"11.3-11.4":0.04768,"12.0-12.1":0.10289,"12.2-12.5":0.82311,"13.0-13.1":0.08532,"13.2":0.03513,"13.3":0.16312,"13.4-13.7":0.35886,"14.0-14.4":1.87709,"14.5-14.8":3.42796,"15.0-15.1":1.42288,"15.2-15.3":2.34386,"15.4":13.69426},P:{"4":0.6196,"5.0-5.4":0.08042,"6.2-6.4":0.19099,"7.2-7.4":0.41214,"8.2":0.06031,"9.2":0.04348,"10.1":0.01087,"11.1-11.2":0.08696,"12.0":0.04348,"13.0":0.16305,"14.0":0.14131,"15.0":0.13044,"16.0":1.2718},I:{"0":0,"3":0,"4":0.00073,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00073,"4.2-4.3":0.00293,"4.4":0,"4.4.3-4.4.4":0.01247},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17508,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.07872},Q:{"10.4":0.01125},O:{"0":0.09559},H:{"0":0.23423},L:{"0":27.6428},S:{"2.5":0}}; 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 d72f30354c3883..e246209af7665f 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:{"23":0.00173,"32":0.00173,"34":0.00693,"36":0.0052,"38":0.00173,"42":0.00173,"43":0.00693,"44":0.0052,"45":0.00346,"47":0.0052,"48":0.0052,"49":0.00346,"52":0.00866,"56":0.00173,"58":0.0052,"65":0.00346,"66":0.00346,"68":0.00173,"71":0.00173,"72":0.01039,"78":0.01039,"79":0.0052,"84":0.00173,"85":0.00173,"88":0.00346,"89":0.01039,"90":0.00173,"91":0.05716,"92":0.00346,"93":0.00346,"94":0.00346,"95":0.00693,"96":0.01212,"97":0.02598,"98":0.42434,"99":1.1258,"100":0.10219,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 33 35 37 39 40 41 46 50 51 53 54 55 57 59 60 61 62 63 64 67 69 70 73 74 75 76 77 80 81 82 83 86 87 101 3.5 3.6"},D:{"38":0.00173,"40":0.00346,"43":0.00346,"49":0.01212,"55":0.0052,"57":0.0052,"58":0.00346,"59":0.00173,"60":0.00346,"62":0.00173,"63":0.01905,"64":0.00173,"65":0.0052,"67":0.00173,"68":0.0052,"69":0.00693,"70":0.00693,"71":0.00346,"72":0.01212,"73":0.0052,"74":0.01039,"75":0.00173,"76":0.00346,"77":0.00866,"78":0.00346,"79":0.01559,"80":0.01559,"81":0.00693,"83":0.01386,"84":0.01212,"85":0.00866,"86":0.01559,"87":0.0381,"88":0.04503,"89":0.01559,"90":0.01212,"91":0.01732,"92":0.01905,"93":0.01386,"94":0.01559,"95":0.03291,"96":0.06755,"97":0.07794,"98":0.13163,"99":1.28861,"100":6.5002,"101":0.11604,"102":0.01905,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 47 48 50 51 52 53 54 56 61 66 103 104"},F:{"19":0.00346,"36":0.00173,"68":0.00346,"79":0.00693,"80":0.00173,"81":0.00346,"82":0.00346,"83":0.00346,"84":0.10046,"85":0.61313,"86":0.01905,_:"9 11 12 15 16 17 18 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 69 70 71 72 73 74 75 76 77 78 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.02598,"13":0.01212,"14":0.00693,"15":0.01212,"16":0.01905,"17":0.00866,"18":0.09526,"84":0.01212,"85":0.0052,"89":0.01386,"90":0.01212,"91":0.00693,"92":0.02078,"93":0.00173,"95":0.00346,"96":0.01386,"97":0.02078,"98":0.03464,"99":0.19572,"100":1.01495,"101":0.00693,_:"79 80 81 83 86 87 88 94"},E:{"4":0,"8":0.00173,"11":0.00346,"12":0.00173,"13":0.01212,"14":0.0433,"15":0.00866,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00346,"11.1":0.0052,"12.1":0.01386,"13.1":0.05023,"14.1":0.05542,"15.1":0.01732,"15.2-15.3":0.01559,"15.4":0.05716},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00105,"5.0-5.1":0.00418,"6.0-6.1":0.00052,"7.0-7.1":0.01464,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02039,"10.0-10.2":0.00418,"10.3":0.04861,"11.0-11.2":0.02352,"11.3-11.4":0.02509,"12.0-12.1":0.046,"12.2-12.5":1.06368,"13.0-13.1":0.01934,"13.2":0.01045,"13.3":0.05541,"13.4-13.7":0.14426,"14.0-14.4":0.66016,"14.5-14.8":0.69205,"15.0-15.1":0.49499,"15.2-15.3":1.02971,"15.4":0.86715},P:{"4":0.27576,"5.0-5.4":0.04085,"6.2-6.4":0.01021,"7.2-7.4":0.11235,"8.2":0.0201,"9.2":0.2247,"10.1":0.07035,"11.1-11.2":0.07149,"12.0":0.02043,"13.0":0.06128,"14.0":0.16341,"15.0":0.16341,"16.0":0.93963},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00266,"4.2-4.3":0.00399,"4.4":0,"4.4.3-4.4.4":0.06777},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00617,"11":0.05965,_:"6 7 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.0335},H:{"0":19.76471},L:{"0":56.44096},S:{"2.5":0.45474},R:{_:"0"},M:{"0":0.10748},Q:{"10.4":0}}; +module.exports={C:{"21":0.00188,"31":0.00188,"34":0.02817,"36":0.00751,"37":0.00188,"38":0.00188,"40":0.00188,"42":0.00188,"43":0.00563,"44":0.00563,"45":0.00188,"47":0.00751,"48":0.00376,"49":0.00563,"52":0.00939,"56":0.00188,"58":0.00376,"60":0.00188,"65":0.00188,"68":0.00939,"72":0.00751,"78":0.00939,"79":0.00188,"82":0.00376,"84":0.00188,"88":0.00563,"89":0.00751,"91":0.02254,"92":0.00563,"93":0.00188,"94":0.00376,"95":0.01127,"96":0.01315,"97":0.01127,"98":0.02066,"99":0.29485,"100":1.30897,"101":0.13897,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 32 33 35 39 41 46 50 51 53 54 55 57 59 61 62 63 64 66 67 69 70 71 73 74 75 76 77 80 81 83 85 86 87 90 102 103 3.5 3.6"},D:{"11":0.00376,"32":0.01127,"33":0.00376,"38":0.00376,"40":0.00188,"43":0.00376,"49":0.01127,"50":0.00188,"52":0.00188,"55":0.00563,"57":0.01502,"58":0.00376,"63":0.01315,"64":0.00563,"65":0.00563,"68":0.00751,"69":0.00939,"70":0.01127,"71":0.00376,"72":0.00751,"73":0.00563,"74":0.01127,"75":0.00376,"76":0.01127,"77":0.00751,"78":0.00751,"79":0.02441,"80":0.01502,"81":0.00563,"83":0.01502,"84":0.03944,"85":0.02066,"86":0.02441,"87":0.04319,"88":0.09953,"89":0.01502,"90":0.01878,"91":0.02254,"92":0.01502,"93":0.01127,"94":0.01127,"95":0.01502,"96":0.05071,"97":0.06197,"98":0.06197,"99":0.12395,"100":1.59442,"101":6.36266,"102":0.58594,"103":0.01315,"104":0.00188,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 37 39 41 42 44 45 46 47 48 51 53 54 56 59 60 61 62 66 67"},F:{"36":0.00563,"42":0.00188,"79":0.00751,"81":0.00188,"82":0.00376,"83":0.00376,"84":0.00376,"85":0.25353,"86":0.42443,"87":0.02817,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03005,"13":0.01502,"14":0.00751,"15":0.01315,"16":0.02254,"17":0.00939,"18":0.10892,"84":0.01502,"85":0.00563,"89":0.01878,"90":0.01502,"91":0.00188,"92":0.01878,"93":0.00188,"94":0.00376,"95":0.00563,"96":0.01878,"97":0.0169,"98":0.02254,"99":0.04132,"100":0.17841,"101":1.14934,_:"79 80 81 83 86 87 88"},E:{"4":0,"11":0.00188,"13":0.00939,"14":0.02629,"15":0.01502,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00376,"11.1":0.01315,"12.1":0.00939,"13.1":0.06761,"14.1":0.05634,"15.1":0.02066,"15.2-15.3":0.01502,"15.4":0.10141,"15.5":0.0169},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00221,"5.0-5.1":0.00386,"6.0-6.1":0,"7.0-7.1":0.0353,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01655,"10.0-10.2":0.00386,"10.3":0.1026,"11.0-11.2":0.02206,"11.3-11.4":0.03641,"12.0-12.1":0.04413,"12.2-12.5":0.91234,"13.0-13.1":0.02151,"13.2":0.01048,"13.3":0.06068,"13.4-13.7":0.16051,"14.0-14.4":0.60124,"14.5-14.8":0.63985,"15.0-15.1":0.42859,"15.2-15.3":0.60841,"15.4":1.80426},P:{"4":0.27497,"5.0-5.4":0.04074,"6.2-6.4":0.02037,"7.2-7.4":0.12221,"8.2":0.04047,"9.2":0.09166,"10.1":0.05058,"11.1-11.2":0.07129,"12.0":0.02037,"13.0":0.0611,"14.0":0.16294,"15.0":0.10184,"16.0":0.58049},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.00955,"4.4":0,"4.4.3-4.4.4":0.08513},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00417,"11":0.07095,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.1462},Q:{"10.4":0},O:{"0":0.97464},H:{"0":18.35456},L:{"0":56.76592},S:{"2.5":0.38986}}; 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 1544a05c51b75e..1b1f2c5e3d24c4 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:{"42":0.00616,"43":0.01233,"48":0.01849,"52":0.25885,"55":0.14175,"56":0.00616,"57":0.00616,"60":0.09861,"63":0.01233,"68":0.29582,"70":0.01233,"72":0.02465,"78":0.14175,"79":0.01233,"80":0.00616,"81":0.06779,"82":0.03082,"83":0.01233,"84":0.01233,"86":0.03698,"87":0.02465,"88":0.03082,"89":0.02465,"90":0.02465,"91":0.12326,"92":0.02465,"93":0.03082,"94":0.06163,"95":0.14791,"96":0.03082,"97":0.05547,"98":0.78886,"99":2.34194,"100":0.01849,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 44 45 46 47 49 50 51 53 54 58 59 61 62 64 65 66 67 69 71 73 74 75 76 77 85 101 3.5 3.6"},D:{"22":0.00616,"33":0.01849,"39":0.01849,"41":0.01233,"49":0.22187,"57":0.01233,"58":0.01233,"59":0.17256,"61":0.07396,"63":0.02465,"64":0.01233,"65":0.01233,"67":0.01233,"68":0.00616,"69":0.01849,"70":0.01233,"71":0.02465,"72":0.01233,"73":0.01849,"74":0.08012,"75":0.00616,"76":0.02465,"77":0.01233,"78":0.01233,"79":0.08012,"80":0.39443,"81":0.03082,"83":0.08012,"84":0.11093,"85":0.06163,"86":0.20338,"87":0.14175,"88":0.11093,"89":0.09245,"90":0.05547,"91":0.06163,"92":0.09245,"93":0.12942,"94":0.06163,"95":0.06163,"96":0.32664,"97":0.32664,"98":1.50377,"99":4.77633,"100":23.62894,"101":0.41292,"102":0.02465,_:"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 34 35 36 37 38 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 60 62 66 103 104"},F:{"36":0.06163,"62":0.01233,"67":0.01849,"68":0.00616,"69":0.01849,"71":0.01849,"72":0.01233,"73":0.01233,"74":0.01849,"75":0.01233,"76":0.00616,"77":0.12942,"78":0.08628,"79":0.13559,"80":0.09245,"81":0.05547,"82":0.06163,"83":0.06163,"84":2.04612,"85":11.98704,"86":0.22803,"87":0.04314,_:"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 63 64 65 66 70 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03698},B:{"18":0.03082,"89":0.00616,"92":0.00616,"96":0.01233,"97":0.00616,"98":0.01233,"99":0.14791,"100":1.06004,"101":0.01849,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.05547,"14":0.08012,"15":0.03082,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.10477,"11.1":0.02465,"12.1":0.01849,"13.1":0.14791,"14.1":0.19722,"15.1":0.06163,"15.2-15.3":0.08012,"15.4":0.37594},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.01539,"8.1-8.4":0.00099,"9.0-9.2":0.00149,"9.3":0.03425,"10.0-10.2":0.00596,"10.3":0.03723,"11.0-11.2":0.01291,"11.3-11.4":0.02581,"12.0-12.1":0.00844,"12.2-12.5":0.20055,"13.0-13.1":0.01142,"13.2":0.00695,"13.3":0.02035,"13.4-13.7":0.07893,"14.0-14.4":0.22835,"14.5-14.8":0.62549,"15.0-15.1":0.26708,"15.2-15.3":1.69627,"15.4":1.6794},P:{"4":0.02187,"5.0-5.4":0.01062,"6.2-6.4":0.02187,"7.2-7.4":0.10934,"8.2":0.02446,"9.2":0.01093,"10.1":0.01028,"11.1-11.2":0.05467,"12.0":0.01062,"13.0":0.05467,"14.0":0.0656,"15.0":0.0328,"16.0":1.08247},I:{"0":0,"3":0,"4":0.00207,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00207,"4.2-4.3":0.00909,"4.4":0,"4.4.3-4.4.4":0.0405},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01233,"11":0.27734,_:"6 7 8 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.18801},H:{"0":4.0976},L:{"0":26.41505},S:{"2.5":0},R:{_:"0"},M:{"0":0.14581},Q:{"10.4":0}}; +module.exports={C:{"45":0.0123,"48":0.0123,"50":0.0123,"51":0.0123,"52":0.23989,"53":0.0123,"54":0.00615,"55":0.06766,"56":0.0123,"57":0.01845,"60":0.01845,"68":0.3137,"72":0.01845,"78":0.14147,"80":0.00615,"81":0.06766,"82":0.0246,"83":0.0123,"84":0.0123,"86":0.0123,"87":0.0123,"88":0.01845,"89":0.0123,"91":0.08611,"92":0.0123,"93":0.0123,"94":0.0246,"95":0.01845,"96":0.06151,"97":0.03076,"98":0.04306,"99":0.75042,"100":2.41734,"101":0.0123,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 85 90 102 103 3.5 3.6"},D:{"22":0.00615,"33":0.01845,"39":0.0123,"41":0.03076,"48":0.00615,"49":0.21529,"51":0.00615,"56":0.00615,"57":0.0123,"58":0.00615,"59":0.17838,"60":0.00615,"61":0.06766,"63":0.0246,"64":0.0123,"65":0.00615,"67":0.0123,"68":0.00615,"69":0.0123,"70":0.0123,"71":0.0123,"72":0.0123,"73":0.0123,"74":0.09227,"75":0.00615,"76":0.01845,"77":0.0123,"78":0.01845,"79":0.06151,"80":0.03691,"81":0.03076,"83":0.11072,"84":0.11687,"85":0.12917,"86":0.25219,"87":0.18453,"88":0.07381,"89":0.08611,"90":0.07381,"91":0.06151,"92":0.07996,"93":0.07996,"94":0.04921,"95":0.07381,"96":0.21529,"97":0.42442,"98":0.75657,"99":0.41827,"100":5.48054,"101":23.18927,"102":2.37429,"103":0.0123,_:"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 34 35 36 37 38 40 42 43 44 45 46 47 50 52 53 54 55 62 66 104"},F:{"36":0.08611,"62":0.00615,"66":0.00615,"67":0.00615,"68":0.0123,"69":0.01845,"71":0.0123,"72":0.0123,"73":0.0123,"74":0.0123,"75":0.0123,"76":0.00615,"77":0.01845,"78":0.01845,"79":0.04921,"80":0.03076,"81":0.0246,"82":0.03076,"83":0.03691,"84":0.09227,"85":5.75119,"86":7.55958,"87":0.38751,_:"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 63 64 65 70 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03076},B:{"18":0.03076,"89":0.00615,"96":0.00615,"98":0.00615,"99":0.0123,"100":0.03691,"101":1.18099,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 97"},E:{"4":0,"13":0.04921,"14":0.09227,"15":0.01845,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.06766,"10.1":0.00615,"11.1":0.0123,"12.1":0.0246,"13.1":0.08611,"14.1":0.16608,"15.1":0.04306,"15.2-15.3":0.04306,"15.4":0.52899,"15.5":0.08611},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00325,"6.0-6.1":0.00217,"7.0-7.1":0.02004,"8.1-8.4":0.00054,"9.0-9.2":0.00217,"9.3":0.05417,"10.0-10.2":0.00596,"10.3":0.03738,"11.0-11.2":0.00921,"11.3-11.4":0.01788,"12.0-12.1":0.00758,"12.2-12.5":0.17878,"13.0-13.1":0.00867,"13.2":0.01138,"13.3":0.02384,"13.4-13.7":0.07205,"14.0-14.4":0.19449,"14.5-14.8":0.53145,"15.0-15.1":0.19936,"15.2-15.3":0.60459,"15.4":3.43303},P:{"4":0.02203,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.06608,"9.2":0.03304,"11.1-11.2":0.03304,"13.0":0.03304,"14.0":0.04405,"15.0":0.02203,"16.0":0.39648},I:{"0":0,"3":0,"4":0.0031,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0031,"4.2-4.3":0.01138,"4.4":0,"4.4.3-4.4.4":0.04398},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00615,"9":0.00615,"11":0.2891,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":26.36315},S:{"2.5":0},R:{_:"0"},M:{"0":0.13853},Q:{"10.4":0},O:{"0":0.16931},H:{"0":5.32976}}; 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 4e9e028304d20a..4099abe1eb07fa 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:{"36":0.00262,"42":0.00524,"43":0.00524,"44":0.00524,"45":0.00262,"47":0.01049,"48":0.00787,"50":0.00524,"52":0.02884,"56":0.00262,"57":0.00524,"58":0.00262,"60":0.04457,"61":0.00262,"64":0.01835,"66":0.00524,"68":0.00262,"69":0.00787,"71":0.00262,"72":0.01573,"73":0.00524,"78":0.01835,"82":0.00262,"83":0.00262,"85":0.00524,"86":0.00262,"87":0.00262,"88":0.02622,"89":0.01049,"90":0.00524,"91":0.04982,"92":0.00262,"93":0.00524,"94":0.01311,"95":0.01311,"96":0.0236,"97":0.05506,"98":0.89935,"99":2.12644,"100":0.25696,_:"2 3 4 5 6 7 8 9 10 11 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 46 49 51 53 54 55 59 62 63 65 67 70 74 75 76 77 79 80 81 84 101 3.5 3.6"},D:{"19":0.00787,"37":0.00524,"38":0.00262,"39":0.00787,"40":0.00524,"49":0.01049,"50":0.00524,"56":0.01049,"57":0.00524,"62":0.00787,"63":0.00262,"64":0.0236,"65":0.01573,"68":0.00524,"69":0.00262,"70":0.00524,"72":0.02098,"74":0.01835,"75":0.01049,"76":0.00524,"77":0.02098,"78":0.00787,"79":0.0472,"80":0.0236,"81":0.01573,"83":0.00524,"84":0.00524,"85":0.01049,"86":0.02884,"87":0.04457,"88":0.01049,"89":0.00787,"90":0.02098,"91":0.0236,"92":0.02622,"93":0.0236,"94":0.02622,"95":0.07604,"96":0.12061,"97":0.11537,"98":0.23074,"99":2.24705,"100":9.725,"101":0.1783,"102":0.00262,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 41 42 43 44 45 46 47 48 51 52 53 54 55 58 59 60 61 66 67 71 73 103 104"},F:{"28":0.00262,"79":0.00524,"80":0.00524,"81":0.02884,"82":0.00787,"83":0.01049,"84":0.12586,"85":0.6555,"86":0.02098,_:"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 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.03146,"13":0.01049,"14":0.01049,"15":0.01311,"16":0.00787,"17":0.00787,"18":0.06555,"84":0.00787,"85":0.00787,"89":0.01311,"90":0.01049,"92":0.0236,"93":0.00262,"94":0.00262,"95":0.00524,"96":0.02098,"97":0.02098,"98":0.03146,"99":0.22287,"100":1.27167,"101":0.01311,_:"79 80 81 83 86 87 88 91"},E:{"4":0,"10":0.00262,"13":0.01835,"14":0.04457,"15":0.01049,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01311,"11.1":0.00787,"12.1":0.00787,"13.1":0.03409,"14.1":0.07342,"15.1":0.02884,"15.2-15.3":0.02098,"15.4":0.07604},G:{"8":0.00083,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00125,"5.0-5.1":0.00292,"6.0-6.1":0.00083,"7.0-7.1":0.01793,"8.1-8.4":0.0025,"9.0-9.2":0,"9.3":0.03795,"10.0-10.2":0.00208,"10.3":0.02877,"11.0-11.2":0.01376,"11.3-11.4":0.04212,"12.0-12.1":0.0246,"12.2-12.5":0.52957,"13.0-13.1":0.03961,"13.2":0.00792,"13.3":0.04337,"13.4-13.7":0.08465,"14.0-14.4":0.49246,"14.5-14.8":0.57961,"15.0-15.1":0.37612,"15.2-15.3":1.00785,"15.4":0.83188},P:{"4":0.12739,"5.0-5.4":0.01062,"6.2-6.4":0.03136,"7.2-7.4":0.10616,"8.2":0.02446,"9.2":0.11677,"10.1":0.01028,"11.1-11.2":0.04246,"12.0":0.01062,"13.0":0.05308,"14.0":0.19108,"15.0":0.08493,"16.0":0.73249},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00059,"4.2-4.3":0.00138,"4.4":0,"4.4.3-4.4.4":0.0423},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00851,"11":0.13046,_:"6 7 8 9 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.84109},H:{"0":16.65926},L:{"0":54.92179},S:{"2.5":0.21396},R:{_:"0"},M:{"0":0.15494},Q:{"10.4":0}}; +module.exports={C:{"34":0.00265,"35":0.00265,"36":0.0053,"37":0.00265,"42":0.0053,"43":0.0053,"47":0.0106,"48":0.0053,"49":0.00265,"50":0.0053,"52":0.02916,"56":0.0053,"58":0.0053,"60":0.02121,"64":0.00795,"66":0.00265,"68":0.0053,"69":0.0053,"72":0.02121,"73":0.0053,"78":0.02121,"85":0.0053,"86":0.00265,"88":0.0106,"89":0.0053,"91":0.07158,"92":0.0053,"93":0.00795,"94":0.01326,"95":0.0053,"96":0.00795,"97":0.02121,"98":0.06362,"99":0.55671,"100":2.10489,"101":0.27836,"102":0.00265,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 38 39 40 41 44 45 46 51 53 54 55 57 59 61 62 63 65 67 70 71 74 75 76 77 79 80 81 82 83 84 87 90 103 3.5 3.6"},D:{"11":0.00265,"19":0.00795,"38":0.00265,"39":0.01856,"47":0.0106,"49":0.0053,"50":0.00265,"53":0.00265,"55":0.00265,"56":0.01326,"57":0.00265,"58":0.0053,"62":0.00265,"63":0.00795,"64":0.02121,"65":0.0106,"66":0.0053,"67":0.00265,"68":0.0053,"69":0.00265,"70":0.00795,"72":0.01856,"73":0.00265,"74":0.01326,"75":0.01591,"76":0.01326,"77":0.0053,"78":0.00265,"79":0.04507,"80":0.02651,"81":0.01591,"83":0.0106,"84":0.00795,"85":0.0053,"86":0.02386,"87":0.05302,"88":0.0106,"89":0.0106,"90":0.02121,"91":0.03977,"92":0.03711,"93":0.02121,"94":0.06628,"95":0.07688,"96":0.09279,"97":0.06893,"98":0.09279,"99":0.17497,"100":2.36999,"101":9.24669,"102":0.93315,"103":0.0053,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 48 51 52 54 59 60 61 71 104"},F:{"28":0.00265,"65":0.00265,"69":0.0106,"79":0.0053,"81":0.01591,"82":0.00795,"83":0.0053,"84":0.0053,"85":0.31812,"86":0.40295,"87":0.05832,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 70 71 72 73 74 75 76 77 78 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.02651,"13":0.0106,"14":0.0053,"15":0.0053,"16":0.01856,"17":0.0053,"18":0.07158,"84":0.00795,"85":0.00795,"88":0.00265,"89":0.01326,"90":0.00795,"92":0.02386,"95":0.0053,"96":0.02121,"97":0.01326,"98":0.02651,"99":0.03181,"100":0.1352,"101":1.50577,_:"79 80 81 83 86 87 91 93 94"},E:{"4":0,"10":0.00265,"12":0.0053,"13":0.01326,"14":0.03181,"15":0.0053,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02121,"11.1":0.00795,"12.1":0.0053,"13.1":0.03181,"14.1":0.07688,"15.1":0.02651,"15.2-15.3":0.01326,"15.4":0.10869,"15.5":0.0106},G:{"8":0.00178,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00089,"5.0-5.1":0.00266,"6.0-6.1":0,"7.0-7.1":0.0253,"8.1-8.4":0.00044,"9.0-9.2":0.00044,"9.3":0.0293,"10.0-10.2":0.00266,"10.3":0.05105,"11.0-11.2":0.01065,"11.3-11.4":0.00888,"12.0-12.1":0.01731,"12.2-12.5":0.5429,"13.0-13.1":0.04217,"13.2":0.00843,"13.3":0.06082,"13.4-13.7":0.08212,"14.0-14.4":0.54734,"14.5-14.8":0.57353,"15.0-15.1":0.3609,"15.2-15.3":0.53225,"15.4":1.53637},P:{"4":0.09391,"5.0-5.4":0.01021,"6.2-6.4":0.01051,"7.2-7.4":0.14608,"8.2":0.04047,"9.2":0.05217,"10.1":0.13125,"11.1-11.2":0.04174,"12.0":0.02087,"13.0":0.05217,"14.0":0.15651,"15.0":0.08347,"16.0":0.56344},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00053,"4.2-4.3":0.0024,"4.4":0,"4.4.3-4.4.4":0.0485},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00552,"11":0.12968,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.10287},Q:{"10.4":0.00735},O:{"0":0.82298},H:{"0":16.73761},L:{"0":54.34323},S:{"2.5":0.1984}}; 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 2e850eca33307d..0af12cfbfdf04d 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.00463,"4":0.03706,"11":0.01853,"17":0.00463,"38":0.00927,"43":0.00463,"44":0.02317,"45":0.00463,"48":0.00463,"51":0.0278,"52":0.0556,"53":0.0278,"54":0.01853,"55":0.03243,"56":0.02317,"57":0.01853,"58":0.00927,"59":0.00927,"70":0.00463,"78":0.07413,"79":0.00463,"80":0.00463,"81":0.00927,"82":0.00927,"83":0.00463,"84":0.00463,"85":0.00463,"86":0.00927,"87":0.00463,"88":0.0139,"89":0.00927,"90":0.00927,"91":0.09729,"93":0.01853,"94":0.10193,"95":0.01853,"96":0.0139,"97":0.0417,"98":0.62082,"99":1.67251,"100":0.00463,_:"3 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 92 101 3.5 3.6"},D:{"35":0.00927,"39":0.00927,"40":0.0278,"41":0.00927,"42":0.00927,"43":0.01853,"44":0.00927,"45":0.0139,"46":0.0139,"47":0.01853,"48":0.06486,"49":0.06023,"50":0.00927,"51":0.00927,"52":0.0139,"53":0.00927,"54":0.00927,"55":0.00927,"56":0.11119,"57":0.00927,"58":0.0139,"59":0.01853,"60":0.01853,"61":0.0278,"62":0.00927,"63":0.01853,"64":0.0139,"65":0.02317,"66":0.06486,"67":0.01853,"68":0.00463,"69":0.0139,"70":0.00927,"71":0.00463,"72":0.01853,"73":0.01853,"74":0.0139,"75":0.01853,"76":0.30115,"77":0.0139,"78":0.0417,"79":0.46793,"80":0.0695,"81":0.0695,"83":0.37527,"84":0.11583,"85":0.0695,"86":0.0695,"87":0.12046,"88":0.0278,"89":0.10193,"90":0.06023,"91":0.13899,"92":0.09266,"93":0.17142,"94":0.16216,"95":0.07413,"96":0.48647,"97":0.38917,"98":0.871,"99":4.99437,"100":16.05335,"101":0.18995,"102":0.0417,"103":0.0278,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 104"},F:{"84":0.09266,"85":0.32431,"86":0.00463,_:"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 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.00927,"15":0.26408,"16":0.10656,"17":0.00927,"18":0.01853,"85":0.00927,"86":0.00463,"87":0.0278,"91":0.00463,"92":0.00927,"94":0.00463,"95":0.01853,"96":0.0139,"97":0.08339,"98":0.06486,"99":0.81541,"100":4.71176,"101":0.0139,_:"13 14 79 80 81 83 84 88 89 90 93"},E:{"4":0,"8":0.00463,"9":0.00927,"12":0.00927,"13":0.06486,"14":0.32431,"15":0.13899,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.05096,"10.1":0.01853,"11.1":0.05096,"12.1":0.11583,"13.1":1.32504,"14.1":1.13045,"15.1":0.27335,"15.2-15.3":0.32431,"15.4":1.97829},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.00287,"7.0-7.1":0.0086,"8.1-8.4":0.00574,"9.0-9.2":0.01721,"9.3":0.07743,"10.0-10.2":0.02581,"10.3":0.10325,"11.0-11.2":0.03442,"11.3-11.4":0.04015,"12.0-12.1":0.03442,"12.2-12.5":0.48755,"13.0-13.1":0.03155,"13.2":0.02008,"13.3":0.08891,"13.4-13.7":0.26385,"14.0-14.4":0.91774,"14.5-14.8":3.26373,"15.0-15.1":1.15292,"15.2-15.3":11.26817,"15.4":10.82077},P:{"4":0.03263,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.02175,"13.0":0.0435,"14.0":0.05438,"15.0":0.0435,"16.0":1.85979},I:{"0":0,"3":0,"4":0.01356,"2.1":0,"2.2":0.00565,"2.3":0,"4.1":0.00113,"4.2-4.3":0.02938,"4.4":0,"4.4.3-4.4.4":0.03616},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02396,"9":0.09104,"10":0.00958,"11":0.43602,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":22.97827},S:{"2.5":0.00537},R:{_:"0"},M:{"0":0.4723},Q:{"10.4":0.00537},O:{"0":0.10197},H:{"0":0.22865}}; +module.exports={C:{"2":0.0046,"4":0.03682,"11":0.03221,"38":0.0046,"43":0.0046,"44":0.02301,"45":0.0092,"48":0.0046,"51":0.02301,"52":0.05062,"53":0.02301,"54":0.01841,"55":0.02761,"56":0.01841,"57":0.01841,"58":0.0046,"59":0.0092,"78":0.06903,"79":0.0092,"80":0.0092,"81":0.0092,"82":0.0092,"83":0.0092,"84":0.0046,"85":0.0046,"86":0.0046,"88":0.0092,"89":0.0092,"90":0.0046,"91":0.09204,"93":0.01381,"94":0.09664,"95":0.0092,"96":0.0092,"97":0.01841,"98":0.03221,"99":0.47401,"100":1.74416,"101":0.0046,_:"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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 87 92 102 103 3.5 3.6"},D:{"35":0.0092,"39":0.0046,"40":0.02761,"41":0.0092,"42":0.0092,"43":0.01381,"44":0.0092,"45":0.0092,"46":0.0092,"47":0.01381,"48":0.06443,"49":0.05983,"50":0.0046,"51":0.0092,"52":0.01381,"53":0.0092,"54":0.0092,"55":0.0092,"56":0.08284,"57":0.0092,"58":0.01381,"59":0.01381,"60":0.01841,"61":0.03682,"62":0.02761,"63":0.01841,"64":0.01381,"65":0.01841,"66":0.06443,"67":0.01841,"68":0.0092,"69":0.01381,"70":0.0092,"71":0.0046,"72":0.0092,"73":0.0046,"74":0.01841,"75":0.01841,"76":0.28532,"77":0.0092,"78":0.02301,"79":0.43259,"80":0.06443,"81":0.06903,"83":0.37736,"84":0.15647,"85":0.10585,"86":0.10585,"87":0.13806,"88":0.02301,"89":0.07823,"90":0.05062,"91":0.10585,"92":0.06903,"93":0.13806,"94":0.10124,"95":0.05522,"96":0.28993,"97":0.25311,"98":0.451,"99":0.6949,"100":5.73869,"101":14.33983,"102":0.67649,"103":0.02761,"104":0.02301,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38"},F:{"71":0.0046,"85":0.25771,"86":0.2209,"87":0.0092,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01381,"15":0.28532,"17":0.0046,"18":0.02301,"84":0.0092,"85":0.0092,"86":0.0092,"87":0.05062,"92":0.0046,"94":0.0046,"95":0.01381,"96":0.0092,"97":0.02761,"98":0.02761,"99":0.09664,"100":0.40498,"101":4.89653,_:"13 14 16 79 80 81 83 88 89 90 91 93"},E:{"4":0,"8":0.0046,"9":0.0092,"12":0.0092,"13":0.05522,"14":0.26692,"15":0.10585,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.05522,"10.1":0.01841,"11.1":0.04602,"12.1":0.10124,"13.1":0.74092,"14.1":0.90199,"15.1":0.17948,"15.2-15.3":0.20249,"15.4":3.25822,"15.5":0.28993},G:{"8":0,"3.2":0.0115,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00288,"7.0-7.1":0.00863,"8.1-8.4":0.00575,"9.0-9.2":0.02013,"9.3":0.07475,"10.0-10.2":0.023,"10.3":0.09488,"11.0-11.2":0.02875,"11.3-11.4":0.03738,"12.0-12.1":0.03163,"12.2-12.5":0.45426,"13.0-13.1":0.03163,"13.2":0.01725,"13.3":0.07763,"13.4-13.7":0.23288,"14.0-14.4":0.79351,"14.5-14.8":2.58754,"15.0-15.1":0.76764,"15.2-15.3":2.18503,"15.4":21.25233},P:{"4":0.03239,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.02159,"13.0":0.03239,"14.0":0.05398,"15.0":0.03239,"16.0":0.69094},I:{"0":0,"3":0,"4":0.01188,"2.1":0,"2.2":0.0054,"2.3":0,"4.1":0.00108,"4.2-4.3":0.02699,"4.4":0,"4.4.3-4.4.4":0.03023},A:{"8":0.02321,"9":0.09285,"10":0.00464,"11":1.9778,_:"6 7 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.45343},Q:{"10.4":0.0108},O:{"0":0.11336},H:{"0":0.22997},L:{"0":23.13123},S:{"2.5":0.0054}}; 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 17a93f910db5f3..888ac4326a55ef 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:{"33":0.00424,"43":0.01697,"45":0.00848,"47":0.00848,"49":0.00848,"50":0.00424,"52":0.11453,"54":0.00424,"57":0.00424,"61":0.02969,"62":0.00424,"66":0.01697,"68":0.01273,"73":0.04666,"76":0.00848,"78":0.02969,"83":0.01273,"84":0.00424,"86":0.02121,"88":0.01697,"89":0.00424,"90":0.04666,"91":0.11878,"92":0.00424,"93":0.00424,"94":0.02121,"95":0.02121,"96":0.04666,"97":0.02121,"98":0.5048,"99":1.6459,"100":0.01273,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 46 48 51 53 55 56 58 59 60 63 64 65 67 69 70 71 72 74 75 77 79 80 81 82 85 87 101 3.5 3.6"},D:{"22":0.00848,"36":0.05515,"38":0.18241,"43":0.01697,"47":0.01273,"48":0.02121,"49":0.17816,"52":0.00848,"53":0.00424,"54":0.00424,"55":0.00848,"56":0.00424,"58":0.00424,"62":0.02545,"63":0.00848,"65":0.02121,"66":0.00848,"69":0.01273,"70":0.02121,"71":0.01697,"72":0.02545,"73":0.02121,"74":0.01273,"75":0.00848,"76":0.02121,"77":0.00848,"78":0.01273,"79":0.05515,"80":0.14847,"81":0.03818,"83":0.0509,"84":0.02969,"85":0.02121,"86":0.86113,"87":0.06363,"88":0.02969,"89":0.04242,"90":0.04666,"91":0.08484,"92":0.08484,"93":0.0806,"94":0.05515,"95":0.0806,"96":0.13574,"97":0.14423,"98":0.2927,"99":4.53046,"100":22.90256,"101":0.3436,"102":0.00424,_:"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 37 39 40 41 42 44 45 46 50 51 57 59 60 61 64 67 68 103 104"},F:{"28":0.00848,"29":0.00424,"82":0.00424,"84":0.33936,"85":1.1114,"86":0.02121,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00848,"16":0.00848,"17":0.00424,"18":0.01273,"80":0.00848,"92":0.01273,"94":0.00424,"95":0.00848,"96":0.00848,"97":0.02545,"98":0.01273,"99":0.35209,"100":2.24402,"101":0.04666,_:"12 13 15 79 81 83 84 85 86 87 88 89 90 91 93"},E:{"4":0,"13":0.03394,"14":0.05939,"15":0.04242,_:"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.00848,"12.1":0.01273,"13.1":0.10181,"14.1":0.18241,"15.1":0.08908,"15.2-15.3":0.05939,"15.4":0.32663},G:{"8":0,"3.2":0.0015,"4.0-4.1":0.0015,"4.2-4.3":0,"5.0-5.1":0.02698,"6.0-6.1":0,"7.0-7.1":0.00899,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03297,"10.0-10.2":0.0015,"10.3":0.02473,"11.0-11.2":0.00899,"11.3-11.4":0.00674,"12.0-12.1":0.01124,"12.2-12.5":0.48557,"13.0-13.1":0.00599,"13.2":0.0015,"13.3":0.02548,"13.4-13.7":0.12664,"14.0-14.4":0.29074,"14.5-14.8":1.0191,"15.0-15.1":0.32746,"15.2-15.3":2.59347,"15.4":2.49006},P:{"4":0.03139,"5.0-5.4":0.01062,"6.2-6.4":0.02187,"7.2-7.4":0.2197,"8.2":0.02446,"9.2":0.03139,"10.1":0.01046,"11.1-11.2":0.04185,"12.0":0.04185,"13.0":0.07323,"14.0":0.10462,"15.0":0.10462,"16.0":1.56926},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00521,"4.2-4.3":0.00521,"4.4":0,"4.4.3-4.4.4":0.03563},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00848,"11":0.13574,_:"6 7 8 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.01727},H:{"0":0.17444},L:{"0":49.11086},S:{"2.5":0},R:{_:"0"},M:{"0":0.29366},Q:{"10.4":0}}; +module.exports={C:{"33":0.00469,"40":0.00469,"43":0.01874,"45":0.00469,"48":0.00469,"52":0.08903,"57":0.01406,"61":0.02812,"62":0.00469,"66":0.02812,"68":0.01874,"72":0.00469,"73":0.03749,"78":0.04217,"83":0.01406,"86":0.01406,"88":0.02343,"89":0.01406,"90":0.04686,"91":0.13589,"92":0.00469,"94":0.01406,"95":0.01406,"96":0.01874,"97":0.02343,"98":0.02343,"99":0.37019,"100":1.78537,"101":0.00937,_:"2 3 4 5 6 7 8 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 41 42 44 46 47 49 50 51 53 54 55 56 58 59 60 63 64 65 67 69 70 71 74 75 76 77 79 80 81 82 84 85 87 93 102 103 3.5 3.6"},D:{"22":0.00469,"36":0.00937,"38":0.14995,"43":0.00937,"47":0.00937,"48":0.02343,"49":0.15932,"52":0.00469,"53":0.00469,"55":0.00469,"58":0.00469,"62":0.01874,"63":0.00937,"65":0.01406,"66":0.00937,"68":0.00937,"69":0.00937,"70":0.01406,"71":0.02812,"72":0.00469,"73":0.01874,"74":0.01406,"75":0.01406,"76":0.01874,"77":0.00937,"78":0.01874,"79":0.05623,"80":0.14058,"81":0.04217,"83":0.01874,"84":0.01406,"85":0.0328,"86":0.92783,"87":0.06092,"88":0.03749,"89":0.05155,"90":0.04217,"91":0.08435,"92":0.09372,"93":0.11715,"94":0.04217,"95":0.07966,"96":0.11246,"97":0.09841,"98":0.29522,"99":0.31865,"100":5.41233,"101":24.3016,"102":2.04778,"103":0.00469,_:"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 37 39 40 41 42 44 45 46 50 51 54 56 57 59 60 61 64 67 104"},F:{"28":0.00469,"85":1.21836,"86":1.2371,"87":0.0328,_:"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:{"14":0.00469,"18":0.00937,"80":0.00469,"91":0.00469,"92":0.01406,"95":0.00469,"97":0.00469,"98":0.00469,"99":0.03749,"100":0.13121,"101":2.71788,_:"12 13 15 16 17 79 81 83 84 85 86 87 88 89 90 93 94 96"},E:{"4":0,"13":0.01406,"14":0.04686,"15":0.01874,_:"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.01406,"12.1":0.04686,"13.1":0.09841,"14.1":0.17807,"15.1":0.07498,"15.2-15.3":0.02343,"15.4":0.57169,"15.5":0.05155},G:{"8":0,"3.2":0.00151,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0204,"6.0-6.1":0,"7.0-7.1":0.00604,"8.1-8.4":0,"9.0-9.2":0.00151,"9.3":0.02417,"10.0-10.2":0,"10.3":0.03173,"11.0-11.2":0.00302,"11.3-11.4":0.00755,"12.0-12.1":0.00604,"12.2-12.5":0.37393,"13.0-13.1":0.00604,"13.2":0.00227,"13.3":0.01737,"13.4-13.7":0.10198,"14.0-14.4":0.29688,"14.5-14.8":0.75089,"15.0-15.1":0.21454,"15.2-15.3":0.5016,"15.4":5.1837},P:{"4":0.01042,"5.0-5.4":0.01021,"6.2-6.4":0.01051,"7.2-7.4":0.23958,"8.2":0.04047,"9.2":0.04167,"10.1":0.13125,"11.1-11.2":0.16666,"12.0":0.07292,"13.0":0.0625,"14.0":0.09375,"15.0":0.09375,"16.0":0.60416},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00239,"4.2-4.3":0.00478,"4.4":0,"4.4.3-4.4.4":0.04065},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00469,"11":0.19681,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.25507},Q:{"10.4":0},O:{"0":0.01063},H:{"0":0.14087},L:{"0":44.5622},S:{"2.5":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 193b46f77c76d0..04589f3d9f71fb 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:{"30":0.00672,"48":0.00672,"52":0.08403,"55":0.02017,"65":0.00672,"68":0.00336,"73":0.01344,"78":0.00672,"81":0.00672,"82":0.00672,"84":0.00336,"86":0.00672,"87":0.00672,"88":0.02017,"89":0.00672,"90":0.02017,"91":0.05714,"92":0.02017,"93":0.01008,"94":0.01344,"95":0.00336,"96":0.01008,"97":0.00672,"98":0.21174,"99":0.67556,"100":0.00336,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 74 75 76 77 79 80 83 85 101 3.5 3.6"},D:{"34":0.00672,"39":0.00672,"47":0.00336,"49":0.09747,"50":0.01681,"51":0.00336,"53":0.00336,"55":0.00336,"56":0.01344,"66":0.04033,"67":0.00672,"68":0.01008,"69":0.00336,"70":0.00672,"71":0.01008,"72":0.00672,"74":0.06386,"76":0.00672,"77":0.00336,"78":0.00336,"79":0.03025,"80":0.02017,"81":0.03025,"83":0.03025,"84":0.06722,"85":0.05378,"86":0.17813,"87":0.0773,"88":0.02689,"89":0.10419,"90":0.03697,"91":0.03025,"92":0.04033,"93":0.05714,"94":0.03361,"95":0.02689,"96":0.09411,"97":0.0773,"98":0.37643,"99":2.79971,"100":17.65869,"101":0.33274,"102":0.01344,"103":0.00336,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 48 52 54 57 58 59 60 61 62 63 64 65 73 75 104"},F:{"28":0.00672,"36":0.00336,"53":0.0605,"54":0.00672,"55":0.00672,"56":0.00336,"57":0.01681,"58":0.01008,"60":0.01681,"62":0.01344,"63":0.00672,"64":0.01681,"65":0.00336,"66":0.01008,"67":0.01008,"68":0.01344,"70":0.01008,"71":0.00336,"72":0.03025,"73":0.01344,"74":0.00672,"75":0.01008,"76":0.00672,"77":0.04705,"78":0.04033,"79":0.04705,"80":0.03697,"81":0.03025,"82":0.03697,"83":0.01681,"84":0.04033,"85":0.08739,_:"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 69 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00672},B:{"12":0.00672,"15":0.00672,"16":0.00672,"18":0.06722,"83":0.00336,"84":0.04369,"85":0.02353,"86":0.02353,"87":0.02353,"88":0.03025,"89":0.03697,"90":0.03025,"91":0.04369,"92":0.03361,"93":0.01681,"94":0.02353,"95":0.02353,"96":0.05042,"97":0.03025,"98":0.05042,"99":0.16133,"100":1.09233,"101":0.02017,_:"13 14 17 79 80 81"},E:{"4":0,"13":0.05042,"14":0.06722,"15":0.04033,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":1.01166,"12.1":0.00672,"13.1":0.05714,"14.1":0.11764,"15.1":0.05378,"15.2-15.3":0.03697,"15.4":0.18149},G:{"8":0.00098,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00245,"5.0-5.1":0.00147,"6.0-6.1":0.00098,"7.0-7.1":0.02109,"8.1-8.4":0,"9.0-9.2":0.0049,"9.3":0.02845,"10.0-10.2":0.00392,"10.3":0.05395,"11.0-11.2":0.01717,"11.3-11.4":0.01275,"12.0-12.1":0.00981,"12.2-12.5":0.41594,"13.0-13.1":0.03924,"13.2":0.01864,"13.3":0.05297,"13.4-13.7":0.1138,"14.0-14.4":0.37278,"14.5-14.8":0.53513,"15.0-15.1":0.43066,"15.2-15.3":1.36113,"15.4":1.40135},P:{"4":0.81339,"5.0-5.4":0.0305,"6.2-6.4":0.12201,"7.2-7.4":0.57954,"8.2":0.02446,"9.2":0.11184,"10.1":0.0305,"11.1-11.2":0.27452,"12.0":0.08134,"13.0":0.38636,"14.0":0.36603,"15.0":0.24402,"16.0":2.75537},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.002,"4.2-4.3":0.00424,"4.4":0,"4.4.3-4.4.4":0.02696},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01344,"9":0.01344,"11":0.09075,_:"6 7 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":3.60498},H:{"0":0.32055},L:{"0":50.68379},S:{"2.5":0},R:{_:"0"},M:{"0":0.05311},Q:{"10.4":0}}; +module.exports={C:{"48":0.00328,"52":0.05246,"55":0.00984,"66":0.00656,"71":0.00328,"78":0.0164,"86":0.00656,"87":0.00656,"88":0.00656,"89":0.00984,"90":0.00328,"91":0.04919,"92":0.00656,"93":0.00984,"94":0.00984,"95":0.00656,"96":0.00656,"97":0.00656,"98":0.00984,"99":0.19018,"100":0.77057,"101":0.00656,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 102 103 3.5 3.6"},D:{"34":0.00656,"38":0.00984,"39":0.00328,"49":0.0787,"53":0.01967,"56":0.01312,"63":0.00328,"64":0.02295,"66":0.03935,"67":0.01312,"68":0.00656,"70":0.01312,"71":0.02951,"72":0.00984,"74":0.12788,"76":0.00328,"77":0.00328,"78":0.01967,"79":0.04263,"80":0.02295,"81":0.02623,"83":0.05902,"84":0.13116,"85":0.05246,"86":0.14756,"87":0.07214,"88":0.03935,"89":0.09837,"90":0.04591,"91":0.04263,"92":0.04591,"93":0.04263,"94":0.02951,"95":0.02623,"96":0.12132,"97":0.06558,"98":0.31151,"99":0.15411,"100":3.37081,"101":15.62116,"102":1.58376,"103":0.0164,"104":0.00328,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 58 59 60 61 62 65 69 73 75"},F:{"28":0.00328,"36":0.00328,"49":0.00984,"53":0.0623,"54":0.00328,"55":0.00656,"56":0.00328,"57":0.02295,"58":0.00984,"60":0.01312,"62":0.01312,"63":0.0164,"64":0.01967,"65":0.04919,"66":0.02295,"67":0.00656,"68":0.01312,"69":0.00328,"70":0.00656,"71":0.02623,"72":0.01967,"73":0.0164,"74":0.00656,"75":0.01312,"76":0.00656,"77":0.03607,"78":0.01967,"79":0.02623,"80":0.02295,"81":0.0164,"82":0.02623,"83":0.00656,"84":0.02623,"85":0.05574,"86":0.09181,"87":0.00656,_:"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 50 51 52 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01312},B:{"12":0.00656,"14":0.00656,"15":0.00984,"16":0.00328,"17":0.00984,"18":0.05246,"84":0.02623,"85":0.01312,"86":0.02295,"87":0.00984,"88":0.00984,"89":0.0164,"90":0.01312,"91":0.0164,"92":0.01967,"93":0.00656,"94":0.00984,"95":0.00984,"96":0.02295,"97":0.01312,"98":0.01967,"99":0.01967,"100":0.06886,"101":1.15421,_:"13 79 80 81 83"},E:{"4":0,"13":0.01967,"14":0.04263,"15":0.02623,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.8591,"12.1":0.00656,"13.1":0.05246,"14.1":0.07214,"15.1":0.03935,"15.2-15.3":0.01967,"15.4":0.25248,"15.5":0.03935},G:{"8":0.00058,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00117,"7.0-7.1":0.021,"8.1-8.4":0.00058,"9.0-9.2":0.00292,"9.3":0.07466,"10.0-10.2":0.00292,"10.3":0.05891,"11.0-11.2":0.021,"11.3-11.4":0.01225,"12.0-12.1":0.0105,"12.2-12.5":0.4888,"13.0-13.1":0.05016,"13.2":0.02042,"13.3":0.04958,"13.4-13.7":0.13182,"14.0-14.4":0.37039,"14.5-14.8":0.53021,"15.0-15.1":0.30856,"15.2-15.3":0.60779,"15.4":3.06288},P:{"4":0.8117,"5.0-5.4":0.03044,"6.2-6.4":0.12175,"7.2-7.4":0.5479,"8.2":0.01015,"9.2":0.08117,"10.1":0.02029,"11.1-11.2":0.27395,"12.0":0.08117,"13.0":0.27395,"14.0":0.28409,"15.0":0.22322,"16.0":1.78574},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00232,"4.2-4.3":0.00493,"4.4":0,"4.4.3-4.4.4":0.03307},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00984,"8":0.00656,"9":0.00328,"11":0.15083,_:"7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.09409},Q:{"10.4":0},O:{"0":4.15358},H:{"0":0.32451},L:{"0":50.6092},S:{"2.5":0}}; 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 c3ecc7e8cfc3ab..703b73696481d4 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:{"38":0.00964,"39":0.09644,"60":0.3279,"69":0.00964,"70":0.01929,"91":0.2411,"93":0.00964,"95":0.00964,"98":2.79676,"99":8.74711,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 94 96 97 100 101 3.5 3.6"},D:{"67":0.40505,"75":0.03858,"93":0.82938,"96":0.06751,"97":0.00964,"98":0.3954,"99":13.59804,"100":46.2912,"101":0.71366,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.17359,"18":2.17954,"99":2.03488,"100":13.80056,"101":0.1543,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98"},E:{"4":0,"11":0.00964,"14":0.00964,"15":0.14466,_:"0 5 6 7 8 9 10 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.35683,"12.1":0.04822,"13.1":0.02893,"14.1":0.30861,"15.1":0.03858,"15.2-15.3":0.25074,"15.4":1.06084},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.00663,"10.3":0.01977,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.52603,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.05268,"14.5-14.8":0.08546,"15.0-15.1":0.01327,"15.2-15.3":0.20383,"15.4":0.36824},P:{"4":0.2555,"5.0-5.4":0.08176,"6.2-6.4":0.06132,"7.2-7.4":0.23506,"8.2":0.06132,"9.2":0.27594,"10.1":0.08391,"11.1-11.2":0.50079,"12.0":0.02044,"13.0":0.1022,"14.0":0.24528,"15.0":0.31682,"16.0":0.20648},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:{"11":0.38576,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.06186,_:"11"},L:{"0":2.06778},S:{"2.5":0},R:{_:"0"},M:{"0":0.02421},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"39":0.058,"70":0.01933,"91":0.14501,"95":0.00967,"96":0.09667,"99":1.40172,"100":8.12995,"101":0.00967,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 97 98 102 103 3.5 3.6"},D:{"67":0.37701,"75":0.087,"93":0.86036,"95":0.31901,"97":0.00967,"98":0.029,"99":0.09667,"100":12.32543,"101":46.21793,"102":3.65413,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 96 103 104"},F:{"86":0.029,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.058,"18":3.56712,"100":0.43502,"101":14.80018,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99"},E:{"4":0,"13":0.01933,"14":0.09667,"15":0.116,_:"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.21267,"12.1":0.116,"13.1":0.06767,"14.1":0.23201,"15.1":0.13534,"15.2-15.3":0.03867,"15.4":1.64339,"15.5":0.23201},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.37258,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.03037,"14.5-14.8":0.01298,"15.0-15.1":0.01298,"15.2-15.3":0.05623,"15.4":0.61509},P:{"4":0.26556,"5.0-5.4":0.17363,"6.2-6.4":0.02043,"7.2-7.4":0.32684,"8.2":0.01032,"9.2":0.21449,"10.1":0.01021,"11.1-11.2":0.38812,"12.0":0.03064,"13.0":0.21449,"14.0":0.31663,"15.0":0.12256,"16.0":0.0442},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:{"11":0.32868,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01411,_:"11"},L:{"0":1.81955},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.01356}}; 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 f89f2603f3ec65..3059e4a5c4702e 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:{"45":0.0144,"52":0.0072,"91":0.0108,"94":0.0108,"98":0.57976,"99":1.50162,"100":0.02161,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 96 97 101 3.5 3.6"},D:{"23":0.0036,"29":0.0072,"49":0.03241,"50":0.0036,"61":0.01801,"65":0.0108,"68":0.11163,"73":0.02161,"75":0.0072,"76":0.02881,"78":0.0144,"79":0.02521,"80":0.0072,"81":0.0108,"83":0.02881,"84":0.02161,"85":0.09363,"87":0.30969,"88":0.0144,"89":0.0108,"90":0.05402,"91":0.0072,"92":0.02521,"93":0.11523,"94":0.0072,"95":0.07562,"96":0.05402,"97":0.07922,"98":0.41412,"99":4.04392,"100":14.22395,"101":0.15844,"102":0.16205,"103":0.0036,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 62 63 64 66 67 69 70 71 72 74 77 86 104"},F:{"28":0.0072,"82":0.06122,"84":0.12964,"85":0.51494,_:"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 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.0144,"91":0.0036,"92":0.0108,"97":0.30969,"98":0.0036,"99":0.62657,"100":5.17104,"101":0.03241,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96"},E:{"4":0,"14":0.14764,"15":0.05762,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.02881,"13.1":0.19085,"14.1":0.32409,"15.1":0.06842,"15.2-15.3":0.08642,"15.4":0.64458},G:{"8":0.00235,"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.18361,"8.1-8.4":0.03884,"9.0-9.2":0,"9.3":0.0306,"10.0-10.2":0,"10.3":0.09769,"11.0-11.2":0,"11.3-11.4":0.04002,"12.0-12.1":0.07768,"12.2-12.5":1.25229,"13.0-13.1":0.00353,"13.2":0.04119,"13.3":0.00471,"13.4-13.7":0.02942,"14.0-14.4":0.12358,"14.5-14.8":0.59083,"15.0-15.1":0.65674,"15.2-15.3":5.90952,"15.4":2.687},P:{"4":0.22253,"5.0-5.4":0.01116,"6.2-6.4":0.04084,"7.2-7.4":0.18915,"8.2":0.01011,"9.2":0.05563,"10.1":0.02113,"11.1-11.2":0.04451,"12.0":0.01056,"13.0":1.21278,"14.0":0.08901,"15.0":0.04451,"16.0":5.88589},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01144,"4.2-4.3":0.00858,"4.4":0,"4.4.3-4.4.4":0.11438},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0072,"11":0.04681,_:"6 7 8 9 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.0064},O:{"0":0.0512},H:{"0":0.06059},L:{"0":47.34055},S:{"2.5":0},R:{_:"0"},M:{"0":0.1728},Q:{"10.4":0}}; +module.exports={C:{"52":0.00342,"80":0.00342,"83":0.00342,"98":0.00684,"99":0.55078,"100":1.05025,"101":0.01368,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 102 103 3.5 3.6"},D:{"29":0.00684,"47":0.01368,"49":0.04105,"50":0.04789,"61":0.05474,"63":0.01026,"65":0.01368,"68":0.01368,"75":0.01026,"76":0.04105,"78":0.01026,"79":0.02053,"83":0.02053,"86":0.00684,"87":0.06158,"89":0.01711,"90":0.04105,"91":0.02053,"92":0.01368,"93":0.16421,"94":0.00684,"95":0.04789,"96":0.05816,"97":0.04105,"98":0.03421,"99":0.17105,"100":4.22836,"101":12.70902,"102":1.28288,"103":0.01026,"104":0.01368,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 51 52 53 54 55 56 57 58 59 60 62 64 66 67 69 70 71 72 73 74 77 80 81 84 85 88"},F:{"28":0.00342,"85":0.49262,"86":0.20526,_:"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 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.00684,"84":0.00684,"92":0.00684,"94":0.00342,"96":0.01026,"97":0.01026,"98":0.00684,"99":0.14368,"100":0.72867,"101":5.77465,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 95"},E:{"4":0,"13":0.00684,"14":0.16421,"15":0.01711,_:"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","12.1":0.01026,"13.1":0.15737,"14.1":0.24631,"15.1":0.02053,"15.2-15.3":0.05474,"15.4":1.5155,"15.5":0.11289},G:{"8":0.0021,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00946,"6.0-6.1":0,"7.0-7.1":0.03363,"8.1-8.4":0.02522,"9.0-9.2":0,"9.3":0.09144,"10.0-10.2":0,"10.3":0.08303,"11.0-11.2":0.00315,"11.3-11.4":0.0021,"12.0-12.1":0.00526,"12.2-12.5":2.65597,"13.0-13.1":0.00315,"13.2":0.00105,"13.3":0.00315,"13.4-13.7":0.02943,"14.0-14.4":0.06201,"14.5-14.8":0.57912,"15.0-15.1":0.43408,"15.2-15.3":0.97536,"15.4":5.50953},P:{"4":0.15603,"5.0-5.4":0.02027,"6.2-6.4":0.01043,"7.2-7.4":0.1226,"8.2":0.01022,"9.2":0.01115,"10.1":0.04171,"11.1-11.2":0.04458,"12.0":0.02229,"13.0":0.45695,"14.0":0.05573,"15.0":0.03344,"16.0":1.88352},I:{"0":0,"3":0,"4":0.00526,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01053,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00684,"11":0.05816,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.15792},Q:{"10.4":0},O:{"0":0.0658},H:{"0":0.99049},L:{"0":52.37413},S:{"2.5":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 994c6c72ac6f1c..811272ee24df89 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:{"8":0.0055,"27":0.20915,"36":0.02752,"43":0.01101,"45":0.01101,"47":0.01101,"48":0.0055,"52":0.42381,"55":0.01101,"56":0.0055,"58":0.0055,"60":0.03853,"62":0.01101,"63":0.01101,"64":0.01101,"65":0.01651,"66":0.01101,"67":0.01101,"68":0.02202,"69":0.01651,"70":0.01651,"71":0.01101,"72":0.02752,"78":0.08256,"79":0.0055,"81":0.0055,"84":0.0055,"87":0.0055,"88":0.03302,"89":0.02202,"90":0.02752,"91":0.1376,"92":0.0055,"93":0.01651,"94":0.01101,"95":0.01651,"96":0.02752,"97":0.04403,"98":0.80358,"99":2.50982,"100":0.02752,_:"2 3 4 5 6 7 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 37 38 39 40 41 42 44 46 49 50 51 53 54 57 59 61 73 74 75 76 77 80 82 83 85 86 101 3.5 3.6"},D:{"11":0.0055,"42":0.01101,"43":0.0055,"46":0.0055,"47":0.02202,"48":0.0055,"49":0.48435,"51":0.02752,"53":0.0055,"58":0.01101,"59":0.0055,"63":0.01651,"64":0.0055,"65":0.02752,"66":0.01101,"67":0.02202,"68":0.01101,"69":0.03853,"70":0.02202,"71":0.02202,"72":0.01651,"73":0.03302,"74":0.01651,"75":0.05504,"76":0.04403,"77":0.02752,"78":0.02202,"79":0.06605,"80":0.03853,"81":0.03853,"83":0.06054,"84":0.03853,"85":0.05504,"86":0.08256,"87":0.10458,"88":0.09357,"89":0.11008,"90":0.07706,"91":0.12659,"92":0.1321,"93":0.08256,"94":0.08256,"95":0.06054,"96":0.39078,"97":0.58893,"98":0.49536,"99":5.33888,"100":27.19526,"101":0.49536,"102":0.01651,_:"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 44 45 50 52 54 55 56 57 60 61 62 103 104"},F:{"36":0.0055,"53":0.0055,"57":0.01101,"78":0.0055,"80":0.01101,"82":0.01651,"83":0.01101,"84":0.39629,"85":1.49158,"86":0.02752,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 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.01651,"18":0.02752,"84":0.0055,"85":0.0055,"86":0.0055,"89":0.01101,"90":0.0055,"91":0.0055,"92":0.01651,"96":0.01651,"97":0.01651,"98":0.01651,"99":0.20365,"100":1.57965,"101":0.03302,_:"13 14 15 16 17 79 80 81 83 87 88 93 94 95"},E:{"4":0,"13":0.01101,"14":0.02202,"15":0.02202,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0055,"11.1":0.0055,"12.1":0.0055,"13.1":0.04403,"14.1":0.05504,"15.1":0.01651,"15.2-15.3":0.01651,"15.4":0.07706},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00248,"6.0-6.1":0.00435,"7.0-7.1":0.01077,"8.1-8.4":0.00041,"9.0-9.2":0.00041,"9.3":0.06315,"10.0-10.2":0.00248,"10.3":0.06625,"11.0-11.2":0.00518,"11.3-11.4":0.00518,"12.0-12.1":0.00704,"12.2-12.5":0.20932,"13.0-13.1":0.00932,"13.2":0.006,"13.3":0.01656,"13.4-13.7":0.03851,"14.0-14.4":0.10394,"14.5-14.8":0.22444,"15.0-15.1":0.09959,"15.2-15.3":0.57703,"15.4":0.61575},P:{"4":0.10904,"5.0-5.4":0.02079,"6.2-6.4":0.03119,"7.2-7.4":0.09813,"8.2":0.02446,"9.2":0.03119,"10.1":0.03119,"11.1-11.2":0.04361,"12.0":0.0109,"13.0":0.05452,"14.0":0.05452,"15.0":0.04361,"16.0":0.97043},I:{"0":0,"3":0,"4":0.00036,"2.1":0,"2.2":0,"2.3":0.00036,"4.1":0.00475,"4.2-4.3":0.00641,"4.4":0,"4.4.3-4.4.4":0.05107},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0055,"11":0.08256,_:"6 7 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.00899},O:{"0":0.03597},H:{"0":0.41288},L:{"0":48.17794},S:{"2.5":0},R:{_:"0"},M:{"0":0.14387},Q:{"10.4":0}}; +module.exports={C:{"26":0.00559,"27":0.18431,"36":0.00559,"43":0.01117,"45":0.01676,"47":0.01676,"52":0.50265,"55":0.01117,"56":0.01117,"57":0.00559,"60":0.03351,"61":0.01117,"62":0.01117,"63":0.01117,"64":0.01676,"65":0.02234,"66":0.01117,"67":0.01117,"68":0.02793,"69":0.01676,"70":0.01117,"71":0.00559,"72":0.02234,"78":0.09495,"79":0.01117,"80":0.02234,"81":0.01117,"84":0.00559,"85":0.00559,"88":0.03351,"89":0.03351,"90":0.02234,"91":0.11729,"93":0.01676,"94":0.01117,"95":0.01117,"96":0.01676,"97":0.02793,"98":0.07261,"99":0.75398,"100":2.61937,"101":0.03351,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 28 29 30 31 32 33 34 35 37 38 39 40 41 42 44 46 48 49 50 51 53 54 58 59 73 74 75 76 77 82 83 86 87 92 102 103 3.5 3.6"},D:{"41":0.02234,"42":0.01117,"47":0.01676,"48":0.00559,"49":0.44122,"51":0.01676,"53":0.00559,"56":0.00559,"58":0.01117,"60":0.00559,"61":0.00559,"63":0.01676,"64":0.01117,"65":0.02234,"66":0.01117,"67":0.01676,"68":0.01117,"69":0.02234,"70":0.01676,"71":0.01676,"72":0.02234,"73":0.01117,"74":0.01676,"75":0.05027,"76":0.05585,"77":0.02234,"78":0.01676,"79":0.06144,"80":0.05027,"81":0.0391,"83":0.04468,"84":0.08378,"85":0.07261,"86":0.09495,"87":0.10053,"88":0.07819,"89":0.07261,"90":0.08378,"91":0.13963,"92":0.11729,"93":0.08936,"94":0.16755,"95":0.05585,"96":0.29042,"97":0.4468,"98":0.28484,"99":0.4468,"100":6.17143,"101":24.46789,"102":2.5691,"103":0.02234,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 43 44 45 46 50 52 54 55 57 59 62 104"},F:{"53":0.00559,"57":0.01676,"78":0.01117,"79":0.01117,"80":0.02793,"82":0.01676,"83":0.01117,"84":0.04468,"85":0.95504,"86":1.07232,"87":0.07819,_:"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 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00559,"15":0.00559,"18":0.02234,"84":0.00559,"89":0.00559,"92":0.01117,"96":0.00559,"97":0.00559,"98":0.02234,"99":0.02234,"100":0.05585,"101":1.79279,_:"13 14 16 17 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.00559,"14":0.02234,"15":0.01676,_:"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.01117,"12.1":0.01117,"13.1":0.06144,"14.1":0.06702,"15.1":0.01676,"15.2-15.3":0.01676,"15.4":0.14521,"15.5":0.02234},G:{"8":0,"3.2":0.00046,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00206,"6.0-6.1":0.00229,"7.0-7.1":0.00872,"8.1-8.4":0.00321,"9.0-9.2":0.00069,"9.3":0.0546,"10.0-10.2":0.00275,"10.3":0.05483,"11.0-11.2":0.00436,"11.3-11.4":0.00642,"12.0-12.1":0.00918,"12.2-12.5":0.20028,"13.0-13.1":0.01055,"13.2":0.00642,"13.3":0.01904,"13.4-13.7":0.04497,"14.0-14.4":0.11517,"14.5-14.8":0.2152,"15.0-15.1":0.07479,"15.2-15.3":0.18308,"15.4":1.27282},P:{"4":0.06624,"5.0-5.4":0.03044,"6.2-6.4":0.03112,"7.2-7.4":0.08832,"8.2":0.01015,"9.2":0.08117,"10.1":0.02029,"11.1-11.2":0.03312,"12.0":0.02075,"13.0":0.03312,"14.0":0.04416,"15.0":0.03312,"16.0":0.43056},I:{"0":0,"3":0,"4":0.00052,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00416,"4.2-4.3":0.00448,"4.4":0,"4.4.3-4.4.4":0.04383},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12287,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00883},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.17222},Q:{"10.4":0},O:{"0":0.03091},H:{"0":0.40554},L:{"0":47.76212},S:{"2.5":0.00442}}; 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 a8e1e942f2f81d..b2f92b624423d7 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:{"91":0.06616,"95":0.02724,"96":0.02335,"97":0.01946,"98":0.84456,"99":0.8251,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 100 101 3.5 3.6"},D:{"65":0.01168,"74":0.01168,"76":0.08952,"80":0.01168,"84":0.09341,"90":0.02335,"94":0.01946,"96":0.02724,"97":0.12065,"98":0.144,"99":3.47945,"100":11.60594,"101":0.07784,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 75 77 78 79 81 83 85 86 87 88 89 91 92 93 95 102 103 104"},F:{"84":0.65775,"85":0.10119,_:"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 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.01168,"89":0.07395,"97":0.01168,"98":0.03114,"99":0.55656,"100":5.95865,"101":0.02724,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96"},E:{"4":0,"13":0.01557,"14":0.17514,"15":0.06227,_:"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.01557,"12.1":0.06227,"13.1":0.1946,"14.1":1.86038,"15.1":2.06665,"15.2-15.3":2.25736,"15.4":3.0669},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.1476,"10.0-10.2":0,"10.3":0.06928,"11.0-11.2":0.00904,"11.3-11.4":0.01205,"12.0-12.1":0,"12.2-12.5":0.12651,"13.0-13.1":0,"13.2":0.02109,"13.3":0.01506,"13.4-13.7":0.07832,"14.0-14.4":0.4699,"14.5-14.8":3.23204,"15.0-15.1":1.27715,"15.2-15.3":10.41001,"15.4":14.25051},P:{"4":0.10326,"5.0-5.4":0.02043,"6.2-6.4":0.3663,"7.2-7.4":0.10326,"8.2":0.04117,"9.2":0.01027,"10.1":0.0207,"11.1-11.2":0.05163,"12.0":0.02055,"13.0":0.09293,"14.0":0.21684,"15.0":0.06164,"16.0":3.0358},I:{"0":0,"3":0,"4":0.00425,"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.00186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.04281,"11":0.07006,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":27.61842},S:{"2.5":0},R:{_:"0"},M:{"0":0.16492},Q:{"10.4":0},O:{"0":0.01832},H:{"0":0}}; +module.exports={C:{"52":0.00811,"78":0.15405,"91":0.02432,"95":0.02838,"98":0.00811,"99":0.14189,"100":2.20132,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 101 102 103 3.5 3.6"},D:{"76":0.03649,"77":0.01216,"80":0.01622,"90":0.01216,"91":0.01216,"92":0.01216,"93":0.03649,"94":0.03243,"96":0.00811,"97":0.02432,"98":0.12162,"99":0.27973,"100":5.88235,"101":11.29039,"102":0.74999,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 78 79 81 83 84 85 86 87 88 89 95 103 104"},F:{"85":0.16216,"86":0.08919,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00811,"15":0.02838,"16":0.06081,"18":0.03243,"89":0.00811,"90":0.00811,"96":0.00811,"98":0.11757,"99":0.01216,"100":0.16216,"101":5.31885,_:"13 14 17 79 80 81 83 84 85 86 87 88 91 92 93 94 95 97"},E:{"4":0,"13":0.34459,"14":0.11757,"15":0.03649,_:"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 12.1","13.1":0.42567,"14.1":1.57701,"15.1":1.90133,"15.2-15.3":2.43645,"15.4":4.1594,"15.5":0.21081},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.03622,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04829,"10.0-10.2":0,"10.3":0.07848,"11.0-11.2":0.00302,"11.3-11.4":0.01811,"12.0-12.1":0.00302,"12.2-12.5":0.2475,"13.0-13.1":0,"13.2":0.00905,"13.3":0.09357,"13.4-13.7":0.05735,"14.0-14.4":0.42256,"14.5-14.8":1.87737,"15.0-15.1":0.32296,"15.2-15.3":1.91359,"15.4":25.04573},P:{"4":0.04103,"5.0-5.4":0.02178,"6.2-6.4":0.01024,"7.2-7.4":0.31794,"8.2":0.02288,"9.2":0.01026,"10.1":0.02035,"11.1-11.2":0.09231,"12.0":0.02068,"13.0":0.06154,"14.0":0.10256,"15.0":0.04103,"16.0":1.50767},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:{"11":0.02432,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":25.96388},S:{"2.5":0},R:{_:"0"},M:{"0":0.24375},Q:{"10.4":0},O:{"0":0.01784},H:{"0":0.00563}}; 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 6a9ab49eb5ef75..46a178fc6bcc66 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:{"52":0.0667,"55":0.00476,"78":0.04288,"91":0.03335,"93":0.00953,"94":0.17627,"96":0.00476,"97":0.01906,"98":0.61456,"99":1.98182,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 95 100 101 3.5 3.6"},D:{"47":0.00953,"67":0.00953,"72":0.01906,"73":0.01429,"76":0.16674,"78":0.02382,"79":0.01906,"80":0.03811,"83":0.02382,"85":0.01906,"87":0.02382,"88":0.02382,"89":0.09528,"90":0.00953,"91":0.00476,"92":0.33348,"93":0.0524,"94":0.0524,"95":0.02858,"96":0.19532,"97":0.17627,"98":0.89087,"99":4.56391,"100":15.7212,"101":0.13816,"102":0.00953,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 74 75 77 81 84 86 103 104"},F:{"84":0.31919,"85":0.22391,_:"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 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.00476,"85":0.00476,"87":0.0524,"89":0.00953,"92":0.00476,"94":0.01906,"95":0.00953,"96":0.16674,"97":0.02382,"98":0.02382,"99":1.79603,"100":8.11786,"101":0.12863,_:"12 13 14 15 16 18 79 80 81 83 84 86 88 90 91 93"},E:{"4":0,"13":0.01906,"14":0.3049,"15":0.16198,_:"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.00953,"12.1":0.07146,"13.1":0.50022,"14.1":1.87702,"15.1":0.44305,"15.2-15.3":0.16674,"15.4":1.96753},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00887,"6.0-6.1":0,"7.0-7.1":0.01183,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06803,"10.0-10.2":0,"10.3":0.10352,"11.0-11.2":0,"11.3-11.4":0.06507,"12.0-12.1":0.00296,"12.2-12.5":0.41113,"13.0-13.1":0.0207,"13.2":0,"13.3":0.0207,"13.4-13.7":0.28986,"14.0-14.4":0.91099,"14.5-14.8":3.28312,"15.0-15.1":0.70986,"15.2-15.3":12.23923,"15.4":11.41697},P:{"4":0.04249,"5.0-5.4":0.02055,"6.2-6.4":0.03119,"7.2-7.4":0.09245,"8.2":0.02446,"9.2":0.03082,"10.1":0.03119,"11.1-11.2":0.02125,"12.0":0.05136,"13.0":0.11686,"14.0":0.14873,"15.0":0.02125,"16.0":3.36769},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.03142},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19532,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.05761},H:{"0":0.00992},L:{"0":20.83013},S:{"2.5":0},R:{_:"0"},M:{"0":0.57083},Q:{"10.4":0}}; +module.exports={C:{"52":0.28031,"78":0.03383,"94":0.16432,"98":0.029,"99":0.85544,"100":1.86554,"101":0.00967,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 102 103 3.5 3.6"},D:{"47":0.0145,"49":0.00967,"68":0.00483,"72":0.0145,"75":0.00967,"76":0.20299,"78":0.00483,"79":0.00483,"80":0.02417,"83":0.0145,"84":0.00967,"85":0.0145,"87":0.00967,"88":0.02417,"89":0.00483,"90":0.0145,"92":0.21265,"93":0.04833,"94":0.02417,"95":0.08699,"96":0.05316,"97":0.91827,"98":0.20299,"99":0.38181,"100":6.40856,"101":14.32501,"102":0.76361,"103":0.00967,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 77 81 86 91 104"},F:{"85":0.13049,"86":0.23198,"87":0.00967,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00483,"85":0.00967,"87":0.16432,"89":0.0435,"93":0.11599,"95":0.02417,"96":0.01933,"97":0.029,"98":0.00967,"99":0.19815,"100":1.36774,"101":9.33252,_:"12 13 14 15 16 17 79 80 81 83 84 86 88 90 91 92 94"},E:{"4":0,"13":0.0435,"14":0.28998,"15":0.06766,_:"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.00967,"12.1":0.03866,"13.1":0.5558,"14.1":0.74428,"15.1":0.4253,"15.2-15.3":0.11116,"15.4":3.74558,"15.5":0.28998},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.01159,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04636,"10.0-10.2":0,"10.3":0.06374,"11.0-11.2":0.03477,"11.3-11.4":0.02608,"12.0-12.1":0.01159,"12.2-12.5":0.66931,"13.0-13.1":0.02318,"13.2":0,"13.3":0.01738,"13.4-13.7":0.13618,"14.0-14.4":0.54182,"14.5-14.8":2.5903,"15.0-15.1":0.70697,"15.2-15.3":1.47479,"15.4":22.61731},P:{"4":0.02141,"5.0-5.4":0.03044,"6.2-6.4":0.03112,"7.2-7.4":0.0107,"8.2":0.01015,"9.2":0.02053,"10.1":0.02029,"11.1-11.2":0.02141,"12.0":0.02053,"13.0":0.02141,"14.0":0.12844,"15.0":0.03211,"16.0":1.31648},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00418,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00098},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.02417,"11":0.20299,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.41853},Q:{"10.4":0},O:{"0":0.05684},H:{"0":0.00978},L:{"0":20.76175},S:{"2.5":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 bfe6f59090921f..8fef07a31cd64e 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:{"38":0.00389,"40":0.00779,"50":0.00389,"51":0.03504,"52":0.06229,"53":0.03114,"54":0.01947,"55":0.23358,"56":0.02336,"57":0.02336,"58":0.01168,"59":0.00779,"67":0.00389,"68":0.00779,"72":0.00389,"75":0.00389,"78":0.02725,"79":0.01168,"80":0.01947,"81":0.01557,"82":0.01557,"83":0.01168,"84":0.01557,"86":0.00779,"87":0.00779,"88":0.01168,"89":0.01168,"90":0.01557,"91":0.02336,"92":0.00779,"93":0.0545,"94":0.01557,"96":0.00389,"97":0.01168,"98":0.17129,"99":0.42044,"100":0.00779,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 47 48 49 60 61 62 63 64 65 66 69 70 71 73 74 76 77 85 95 101 3.5 3.6"},D:{"28":0.00389,"33":0.02725,"34":0.00779,"38":0.01947,"39":0.01168,"40":0.01168,"41":0.02336,"42":0.01557,"43":0.02336,"44":0.02725,"45":0.01947,"46":0.01557,"47":0.01557,"48":0.01947,"49":0.0584,"50":0.01557,"51":0.01168,"52":0.00779,"53":0.01947,"54":0.01168,"55":0.01168,"56":0.01557,"57":0.07007,"58":0.01557,"59":0.01557,"60":0.01557,"61":0.01557,"62":0.01557,"63":0.01557,"64":0.01168,"65":0.01947,"67":0.01168,"68":0.00779,"69":0.00779,"70":0.00779,"71":0.00779,"72":0.00779,"73":0.00779,"74":0.01557,"75":0.01947,"76":0.01557,"77":0.14793,"78":0.01947,"79":0.07786,"80":0.04282,"81":0.03504,"83":0.10122,"84":0.18297,"85":0.17129,"86":0.23747,"87":0.22969,"88":0.02336,"89":0.0545,"90":0.03114,"91":0.0584,"92":0.06618,"93":0.06618,"94":0.03114,"95":0.03114,"96":0.11679,"97":0.07786,"98":0.18297,"99":3.00929,"100":16.87616,"101":0.25694,"102":0.00779,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 35 36 37 66 103 104"},F:{"28":0.01168,"36":0.01168,"40":0.00779,"43":0.00779,"46":0.01947,"68":0.00779,"69":0.00389,"70":0.00779,"71":0.01168,"77":0.11679,"78":0.07786,"79":0.09733,"80":0.07007,"81":0.0584,"84":0.11679,"85":0.37762,"86":0.00779,_:"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 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 72 73 74 75 76 82 83 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.00779,"17":0.00389,"18":0.03893,"84":0.02336,"85":0.02336,"86":0.02725,"87":0.01557,"88":0.01168,"89":0.01557,"90":0.01557,"91":0.01947,"92":0.01557,"93":0.00779,"94":0.01168,"95":0.01168,"96":0.02725,"97":0.01947,"98":0.02725,"99":0.19854,"100":1.5027,"101":0.01947,_:"13 14 15 16 79 80 81 83"},E:{"4":0,"13":0.0545,"14":0.09733,"15":0.04672,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01947,"11.1":0.02336,"12.1":0.01947,"13.1":0.09343,"14.1":0.28808,"15.1":0.08565,"15.2-15.3":0.06229,"15.4":0.24915},G:{"8":0.00321,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00962,"6.0-6.1":0.00641,"7.0-7.1":0.02565,"8.1-8.4":0.01924,"9.0-9.2":0.02405,"9.3":0.10743,"10.0-10.2":0.03848,"10.3":0.1876,"11.0-11.2":0.06895,"11.3-11.4":0.10743,"12.0-12.1":0.09139,"12.2-12.5":1.53286,"13.0-13.1":0.07055,"13.2":0.04169,"13.3":0.19401,"13.4-13.7":0.68947,"14.0-14.4":1.51041,"14.5-14.8":3.21484,"15.0-15.1":0.96205,"15.2-15.3":3.9973,"15.4":3.11863},P:{"4":0.32872,"5.0-5.4":0.02055,"6.2-6.4":0.03119,"7.2-7.4":0.09245,"8.2":0.02446,"9.2":0.03082,"10.1":0.03119,"11.1-11.2":0.12327,"12.0":0.05136,"13.0":0.12327,"14.0":0.14382,"15.0":0.09245,"16.0":1.92097},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00136,"4.2-4.3":0.00271,"4.4":0,"4.4.3-4.4.4":0.02647},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02794,"9":0.02395,"10":0.01197,"11":0.25147,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.00611},O:{"0":1.12998},H:{"0":0.31805},L:{"0":42.59517},S:{"2.5":0},R:{_:"0"},M:{"0":0.0733},Q:{"10.4":0}}; +module.exports={C:{"38":0.00592,"39":0.00296,"40":0.00592,"51":0.01183,"52":0.04141,"53":0.01183,"54":0.00592,"55":0.01479,"56":0.00887,"57":0.00887,"58":0.00296,"59":0.00296,"67":0.00592,"68":0.00592,"71":0.00592,"77":0.00296,"78":0.02366,"79":0.01775,"80":0.01183,"81":0.00887,"82":0.01183,"83":0.01479,"84":0.00887,"85":0.00592,"86":0.00296,"87":0.00296,"88":0.00592,"89":0.00592,"90":0.00296,"91":0.00887,"92":0.00296,"93":0.00296,"94":0.00592,"97":0.00887,"98":0.00592,"99":0.06803,"100":0.34904,"101":0.00592,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 41 42 43 44 45 46 47 48 49 50 60 61 62 63 64 65 66 69 70 72 73 74 75 76 95 96 102 103 3.5 3.6"},D:{"33":0.02071,"34":0.00592,"37":0.00296,"38":0.02071,"39":0.00887,"40":0.00887,"41":0.02071,"42":0.01183,"43":0.01479,"44":0.02366,"45":0.01479,"46":0.00887,"47":0.00887,"48":0.00592,"49":0.02958,"50":0.00592,"51":0.00592,"52":0.00296,"53":0.01183,"54":0.00592,"55":0.00592,"56":0.00887,"57":0.02366,"58":0.00887,"59":0.00592,"60":0.00592,"61":0.00592,"62":0.00592,"63":0.00887,"64":0.00592,"65":0.00887,"67":0.00592,"68":0.00592,"69":0.00296,"70":0.00592,"71":0.00592,"72":0.01183,"73":0.00592,"74":0.00887,"75":0.00887,"76":0.01775,"77":0.01479,"78":0.01479,"79":0.07987,"80":0.02071,"81":0.02662,"83":0.07987,"84":0.16565,"85":0.15677,"86":0.18931,"87":0.18635,"88":0.01479,"89":0.04437,"90":0.02366,"91":0.02958,"92":0.04437,"93":0.01775,"94":0.02366,"95":0.01775,"96":0.06212,"97":0.03845,"98":0.07691,"99":0.1124,"100":2.19779,"101":11.18716,"102":1.21574,"103":0.00592,_:"4 5 6 7 8 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 66 104"},F:{"28":0.01479,"36":0.01183,"40":0.00296,"43":0.00296,"46":0.01775,"68":0.00887,"69":0.00592,"70":0.00887,"71":0.00887,"72":0.00296,"77":0.01479,"78":0.01183,"79":0.01183,"80":0.00887,"81":0.00887,"84":0.00296,"85":0.18635,"86":0.18635,"87":0.01183,_:"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 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 74 75 76 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.00592,"17":0.00296,"18":0.02958,"83":0.00296,"84":0.01479,"85":0.00887,"86":0.01183,"87":0.00296,"88":0.00296,"89":0.00592,"90":0.00592,"91":0.00592,"92":0.00592,"94":0.00592,"95":0.00296,"96":0.00887,"97":0.00592,"98":0.00887,"99":0.01183,"100":0.04437,"101":1.24828,_:"13 14 15 16 79 80 81 93"},E:{"4":0,"8":0.00296,"13":0.02662,"14":0.07099,"15":0.02662,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00592,"11.1":0.00296,"12.1":0.01183,"13.1":0.08282,"14.1":0.21298,"15.1":0.04437,"15.2-15.3":0.03845,"15.4":0.36975,"15.5":0.05029},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.00533,"7.0-7.1":0.01599,"8.1-8.4":0.01776,"9.0-9.2":0.01599,"9.3":0.07282,"10.0-10.2":0.0373,"10.3":0.1492,"11.0-11.2":0.06217,"11.3-11.4":0.09236,"12.0-12.1":0.07993,"12.2-12.5":1.43692,"13.0-13.1":0.05861,"13.2":0.03197,"13.3":0.17939,"13.4-13.7":0.60035,"14.0-14.4":1.56125,"14.5-14.8":3.16691,"15.0-15.1":0.88809,"15.2-15.3":1.6767,"15.4":7.60378},P:{"4":0.29766,"5.0-5.4":0.03044,"6.2-6.4":0.03112,"7.2-7.4":0.08211,"8.2":0.01015,"9.2":0.02053,"10.1":0.02029,"11.1-11.2":0.10264,"12.0":0.02053,"13.0":0.10264,"14.0":0.11291,"15.0":0.08211,"16.0":0.66717},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00148,"4.2-4.3":0.00198,"4.4":0,"4.4.3-4.4.4":0.02471},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01235,"9":0.01235,"10":0.00617,"11":0.18211,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.07042},Q:{"10.4":0},O:{"0":1.38727},H:{"0":0.34001},L:{"0":49.83089},S:{"2.5":0}}; 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 349b6a1db888e4..5d5b159b902434 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:{"34":0.03111,"38":0.09723,"42":0.03111,"82":0.04667,"84":0.01945,"87":0.01945,"88":0.00778,"91":0.035,"92":0.00778,"95":0.00778,"97":0.01556,"98":1.46226,"99":2.85064,"100":0.01945,_:"2 3 4 5 6 7 8 9 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 85 86 89 90 93 94 96 101 3.5 3.6"},D:{"34":0.00778,"37":0.08945,"49":0.01945,"52":0.01945,"59":0.05445,"60":0.00778,"63":0.00778,"65":0.01167,"67":0.01167,"68":0.00778,"69":0.10889,"77":0.01945,"79":0.01945,"80":0.00778,"81":0.20612,"84":0.03889,"86":0.00778,"87":0.03889,"88":0.36946,"89":0.02333,"90":0.02333,"91":0.02722,"92":0.00778,"93":0.01167,"94":0.01556,"95":0.05445,"96":0.47446,"97":0.74669,"98":0.2139,"99":3.20454,"100":13.73595,"101":0.24112,"102":0.08945,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 61 62 64 66 70 71 72 73 74 75 76 78 83 85 103 104"},F:{"84":0.08945,"85":0.18667,"86":0.00778,_:"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 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.03889,"13":0.01945,"15":0.00778,"16":0.03889,"17":0.06222,"18":0.23334,"80":0.035,"84":0.05834,"85":0.01945,"86":0.01556,"90":0.00778,"91":0.00778,"92":0.035,"94":0.03889,"95":0.03889,"96":0.03111,"98":0.11667,"99":0.72724,"100":3.01009,"101":0.01167,_:"14 79 81 83 87 88 89 93 97"},E:{"4":0,"14":0.00778,"15":0.01945,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01167,"12.1":0.02333,"13.1":0.76224,"14.1":0.23334,"15.1":0.12445,"15.2-15.3":0.3189,"15.4":0.57946},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.04011,"10.0-10.2":0,"10.3":0.0024,"11.0-11.2":0,"11.3-11.4":0.01393,"12.0-12.1":0.00721,"12.2-12.5":0.44146,"13.0-13.1":0.0048,"13.2":0.00697,"13.3":0.01417,"13.4-13.7":0.02138,"14.0-14.4":0.03531,"14.5-14.8":0.30936,"15.0-15.1":0.0992,"15.2-15.3":0.78181,"15.4":0.62352},P:{"4":0.17675,"5.0-5.4":0.02079,"6.2-6.4":0.03119,"7.2-7.4":0.87334,"8.2":0.02446,"9.2":0.03119,"10.1":0.03119,"11.1-11.2":0.12476,"12.0":0.08134,"13.0":0.13516,"14.0":0.14556,"15.0":0.18714,"16.0":1.3412},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.055},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.52502,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.25887},H:{"0":0.09257},L:{"0":60.29309},S:{"2.5":0.055},R:{_:"0"},M:{"0":0.13444},Q:{"10.4":0}}; +module.exports={C:{"34":0.04223,"38":0.00422,"52":0.00845,"54":0.00422,"72":0.00422,"88":0.0549,"91":0.06757,"92":0.01267,"95":0.00422,"98":0.01267,"99":0.50254,"100":3.02367,"101":0.04223,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 93 94 96 97 102 103 3.5 3.6"},D:{"31":0.00422,"37":0.06757,"52":0.01689,"59":0.08446,"63":0.00422,"65":0.00845,"67":0.02112,"69":0.0549,"70":0.00422,"74":0.00422,"75":0.00422,"76":0.00845,"77":0.02534,"79":0.00422,"81":0.35051,"84":0.05068,"85":0.00845,"86":0.00422,"87":0.02112,"88":0.30406,"89":0.01267,"90":0.03801,"91":0.01267,"92":0.02112,"94":0.21537,"96":0.12247,"97":0.05912,"98":0.07601,"99":0.09713,"100":4.19344,"101":15.25348,"102":1.26268,"103":0.04645,_:"4 5 6 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 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 64 66 68 71 72 73 78 80 83 93 95 104"},F:{"85":0.22804,"86":0.03801,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01689,"13":0.01689,"14":0.01267,"15":0.01267,"16":0.03378,"17":0.03801,"18":0.22382,"80":0.01267,"84":0.05068,"85":0.00422,"89":0.00845,"90":0.02112,"92":0.01689,"94":0.06757,"95":0.05068,"96":0.04223,"97":0.01267,"98":0.04223,"99":0.05068,"100":0.32939,"101":5.46034,_:"79 81 83 86 87 88 91 93"},E:{"4":0,"13":0.03378,"14":0.24071,"15":0.01267,_:"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.02956,"12.1":0.01267,"13.1":0.26183,"14.1":0.16047,"15.1":0.03378,"15.2-15.3":0.19426,"15.4":1.03886,"15.5":0.2576},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.00428,"8.1-8.4":0,"9.0-9.2":0.02285,"9.3":0.00828,"10.0-10.2":0,"10.3":0.03542,"11.0-11.2":0.002,"11.3-11.4":0.01028,"12.0-12.1":0.00628,"12.2-12.5":0.1434,"13.0-13.1":0.02085,"13.2":0.00428,"13.3":0.01457,"13.4-13.7":0.02514,"14.0-14.4":0.19768,"14.5-14.8":0.15826,"15.0-15.1":0.06656,"15.2-15.3":0.54761,"15.4":1.58657},P:{"4":0.0415,"5.0-5.4":0.03044,"6.2-6.4":0.03112,"7.2-7.4":0.50833,"8.2":0.01015,"9.2":0.08117,"10.1":0.02029,"11.1-11.2":0.13486,"12.0":0.02075,"13.0":0.10374,"14.0":0.18673,"15.0":0.3216,"16.0":0.48758},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00046,"4.4":0,"4.4.3-4.4.4":0.00532},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00866,"11":0.50232,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.13289},Q:{"10.4":0},O:{"0":1.06315},H:{"0":0.04923},L:{"0":57.21794},S:{"2.5":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 5ed01b35cb1c5d..a344403eacd768 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:{"78":0.04549,"90":0.04549,"91":0.15637,"98":0.43782,"99":3.41729,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 93 94 95 96 97 100 101 3.5 3.6"},D:{"80":0.01422,"86":0.01422,"88":0.04549,"91":0.01422,"96":0.09382,"98":0.03127,"99":0.56291,"100":4.02569,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 81 83 84 85 87 89 90 92 93 94 95 97 101 102 103 104"},F:{"82":0.03127,"85":0.04549,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.03127,"86":0.04549,"92":0.01422,"97":0.06255,"99":0.03127,"100":0.74771,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 98 101"},E:{"4":0,"14":0.04549,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01422,"13.1":0.09382,"14.1":0.79604,"15.1":3.13583,"15.2-15.3":1.27935,"15.4":1.20259},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.09554,"13.0-13.1":0,"13.2":0,"13.3":0.04777,"13.4-13.7":0,"14.0-14.4":0.12739,"14.5-14.8":0.68473,"15.0-15.1":4.01816,"15.2-15.3":44.25811,"15.4":3.85892},P:{"4":0.04249,"5.0-5.4":0.02055,"6.2-6.4":0.03119,"7.2-7.4":0.09245,"8.2":0.02446,"9.2":0.03082,"10.1":0.03119,"11.1-11.2":0.02125,"12.0":0.02006,"13.0":0.02006,"14.0":0.14873,"15.0":0.02125,"16.0":1.21376},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:{"11":0.01422,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.01355},L:{"0":12.87768},S:{"2.5":0},R:{_:"0"},M:{"0":2.74113},Q:{"10.4":0}}; +module.exports={C:{"60":0.11913,"78":0.16909,"91":0.11913,"92":0.04612,"99":2.15977,"100":6.36017,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 93 94 95 96 97 98 101 102 103 3.5 3.6"},D:{"67":0.02306,"87":0.04612,"91":0.02306,"96":0.36124,"98":0.07302,"99":0.11913,"100":0.69558,"101":5.61847,"102":0.23827,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 92 93 94 95 97 103 104"},F:{"85":0.02306,"86":0.04612,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.04612,"85":0.02306,"89":0.14219,"97":0.04612,"100":0.11913,"101":1.00687,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 90 91 92 93 94 95 96 98 99"},E:{"4":0,"14":0.16909,"15":0.02306,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":0.3843,"15.1":1.51414,"15.2-15.3":2.13671,"15.4":9.28853,"15.5":0.04612},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.16289,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.25552,"14.0-14.4":0.18844,"14.5-14.8":0.50784,"15.0-15.1":2.39547,"15.2-15.3":7.68466,"15.4":20.74155},P:{"4":0.02141,"5.0-5.4":0.0205,"6.2-6.4":0.03112,"7.2-7.4":0.0107,"8.2":0.01015,"9.2":0.02053,"10.1":0.02029,"11.1-11.2":0.0205,"12.0":0.02053,"13.0":0.10251,"14.0":0.12844,"15.0":0.03211,"16.0":0.48182},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:{"11":0.04612,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":1.97024},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":25.70945},S:{"2.5":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 ee013d2e46c174..9b2d60b5740bcd 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:{"45":0.03055,"47":0.03491,"56":0.00873,"72":0.00873,"94":0.00436,"97":0.02182,"98":0.46258,"99":1.0299,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 100 101 3.5 3.6"},D:{"49":0.00873,"66":0.00873,"69":0.00436,"74":0.00436,"76":0.0611,"77":0.04364,"80":0.03055,"81":0.01309,"90":0.01746,"91":0.75497,"92":0.00436,"93":0.04364,"94":0.00436,"95":0.19638,"96":0.04364,"97":0.00436,"98":0.26184,"99":3.70067,"100":19.37616,"101":0.17456,"102":0.02618,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 70 71 72 73 75 78 79 83 84 85 86 87 88 89 103 104"},F:{"28":0.01309,"79":0.00873,"84":0.09164,"85":0.40149,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 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.05673,"13":0.01309,"14":0.03055,"15":0.0611,"16":0.02618,"17":0.03055,"18":0.06546,"84":0.01746,"85":0.02618,"89":0.01309,"92":0.01309,"94":0.01746,"95":0.01746,"96":0.1702,"97":0.00873,"98":0.03928,"99":0.75061,"100":3.47374,"101":0.01746,_:"79 80 81 83 86 87 88 90 91 93"},E:{"4":0,"13":0.00436,"14":0.22256,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.01309,"12.1":0.04364,"13.1":0.03055,"14.1":0.02618,"15.1":0.00436,"15.2-15.3":0.04364,"15.4":0.08728},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.00378,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07458,"10.0-10.2":0,"10.3":0.00944,"11.0-11.2":0.00755,"11.3-11.4":0.45691,"12.0-12.1":0.07175,"12.2-12.5":0.66837,"13.0-13.1":0.02454,"13.2":0.19447,"13.3":0.18125,"13.4-13.7":0.66271,"14.0-14.4":1.48402,"14.5-14.8":2.28361,"15.0-15.1":0.34079,"15.2-15.3":1.65394,"15.4":1.32259},P:{"4":0.15537,"5.0-5.4":0.01116,"6.2-6.4":0.01036,"7.2-7.4":0.6422,"8.2":0.01011,"9.2":0.09322,"10.1":0.01036,"11.1-11.2":0.1968,"12.0":0.01036,"13.0":0.37289,"14.0":0.20716,"15.0":0.18644,"16.0":1.18082},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00175,"4.4":0,"4.4.3-4.4.4":0.02079},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34912,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.97824},H:{"0":0.82705},L:{"0":51.52718},S:{"2.5":0.02254},R:{_:"0"},M:{"0":0.20853},Q:{"10.4":0.03382}}; +module.exports={C:{"30":0.00885,"49":0.00885,"61":0.00885,"77":0.00443,"91":0.60636,"94":0.00443,"96":0.00885,"97":0.01328,"98":0.02656,"99":0.29212,"100":1.49599,"101":0.16819,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 102 103 3.5 3.6"},D:{"11":0.02213,"49":0.00885,"63":0.03983,"65":0.01328,"67":0.00443,"69":0.00885,"74":0.00443,"75":0.00443,"76":0.01328,"79":0.00885,"80":0.02213,"81":0.19032,"84":0.00443,"86":0.00443,"87":0.01328,"88":0.00885,"89":0.02656,"90":0.00443,"91":0.49571,"92":0.00885,"93":0.00443,"94":0.03541,"95":0.14606,"96":0.02656,"97":0.00443,"98":0.09737,"99":0.4603,"100":4.43043,"101":16.11949,"102":1.47386,"103":0.02213,"104":0.00443,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 70 71 72 73 77 78 83 85"},F:{"36":0.01328,"85":0.16376,"86":0.25228,"87":0.00885,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01328,"13":0.00885,"14":0.04426,"15":0.04869,"16":0.02656,"17":0.02656,"18":0.05311,"84":0.0177,"85":0.00885,"92":0.0177,"93":0.02213,"94":0.02213,"95":0.03541,"96":0.06196,"97":0.02213,"98":0.03098,"99":0.08852,"100":0.34965,"101":3.89488,_:"79 80 81 83 86 87 88 89 90 91"},E:{"4":0,"11":0.03541,"13":0.0177,"14":0.11508,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 11.1","9.1":0.00443,"10.1":0.00443,"12.1":0.00443,"13.1":0.04869,"14.1":0.03983,"15.1":0.05754,"15.2-15.3":0.00443,"15.4":0.23015,"15.5":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,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08426,"10.0-10.2":0.00541,"10.3":0.01778,"11.0-11.2":0.00155,"11.3-11.4":0.47619,"12.0-12.1":0.03633,"12.2-12.5":0.74521,"13.0-13.1":0.0286,"13.2":0.01469,"13.3":0.18321,"13.4-13.7":0.10359,"14.0-14.4":1.86766,"14.5-14.8":1.35591,"15.0-15.1":0.37106,"15.2-15.3":0.74521,"15.4":1.6945},P:{"4":0.12309,"5.0-5.4":0.02027,"6.2-6.4":0.01043,"7.2-7.4":0.58467,"8.2":0.01022,"9.2":0.08206,"10.1":0.04171,"11.1-11.2":0.12309,"12.0":0.05129,"13.0":0.96419,"14.0":0.1436,"15.0":0.15386,"16.0":1.01547},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00094,"4.4":0,"4.4.3-4.4.4":0.03808},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11508,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.12316,_:"11"},R:{_:"0"},M:{"0":0.02787},Q:{"10.4":0},O:{"0":0.72462},H:{"0":0.68602},L:{"0":53.87165},S:{"2.5":0.07804}}; 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 400a5e9a0f0cd4..7a23c6e04a19cb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js @@ -1 +1 @@ -module.exports={C:{"3":0.02164,"44":0.01515,"47":0.00433,"49":0.00216,"50":0.00433,"52":0.01515,"54":0.00433,"56":0.00433,"57":0.00649,"59":0.00433,"61":0.00216,"64":0.00866,"65":0.00216,"70":0.00433,"72":0.00866,"74":0.00216,"78":0.00216,"84":0.00216,"85":0.00216,"89":0.00216,"91":0.00649,"94":0.00866,"95":0.00866,"96":0.00866,"97":0.00866,"98":0.26184,"99":0.83747,"100":0.00649,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 51 53 55 58 60 62 63 66 67 68 69 71 73 75 76 77 79 80 81 82 83 86 87 88 90 92 93 101 3.5 3.6"},D:{"37":0.01082,"40":0.00433,"43":0.00433,"48":0.00216,"49":0.01082,"51":0.00433,"54":0.00216,"55":0.00649,"56":0.00649,"57":0.00649,"60":0.00649,"62":0.00433,"63":0.00866,"65":0.00216,"66":0.00649,"67":0.00216,"68":0.01082,"69":0.00216,"70":0.00649,"71":0.01948,"72":0.00649,"73":0.00649,"74":0.00649,"75":0.00433,"76":0.00866,"77":0.00433,"78":0.00649,"79":0.02164,"80":0.01515,"81":0.00866,"83":0.0238,"84":0.01082,"85":0.00649,"86":0.03679,"87":0.03462,"88":0.01082,"89":0.06708,"90":0.01082,"91":0.02164,"92":0.05194,"93":0.01515,"94":0.03246,"95":0.04328,"96":0.19043,"97":0.09089,"98":0.15364,"99":1.06252,"100":4.6829,"101":0.05626,"102":0.00866,_:"4 5 6 7 8 9 10 11 12 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 41 42 44 45 46 47 50 52 53 58 59 61 64 103 104"},F:{"79":0.00216,"82":0.00216,"84":0.01298,"85":0.09522,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 86 87 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00433},B:{"84":0.01298,"89":0.01082,"90":0.00216,"92":0.0238,"94":0.01082,"95":0.00649,"96":0.00866,"97":0.00649,"98":0.00866,"99":0.09305,"100":0.44795,"101":0.00649,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 88 91 93"},E:{"4":0,"14":0.01298,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":0.00649,"15.1":0.02164,"15.2-15.3":0.00216,"15.4":0.01082},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0079,"5.0-5.1":0.00226,"6.0-6.1":0.001,"7.0-7.1":0.00451,"8.1-8.4":0,"9.0-9.2":0.00451,"9.3":0.00439,"10.0-10.2":0.00238,"10.3":0.00439,"11.0-11.2":0.00238,"11.3-11.4":0.00163,"12.0-12.1":0.0163,"12.2-12.5":0.1783,"13.0-13.1":0.00552,"13.2":0.00439,"13.3":0.02495,"13.4-13.7":0.04238,"14.0-14.4":0.13542,"14.5-14.8":0.18043,"15.0-15.1":0.13567,"15.2-15.3":0.31648,"15.4":0.17855},P:{"4":0.3618,"5.0-5.4":0.1206,"6.2-6.4":0.03015,"7.2-7.4":0.3015,"8.2":0.01005,"9.2":0.4422,"10.1":0.0804,"11.1-11.2":0.5427,"12.0":0.1005,"13.0":0.41205,"14.0":0.27135,"15.0":0.31155,"16.0":3.80896},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00656,"4.2-4.3":0.00722,"4.4":0,"4.4.3-4.4.4":0.0489},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01082,"11":0.00433,_:"6 7 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":2.57804},H:{"0":8.65011},L:{"0":69.92835},S:{"2.5":0.03134},R:{_:"0"},M:{"0":0.42314},Q:{"10.4":0}}; +module.exports={C:{"3":0.03562,"45":0.00445,"48":0.00223,"49":0.00445,"50":0.00445,"52":0.02449,"53":0.00445,"54":0.00223,"56":0.00445,"57":0.00445,"58":0.00445,"59":0.00445,"60":0.01336,"62":0.01113,"63":0.00668,"64":0.00445,"69":0.00445,"70":0.00445,"72":0.01113,"81":0.00223,"84":0.00223,"87":0.00223,"89":0.03116,"91":0.00668,"93":0.00668,"94":0.01336,"95":0.00668,"96":0.0089,"97":0.02003,"98":0.02226,"99":0.23818,"100":1.47139,"101":0.0089,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 51 55 61 65 66 67 68 71 73 74 75 76 77 78 79 80 82 83 85 86 88 90 92 102 103 3.5 3.6"},D:{"28":0.00223,"37":0.01558,"43":0.00445,"44":0.00223,"46":0.00223,"47":0.00668,"48":0.00223,"49":0.01558,"50":0.00445,"51":0.00223,"52":0.00445,"53":0.0512,"54":0.00445,"55":0.00668,"56":0.00668,"57":0.01113,"58":0.00223,"59":0.00223,"60":0.00223,"63":0.01336,"64":0.00445,"66":0.01336,"67":0.01781,"68":0.02003,"70":0.00668,"71":0.00668,"72":0.0089,"73":0.00445,"74":0.01781,"75":0.00668,"76":0.03562,"77":0.00445,"78":0.01113,"79":0.02671,"80":0.01781,"81":0.03562,"83":0.02003,"84":0.01336,"85":0.01781,"86":0.04007,"87":0.07791,"88":0.01558,"89":0.04675,"90":0.02226,"91":0.02894,"92":0.04675,"93":0.02894,"94":0.02894,"95":0.07346,"96":0.12243,"97":0.08904,"98":0.13801,"99":0.20702,"100":1.19314,"101":5.23778,"102":0.60547,"103":0.00445,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 38 39 40 41 42 45 61 62 65 69 104"},F:{"69":0.01336,"79":0.00223,"84":0.00445,"85":0.06455,"86":0.07568,"87":0.00668,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00445,"18":0.00445,"84":0.01113,"85":0.00445,"89":0.01558,"90":0.00668,"91":0.00223,"92":0.01558,"94":0.00445,"96":0.0089,"97":0.00223,"98":0.00668,"99":0.03562,"100":0.06233,"101":0.6166,_:"13 14 15 16 17 79 80 81 83 86 87 88 93 95"},E:{"4":0,"13":0.00223,"14":0.01113,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.5","5.1":0.01336,"13.1":0.00223,"14.1":0.00668,"15.1":0.0089,"15.2-15.3":0.00445,"15.4":0.02003},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00634,"5.0-5.1":0.00127,"6.0-6.1":0.00095,"7.0-7.1":0.01063,"8.1-8.4":0.00159,"9.0-9.2":0.00508,"9.3":0.00222,"10.0-10.2":0.00159,"10.3":0.01047,"11.0-11.2":0.0138,"11.3-11.4":0.01126,"12.0-12.1":0.01824,"12.2-12.5":0.22268,"13.0-13.1":0.00745,"13.2":0.00761,"13.3":0.02141,"13.4-13.7":0.04457,"14.0-14.4":0.16463,"14.5-14.8":0.21158,"15.0-15.1":0.11642,"15.2-15.3":0.25044,"15.4":0.45567},P:{"4":0.3117,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.16088,"8.2":0.01015,"9.2":0.30165,"10.1":0.03016,"11.1-11.2":0.35192,"12.0":0.07038,"13.0":0.30165,"14.0":0.23126,"15.0":0.19104,"16.0":1.93056},I:{"0":0,"3":0,"4":0.00164,"2.1":0,"2.2":0,"2.3":0.00109,"4.1":0.01421,"4.2-4.3":0.00984,"4.4":0,"4.4.3-4.4.4":0.11315},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00668,"11":0.02003,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.39647},Q:{"10.4":0},O:{"0":3.74707},H:{"0":7.77944},L:{"0":68.34474},S:{"2.5":0.01555}}; 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 f7e9c0c8efd510..c52a2aa1a3eafb 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:{"60":0.10501,"72":0.01432,"78":1.75646,"81":0.01432,"82":0.01432,"84":0.01432,"85":0.03341,"86":0.00955,"88":0.04773,"89":0.05728,"90":0.03818,"91":0.25297,"92":0.09546,"93":0.00955,"96":0.01432,"97":0.09069,"98":1.82329,"99":5.11188,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 83 87 94 95 100 101 3.5 3.6"},D:{"47":0.00477,"49":0.01432,"58":0.00477,"62":0.00955,"63":0.04296,"64":0.00477,"65":0.00477,"66":0.00477,"68":0.01909,"77":0.04296,"78":0.01432,"79":0.00477,"81":0.00955,"83":0.02387,"85":0.02387,"86":0.01909,"87":0.01432,"89":0.03341,"90":0.01909,"91":0.21479,"92":0.09546,"93":0.0525,"94":0.03341,"95":0.03818,"96":0.24342,"97":0.11933,"98":0.60617,"99":4.62981,"100":17.89398,"101":0.0716,"102":0.01432,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 59 60 61 67 69 70 71 72 73 74 75 76 80 84 88 103 104"},F:{"84":0.11933,"85":0.48207,_:"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 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.02387,"16":0.0525,"17":0.1241,"18":0.09546,"84":0.02864,"88":0.00477,"89":0.00955,"90":0.00477,"91":0.00955,"92":0.01432,"93":0.01432,"96":0.01909,"97":0.0525,"98":0.04296,"99":0.88301,"100":4.67754,"101":0.05728,_:"13 14 15 79 80 81 83 85 86 87 94 95"},E:{"4":0,"13":0.0716,"14":0.16228,"15":0.05728,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01432,"10.1":0.01432,"11.1":0.01432,"12.1":0.12887,"13.1":0.36752,"14.1":0.36752,"15.1":0.16228,"15.2-15.3":0.12887,"15.4":0.61572},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.21786,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00432,"10.0-10.2":0,"10.3":0.01297,"11.0-11.2":0.01902,"11.3-11.4":0,"12.0-12.1":0.00865,"12.2-12.5":0.17896,"13.0-13.1":0.00778,"13.2":0.01297,"13.3":0.01902,"13.4-13.7":0.11758,"14.0-14.4":0.6095,"14.5-14.8":1.68845,"15.0-15.1":0.68818,"15.2-15.3":1.97375,"15.4":3.08123},P:{"4":0.01025,"5.0-5.4":0.06035,"6.2-6.4":0.02049,"7.2-7.4":0.16394,"8.2":0.01006,"9.2":0.03061,"10.1":0.09052,"11.1-11.2":0.07172,"12.0":0.06122,"13.0":0.05123,"14.0":0.11271,"15.0":0.12295,"16.0":4.3444},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.00523},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1241,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03748,_:"11"},L:{"0":40.54779},S:{"2.5":0},R:{_:"0"},M:{"0":0.13068},Q:{"10.4":0},O:{"0":0.02614},H:{"0":0.15341}}; +module.exports={C:{"52":0.01758,"60":0.04396,"68":0.02638,"70":0.0044,"78":0.6594,"84":0.03077,"86":0.02638,"89":0.04396,"90":0.00879,"91":1.30561,"93":0.01319,"94":0.0044,"95":0.00879,"96":0.02198,"97":0.00879,"98":0.07913,"99":1.15615,"100":4.21137,"101":0.00879,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 71 72 73 74 75 76 77 79 80 81 82 83 85 87 88 92 102 103 3.5 3.6"},D:{"44":0.0044,"47":0.01319,"49":0.01319,"54":0.0044,"58":0.0044,"63":0.00879,"67":0.02638,"75":0.01319,"76":0.01319,"77":0.04396,"80":0.0044,"81":0.02638,"83":0.01319,"85":0.02198,"86":0.01319,"87":0.01758,"88":0.01319,"89":0.03956,"90":0.02198,"91":0.13628,"92":0.01758,"94":0.01319,"95":0.01319,"96":0.42202,"97":0.04836,"98":0.16265,"99":0.34289,"100":4.48832,"101":14.99036,"102":1.47266,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 50 51 52 53 55 56 57 59 60 61 62 64 65 66 68 69 70 71 72 73 74 78 79 84 93 103 104"},F:{"85":0.31212,"86":0.74292,"87":0.09671,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.05275,"15":0.0044,"16":0.00879,"17":0.04836,"18":0.01319,"84":0.0044,"86":0.0044,"90":0.00879,"91":0.02198,"92":0.01319,"94":0.0044,"96":0.02638,"97":0.04836,"98":0.01319,"99":0.14067,"100":0.92316,"101":5.31037,_:"12 13 79 80 81 83 85 87 88 89 93 95"},E:{"4":0,"12":0.00879,"14":0.18463,"15":0.02198,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01319,"12.1":0.03517,"13.1":0.17144,"14.1":0.35608,"15.1":0.2242,"15.2-15.3":0.14067,"15.4":1.02427,"15.5":0.10111},G:{"8":0.00421,"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.03259,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03049,"10.0-10.2":0,"10.3":0.15665,"11.0-11.2":0.02628,"11.3-11.4":0.01787,"12.0-12.1":0.01472,"12.2-12.5":0.20922,"13.0-13.1":0.01051,"13.2":0,"13.3":0.041,"13.4-13.7":0.21343,"14.0-14.4":0.35957,"14.5-14.8":1.23325,"15.0-15.1":0.54881,"15.2-15.3":0.93361,"15.4":6.6846},P:{"4":0.12305,"5.0-5.4":0.04028,"6.2-6.4":0.0705,"7.2-7.4":0.13331,"8.2":0.01019,"9.2":0.02051,"10.1":0.06042,"11.1-11.2":0.10255,"12.0":0.02051,"13.0":0.03076,"14.0":0.1128,"15.0":0.08149,"16.0":1.06647},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.08965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1099,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01469,_:"11"},R:{_:"0"},M:{"0":0.21291},Q:{"10.4":0},O:{"0":0.06724},H:{"0":0.25992},L:{"0":43.05116},S:{"2.5":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 e2808305d759c4..a441591b737455 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js @@ -1 +1 @@ -module.exports={C:{"34":0.00842,"52":0.03791,"60":0.00632,"78":0.00632,"86":0.00421,"87":0.00211,"88":0.00632,"89":0.00632,"90":0.00421,"91":0.01474,"92":0.00421,"93":0.00842,"94":0.00842,"95":0.00421,"96":0.00421,"97":0.00842,"98":0.20639,"99":0.57915,"100":0.01053,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 101 3.5 3.6"},D:{"28":0.01053,"38":0.00211,"49":0.02738,"50":0.00421,"55":0.00421,"63":0.00211,"65":0.00842,"66":0.00211,"67":0.00632,"69":0.02738,"70":0.01053,"71":0.00632,"73":0.00421,"74":0.01053,"75":0.00211,"76":0.00421,"77":0.00211,"78":0.00421,"79":0.03159,"80":0.02106,"81":0.02106,"83":0.00632,"84":0.01474,"85":0.00211,"86":0.01264,"87":0.01474,"88":0.00842,"89":0.00842,"90":0.01264,"91":0.01685,"92":0.0358,"93":0.02106,"94":0.01685,"95":0.01895,"96":0.04633,"97":0.05686,"98":0.1053,"99":1.66795,"100":8.11231,"101":0.09688,"102":0.00421,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 56 57 58 59 60 61 62 64 68 72 103 104"},F:{"28":0.01053,"68":0.00421,"77":0.01474,"78":0.01264,"79":0.01474,"80":0.01474,"81":0.00842,"83":0.00211,"84":0.05686,"85":0.29905,"86":0.00632,_:"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 71 72 73 74 75 76 82 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.01053,"13":0.00421,"14":0.00421,"15":0.00632,"16":0.01053,"17":0.01264,"18":0.02948,"84":0.00842,"85":0.00421,"89":0.00632,"90":0.00211,"91":0.00421,"92":0.00842,"94":0.00211,"95":0.01053,"96":0.00632,"97":0.02527,"98":0.02527,"99":0.2822,"100":1.82801,"101":0.02317,_:"79 80 81 83 86 87 88 93"},E:{"4":0,"12":0.00211,"13":0.01264,"14":0.05897,"15":0.02106,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00211,"10.1":0.00421,"11.1":0.01685,"12.1":0.01685,"13.1":0.07792,"14.1":0.18322,"15.1":0.06107,"15.2-15.3":0.06318,"15.4":0.34328},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00326,"6.0-6.1":0.00109,"7.0-7.1":0.00761,"8.1-8.4":0.00761,"9.0-9.2":0.00543,"9.3":0.09563,"10.0-10.2":0.00217,"10.3":0.05542,"11.0-11.2":0.01521,"11.3-11.4":0.0163,"12.0-12.1":0.01847,"12.2-12.5":0.56614,"13.0-13.1":0.04673,"13.2":0.00869,"13.3":0.05868,"13.4-13.7":0.14561,"14.0-14.4":0.45096,"14.5-14.8":1.25834,"15.0-15.1":0.55093,"15.2-15.3":3.88151,"15.4":3.66635},P:{"4":0.27322,"5.0-5.4":0.01012,"6.2-6.4":0.11171,"7.2-7.4":0.53632,"8.2":0.01012,"9.2":0.03036,"10.1":0.04048,"11.1-11.2":0.20239,"12.0":0.10119,"13.0":0.22263,"14.0":0.33394,"15.0":0.19227,"16.0":6.7496},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00153,"4.2-4.3":0.00407,"4.4":0,"4.4.3-4.4.4":0.04176},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24851,_:"6 7 8 9 10 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.63941},H:{"0":3.75919},L:{"0":59.1336},S:{"2.5":0},R:{_:"0"},M:{"0":0.51311},Q:{"10.4":0.01579}}; +module.exports={C:{"34":0.01074,"52":0.03652,"60":0.0043,"78":0.00644,"84":0.00215,"87":0.0043,"88":0.00644,"89":0.00215,"91":0.01074,"93":0.0043,"94":0.00644,"95":0.0043,"96":0.0043,"97":0.0043,"98":0.00859,"99":0.13962,"100":0.65944,"101":0.01289,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 90 92 102 103 3.5 3.6"},D:{"28":0.00859,"34":0.00215,"38":0.00215,"49":0.02792,"50":0.00644,"52":0.00644,"55":0.0043,"63":0.00215,"65":0.00644,"67":0.00859,"69":0.02363,"70":0.01074,"71":0.00215,"72":0.00215,"73":0.00215,"74":0.01074,"75":0.00215,"76":0.0043,"77":0.0043,"78":0.00644,"79":0.02578,"80":0.01504,"81":0.01933,"83":0.00644,"84":0.01074,"85":0.00215,"86":0.01289,"87":0.01718,"88":0.01074,"89":0.00644,"90":0.01074,"91":0.01933,"92":0.03866,"93":0.00859,"94":0.01504,"95":0.01504,"96":0.03437,"97":0.04511,"98":0.05155,"99":0.10955,"100":1.85802,"101":7.75428,"102":0.75824,"103":0.00644,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 51 53 54 56 57 58 59 60 61 62 64 66 68 104"},F:{"28":0.01504,"69":0.00644,"77":0.0043,"78":0.0043,"79":0.00644,"80":0.0043,"81":0.00215,"84":0.00215,"85":0.16969,"86":0.19976,"87":0.01504,_:"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 70 71 72 73 74 75 76 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.01074,"13":0.0043,"14":0.0043,"15":0.00644,"16":0.01074,"17":0.01718,"18":0.02792,"84":0.00859,"89":0.0043,"90":0.0043,"91":0.00215,"92":0.00859,"94":0.00215,"95":0.00859,"96":0.0043,"97":0.01289,"98":0.01074,"99":0.04296,"100":0.12673,"101":2.16518,_:"79 80 81 83 85 86 87 88 93"},E:{"4":0,"13":0.00859,"14":0.0537,"15":0.02148,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0043,"11.1":0.01504,"12.1":0.01933,"13.1":0.07733,"14.1":0.16754,"15.1":0.03866,"15.2-15.3":0.04081,"15.4":0.58211,"15.5":0.07088},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0033,"6.0-6.1":0.0011,"7.0-7.1":0.00879,"8.1-8.4":0.0033,"9.0-9.2":0.0044,"9.3":0.08244,"10.0-10.2":0.0022,"10.3":0.05716,"11.0-11.2":0.01429,"11.3-11.4":0.01319,"12.0-12.1":0.01099,"12.2-12.5":0.55953,"13.0-13.1":0.03518,"13.2":0.01099,"13.3":0.04507,"13.4-13.7":0.12642,"14.0-14.4":0.39903,"14.5-14.8":0.99044,"15.0-15.1":0.38694,"15.2-15.3":0.95856,"15.4":7.27163},P:{"4":0.26298,"5.0-5.4":0.01011,"6.2-6.4":0.12144,"7.2-7.4":0.52596,"8.2":0.21569,"9.2":0.02023,"10.1":0.04046,"11.1-11.2":0.19218,"12.0":0.09103,"13.0":0.20229,"14.0":0.28321,"15.0":0.16183,"16.0":2.85232},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00141,"4.2-4.3":0.00282,"4.4":0,"4.4.3-4.4.4":0.02717},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20191,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.51823},Q:{"10.4":0.00785},O:{"0":0.62031},H:{"0":3.67228},L:{"0":58.43978},S:{"2.5":0}}; 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 3e41c28a2a96f8..6be6fe2c2ec37c 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:{"33":0.01688,"34":0.00482,"37":0.00964,"40":0.00723,"43":0.00241,"45":0.00482,"47":0.00964,"52":0.01688,"60":0.00241,"68":0.00482,"71":0.00241,"72":0.00482,"78":0.00723,"88":0.00241,"89":0.00482,"91":0.02893,"93":0.00241,"94":0.00241,"95":0.00482,"96":0.00723,"97":0.01447,"98":0.3279,"99":0.88725,"100":0.04099,_:"2 3 4 5 6 7 8 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 38 39 41 42 44 46 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 101 3.5 3.6"},D:{"11":0.00241,"28":0.09885,"39":0.00482,"42":0.00241,"49":0.00723,"50":0.00482,"51":0.00482,"53":0.00241,"55":0.00241,"57":0.00241,"58":0.00241,"60":0.00241,"63":0.00482,"64":0.01929,"66":0.00241,"68":0.00723,"69":0.00241,"70":0.00723,"71":0.02893,"73":0.05545,"74":0.00482,"75":0.00482,"76":0.00482,"77":0.01447,"78":0.00723,"79":0.01206,"80":0.01447,"81":0.03134,"83":0.01688,"84":0.00723,"85":0.00482,"86":0.03375,"87":0.0434,"88":0.02411,"89":0.02893,"90":0.01688,"91":0.01688,"92":0.03858,"93":0.0651,"94":0.01688,"95":0.03134,"96":0.07956,"97":0.08921,"98":0.17359,"99":1.93603,"100":7.87915,"101":0.13743,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 40 41 43 44 45 46 47 48 52 54 56 59 61 62 65 67 72 102 103 104"},F:{"34":0.00482,"42":0.00482,"43":0.00241,"46":0.00241,"67":0.00723,"68":0.00482,"73":0.00482,"74":0.00482,"77":0.00241,"79":0.01929,"80":0.00482,"82":0.01447,"83":0.00964,"84":0.20494,"85":1.1404,"86":0.03375,_:"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 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 69 70 71 72 75 76 78 81 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03858},B:{"12":0.05304,"13":0.02411,"14":0.01447,"15":0.02411,"16":0.02411,"17":0.04099,"18":0.10608,"80":0.00241,"84":0.01929,"85":0.01688,"86":0.00482,"87":0.00241,"88":0.00241,"89":0.03134,"90":0.01929,"91":0.00482,"92":0.0434,"93":0.00723,"94":0.00482,"95":0.02411,"96":0.0217,"97":0.03858,"98":0.07474,"99":0.42193,"100":1.9288,"101":0.01929,_:"79 81 83"},E:{"4":0,"13":0.00964,"14":0.0217,"15":0.00723,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 9.1","5.1":0.01929,"7.1":0.00241,"10.1":0.00964,"11.1":0.00723,"12.1":0.00482,"13.1":0.03375,"14.1":0.05304,"15.1":0.01206,"15.2-15.3":0.01447,"15.4":0.0651},G:{"8":0.00355,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00101,"5.0-5.1":0.03144,"6.0-6.1":0.00101,"7.0-7.1":0.01572,"8.1-8.4":0.00101,"9.0-9.2":0.00051,"9.3":0.08114,"10.0-10.2":0.01166,"10.3":0.10446,"11.0-11.2":0.04919,"11.3-11.4":0.01826,"12.0-12.1":0.01978,"12.2-12.5":0.94827,"13.0-13.1":0.0142,"13.2":0.00254,"13.3":0.02941,"13.4-13.7":0.25913,"14.0-14.4":0.41734,"14.5-14.8":0.65669,"15.0-15.1":0.41836,"15.2-15.3":0.98326,"15.4":1.00152},P:{"4":0.40509,"5.0-5.4":0.1206,"6.2-6.4":0.03015,"7.2-7.4":0.12464,"8.2":0.01005,"9.2":0.03116,"10.1":0.0804,"11.1-11.2":0.02077,"12.0":0.01039,"13.0":0.07271,"14.0":0.07271,"15.0":0.22851,"16.0":1.09063},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00107,"4.2-4.3":0.00155,"4.4":0,"4.4.3-4.4.4":0.08085},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00288,"9":0.00288,"10":0.00576,"11":0.10661,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0.00759},O:{"0":2.10215},H:{"0":15.93583},L:{"0":55.42967},S:{"2.5":0.02277},R:{_:"0"},M:{"0":0.21249},Q:{"10.4":0.02277}}; +module.exports={C:{"34":0.0075,"47":0.005,"52":0.0075,"68":0.005,"72":0.0075,"78":0.0075,"87":0.005,"88":0.005,"89":0.0075,"91":0.01749,"95":0.005,"96":0.005,"97":0.0075,"98":0.01499,"99":0.2449,"100":0.95462,"101":0.03998,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 90 92 93 94 102 103 3.5 3.6"},D:{"11":0.005,"49":0.005,"50":0.0075,"51":0.02499,"55":0.0025,"57":0.0025,"58":0.0025,"63":0.0075,"64":0.01499,"65":0.0025,"66":0.0025,"68":0.01749,"69":0.0025,"70":0.0075,"71":0.02999,"72":0.0025,"73":0.05498,"74":0.005,"75":0.005,"76":0.0075,"77":0.01499,"78":0.01499,"79":0.01499,"80":0.01749,"81":0.03749,"83":0.01,"84":0.01749,"85":0.01,"86":0.03998,"87":0.07247,"88":0.01999,"89":0.01499,"90":0.01749,"91":0.02999,"92":0.01999,"93":0.05748,"94":0.03499,"95":0.02999,"96":0.06747,"97":0.04498,"98":0.08996,"99":0.17743,"100":2.2441,"101":7.16963,"102":0.60226,"103":0.0025,_:"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 52 53 54 56 59 60 61 62 67 104"},F:{"18":0.0025,"36":0.0025,"42":0.0075,"65":0.0025,"67":0.0025,"68":0.0025,"69":0.01,"77":0.005,"79":0.01999,"82":0.005,"83":0.005,"84":0.01749,"85":0.47481,"86":0.82967,"87":0.05498,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 70 71 72 73 74 75 76 78 80 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01999},B:{"12":0.05748,"13":0.02499,"14":0.0125,"15":0.01749,"16":0.01749,"17":0.02499,"18":0.10746,"84":0.02249,"85":0.0125,"87":0.0025,"89":0.02749,"90":0.01999,"91":0.0025,"92":0.04248,"93":0.0075,"94":0.0025,"95":0.005,"96":0.01499,"97":0.03249,"98":0.04248,"99":0.06497,"100":0.22991,"101":2.03169,_:"79 80 81 83 86 88"},E:{"4":0,"13":0.005,"14":0.02249,"15":0.005,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.0125,"9.1":0.0125,"10.1":0.0075,"11.1":0.005,"12.1":0.005,"13.1":0.04998,"14.1":0.05248,"15.1":0.0075,"15.2-15.3":0.01749,"15.4":0.11745,"15.5":0.0125},G:{"8":0.00216,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00377,"5.0-5.1":0.00323,"6.0-6.1":0.00108,"7.0-7.1":0.03287,"8.1-8.4":0.00108,"9.0-9.2":0.00162,"9.3":0.07274,"10.0-10.2":0.00916,"10.3":0.09375,"11.0-11.2":0.02963,"11.3-11.4":0.01994,"12.0-12.1":0.03017,"12.2-12.5":0.9876,"13.0-13.1":0.02694,"13.2":0.00485,"13.3":0.03287,"13.4-13.7":0.11045,"14.0-14.4":0.41756,"14.5-14.8":0.54902,"15.0-15.1":0.41487,"15.2-15.3":0.60883,"15.4":1.93155},P:{"4":0.39393,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.13477,"8.2":0.01015,"9.2":0.0311,"10.1":0.03016,"11.1-11.2":0.0311,"12.0":0.01037,"13.0":0.0933,"14.0":0.0933,"15.0":0.0622,"16.0":0.59089},I:{"0":0,"3":0,"4":0.00039,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.00249,"4.4":0,"4.4.3-4.4.4":0.08594},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00278,"10":0.00557,"11":0.08911,_:"6 7 9 5.5"},J:{"7":0,"10":0.03},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.26254},Q:{"10.4":0.015},O:{"0":1.94276},H:{"0":15.538},L:{"0":56.10864},S:{"2.5":0.015}}; 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 a21aaea52235e2..288b74fdc5f11c 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:{"34":0.01591,"36":0.00398,"48":0.00398,"51":0.00398,"52":0.01591,"53":0.00795,"54":0.00398,"55":0.00398,"56":0.01193,"57":0.03977,"59":0.00398,"69":0.00795,"72":0.00795,"78":0.02784,"84":0.01193,"85":0.00398,"87":0.03182,"88":0.01193,"89":0.01193,"90":0.00795,"91":0.03579,"94":0.01591,"95":0.00795,"96":0.02386,"97":0.03977,"98":0.64825,"99":1.7976,"100":0.08352,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 47 49 50 58 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 80 81 82 83 86 92 93 101 3.5 3.6"},D:{"39":0.00398,"40":0.00398,"42":0.00398,"46":0.01591,"47":0.01193,"49":0.01591,"55":0.01193,"56":0.72779,"57":0.01591,"58":0.01591,"59":0.00398,"60":0.00795,"61":0.00398,"62":0.00795,"63":0.02784,"64":0.00795,"65":0.01193,"67":0.00795,"69":0.01591,"70":0.01591,"71":0.01193,"73":0.00398,"74":0.04375,"75":0.00795,"76":0.01193,"77":0.01193,"78":0.01989,"79":0.04772,"80":0.01591,"81":0.03579,"83":0.02784,"84":0.00795,"85":0.01193,"86":0.0517,"87":0.04375,"88":0.01591,"89":0.01989,"90":0.02386,"91":0.05568,"92":0.03977,"93":0.0517,"94":0.0517,"95":0.03977,"96":0.1392,"97":0.22271,"98":0.21874,"99":3.32477,"100":15.18419,"101":0.27441,"102":0.00795,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 41 43 44 45 48 50 51 52 53 54 66 68 72 103 104"},F:{"36":0.00795,"77":0.00398,"79":0.01591,"80":0.00398,"82":0.01989,"83":0.01989,"84":0.27441,"85":1.41979,"86":0.02386,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 81 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.05966,"13":0.03182,"14":0.01591,"15":0.01989,"16":0.0517,"17":0.02386,"18":0.11136,"84":0.03182,"85":0.01193,"88":0.00398,"89":0.03977,"90":0.00795,"91":0.00398,"92":0.0517,"93":0.00398,"94":0.01193,"95":0.01591,"96":0.03579,"97":0.05966,"98":0.06761,"99":0.59655,"100":3.17762,"101":0.03579,_:"79 80 81 83 86 87"},E:{"4":0,"13":0.02386,"14":0.04375,"15":0.04772,_:"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.01989,"12.1":0.01193,"13.1":0.08352,"14.1":0.26646,"15.1":0.06363,"15.2-15.3":0.04772,"15.4":0.26646},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0.00122,"6.0-6.1":0,"7.0-7.1":0.0061,"8.1-8.4":0.00061,"9.0-9.2":0.00122,"9.3":0.09824,"10.0-10.2":0.00305,"10.3":0.04515,"11.0-11.2":0.01281,"11.3-11.4":0.01586,"12.0-12.1":0.01464,"12.2-12.5":0.48571,"13.0-13.1":0.02014,"13.2":0.00915,"13.3":0.03539,"13.4-13.7":0.11166,"14.0-14.4":0.42957,"14.5-14.8":0.76274,"15.0-15.1":0.43263,"15.2-15.3":2.01668,"15.4":1.59809},P:{"4":0.19211,"5.0-5.4":0.1206,"6.2-6.4":0.03015,"7.2-7.4":0.16009,"8.2":0.01005,"9.2":0.03116,"10.1":0.0804,"11.1-11.2":0.04269,"12.0":0.04269,"13.0":0.08538,"14.0":0.1174,"15.0":0.05336,"16.0":1.36613},I:{"0":0,"3":0,"4":0.00087,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00173,"4.2-4.3":0.01082,"4.4":0,"4.4.3-4.4.4":0.19136},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0041,"11":0.12714,_:"6 7 8 9 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":1.7286},H:{"0":9.19193},L:{"0":47.53946},S:{"2.5":0.01205},R:{_:"0"},M:{"0":0.21081},Q:{"10.4":0.05421}}; +module.exports={C:{"43":0.00386,"47":0.00386,"48":0.00386,"51":0.00386,"52":0.01157,"53":0.00386,"56":0.00771,"57":0.02313,"59":0.00386,"64":0.00386,"66":0.01157,"69":0.00386,"72":0.00771,"78":0.01542,"84":0.00386,"87":0.01928,"88":0.01928,"89":0.01928,"91":0.02699,"94":0.01542,"95":0.01157,"96":0.00771,"97":0.0347,"98":0.05012,"99":0.50501,"100":1.96991,"101":0.09638,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 49 50 54 55 58 60 61 62 63 65 67 68 70 71 73 74 75 76 77 79 80 81 82 83 85 86 90 92 93 102 103 3.5 3.6"},D:{"42":0.00386,"46":0.00386,"47":0.00771,"49":0.03084,"50":0.00386,"55":0.01157,"58":0.01157,"60":0.00386,"62":0.00386,"63":0.02699,"64":0.00771,"65":0.02699,"69":0.01157,"70":0.01157,"71":0.00771,"72":0.00386,"73":0.00771,"74":0.06554,"75":0.01157,"76":0.01542,"77":0.01157,"78":0.00771,"79":0.04241,"80":0.01928,"81":0.02699,"83":0.01542,"84":0.00771,"85":0.01542,"86":0.05012,"87":0.03084,"88":0.01928,"89":0.01928,"90":0.02313,"91":0.03855,"92":0.04626,"93":0.06939,"94":0.08867,"95":0.03084,"96":0.09252,"97":0.12336,"98":0.13493,"99":0.25443,"100":3.51191,"101":13.24193,"102":1.31841,"103":0.02313,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 48 51 52 53 54 56 57 59 61 66 67 68 104"},F:{"36":0.00386,"37":0.00386,"42":0.00771,"69":0.00771,"79":0.01542,"81":0.00386,"82":0.01157,"83":0.00386,"84":0.01542,"85":0.60909,"86":1.01772,"87":0.07325,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 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.08096,"13":0.03084,"14":0.0347,"15":0.03084,"16":0.04241,"17":0.0347,"18":0.15035,"81":0.00386,"84":0.03084,"85":0.01542,"89":0.02699,"90":0.01542,"91":0.00771,"92":0.05012,"93":0.00386,"94":0.00771,"95":0.01542,"96":0.02699,"97":0.06554,"98":0.04626,"99":0.14264,"100":0.25829,"101":3.36542,_:"79 80 83 86 87 88"},E:{"4":0,"13":0.01157,"14":0.0771,"15":0.01928,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00386,"11.1":0.03855,"12.1":0.00771,"13.1":0.12722,"14.1":0.21974,"15.1":0.05783,"15.2-15.3":0.04626,"15.4":0.39321,"15.5":0.05397},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00427,"5.0-5.1":0.00142,"6.0-6.1":0,"7.0-7.1":0.00569,"8.1-8.4":0.00071,"9.0-9.2":0.00142,"9.3":0.05335,"10.0-10.2":0.00427,"10.3":0.04553,"11.0-11.2":0.00854,"11.3-11.4":0.01494,"12.0-12.1":0.03272,"12.2-12.5":0.45241,"13.0-13.1":0.01707,"13.2":0.00996,"13.3":0.0249,"13.4-13.7":0.11381,"14.0-14.4":0.41471,"14.5-14.8":0.77464,"15.0-15.1":0.38839,"15.2-15.3":0.93042,"15.4":3.81061},P:{"4":0.1567,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.1567,"8.2":0.01015,"9.2":0.0311,"10.1":0.03016,"11.1-11.2":0.03134,"12.0":0.05223,"13.0":0.08357,"14.0":0.06268,"15.0":0.04179,"16.0":0.77304},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00108,"4.2-4.3":0.00542,"4.4":0,"4.4.3-4.4.4":0.11639},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00386,"10":0.00771,"11":0.11565,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.22737},Q:{"10.4":0.04302},O:{"0":1.73904},H:{"0":8.87198},L:{"0":48.36735},S:{"2.5":0.00615}}; 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 2359a9a085dd6c..f7cb9ee254c272 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:{"2":0.02389,"15":0.02389,"18":0.02389,"21":0.02389,"23":0.02389,"25":0.04778,"30":0.02389,"34":0.00341,"43":0.00683,"47":0.00341,"51":0.02389,"52":0.05461,"60":0.00341,"65":0.00683,"72":0.00683,"78":0.01024,"84":0.01024,"87":0.00341,"88":0.00683,"89":0.01024,"91":0.0273,"92":0.00683,"93":0.00683,"94":0.00683,"95":0.01024,"96":0.01024,"97":0.02048,"98":0.34813,"99":1.04097,"100":0.04437,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 53 54 55 56 57 58 59 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 90 101 3.5 3.6"},D:{"19":0.02389,"24":0.07167,"28":0.00341,"30":0.02389,"33":0.03072,"35":0.04778,"38":0.00341,"40":0.00683,"43":0.04096,"47":0.00683,"49":0.03754,"50":0.00341,"53":0.00341,"54":0.02389,"55":0.0273,"56":0.12969,"58":0.00341,"63":0.01024,"64":0.00683,"65":0.00683,"67":0.06485,"68":0.00683,"69":0.02389,"70":0.01024,"71":0.00683,"72":0.00683,"73":0.00683,"74":0.01024,"75":0.01024,"76":0.00683,"77":0.00683,"78":0.01024,"79":0.0512,"80":0.02048,"81":0.0273,"83":0.01707,"84":0.02048,"85":0.02048,"86":0.04778,"87":0.04778,"88":0.01707,"89":0.02389,"90":0.02389,"91":0.03413,"92":0.03754,"93":0.03413,"94":0.02389,"95":0.03072,"96":0.0785,"97":0.09215,"98":0.17065,"99":3.8055,"100":19.20154,"101":0.14335,"102":0.01365,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 25 26 27 29 31 32 34 36 37 39 41 42 44 45 46 48 51 52 57 59 60 61 62 66 103 104"},F:{"28":0.00683,"43":0.02389,"64":0.00341,"72":0.00341,"77":0.00683,"78":0.00341,"79":0.01024,"80":0.00683,"81":0.00683,"82":0.01024,"83":0.01024,"84":0.10239,"85":0.48465,"86":0.01024,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 73 74 75 76 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.02389},B:{"12":0.01365,"13":0.00683,"14":0.00683,"15":0.00683,"16":0.00683,"17":0.01024,"18":0.04096,"84":0.01024,"85":0.00683,"89":0.01024,"90":0.00341,"92":0.01707,"95":0.00683,"96":0.01365,"97":0.02389,"98":0.02389,"99":0.24232,"100":1.49489,"101":0.02048,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"5":0.02389,"13":0.01024,"14":0.03754,"15":0.01365,_:"0 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00341,"10.1":0.00341,"11.1":0.01024,"12.1":0.01024,"13.1":0.04437,"14.1":0.09215,"15.1":0.03413,"15.2-15.3":0.03072,"15.4":0.15359},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00082,"5.0-5.1":0.00411,"6.0-6.1":0.44558,"7.0-7.1":0.02302,"8.1-8.4":0.00493,"9.0-9.2":0.00329,"9.3":0.06906,"10.0-10.2":0.0707,"10.3":0.11098,"11.0-11.2":0.06001,"11.3-11.4":0.03864,"12.0-12.1":0.04933,"12.2-12.5":1.15258,"13.0-13.1":0.03535,"13.2":0.01644,"13.3":0.07728,"13.4-13.7":0.21375,"14.0-14.4":0.7144,"14.5-14.8":0.89609,"15.0-15.1":0.51381,"15.2-15.3":1.93933,"15.4":1.77984},P:{"4":0.28096,"5.0-5.4":0.1206,"6.2-6.4":0.03015,"7.2-7.4":0.24974,"8.2":0.01005,"9.2":0.04162,"10.1":0.01041,"11.1-11.2":0.10406,"12.0":0.04162,"13.0":0.12487,"14.0":0.16649,"15.0":0.11446,"16.0":2.50782},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00478,"4.2-4.3":0.02338,"4.4":0,"4.4.3-4.4.4":0.15624},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0512,"9":0.05461,"10":0.0512,"11":0.1058,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.61908},H:{"0":7.88129},L:{"0":47.86551},S:{"2.5":0.01976},R:{_:"0"},M:{"0":0.25685},Q:{"10.4":0.00659}}; +module.exports={C:{"15":0.00251,"34":0.00753,"43":0.00502,"47":0.00502,"48":0.00251,"52":0.07025,"56":0.00753,"57":0.00251,"60":0.00502,"65":0.00502,"66":0.00251,"68":0.00251,"72":0.00753,"78":0.01255,"80":0.00251,"81":0.00502,"82":0.00251,"84":0.01004,"87":0.00251,"88":0.00753,"89":0.01255,"91":0.03011,"92":0.00502,"93":0.00753,"94":0.00753,"95":0.00753,"96":0.00753,"97":0.01255,"98":0.02258,"99":0.32868,"100":1.27457,"101":0.05018,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 58 59 61 62 63 64 67 69 70 71 73 74 75 76 77 79 83 85 86 90 102 103 3.5 3.6"},D:{"11":0.00251,"26":0.00251,"28":0.00251,"33":0.00502,"38":0.00502,"40":0.00753,"42":0.00502,"43":0.0552,"47":0.00502,"49":0.05269,"50":0.00502,"52":0.00251,"53":0.00502,"55":0.00502,"56":0.00753,"57":0.00251,"58":0.00502,"60":0.00251,"62":0.00251,"63":0.01004,"64":0.00753,"65":0.00753,"66":0.00502,"67":0.28603,"68":0.00753,"69":0.02509,"70":0.01004,"71":0.00502,"72":0.00753,"73":0.00502,"74":0.01505,"75":0.01004,"76":0.01004,"77":0.01004,"78":0.01004,"79":0.07025,"80":0.02509,"81":0.0276,"83":0.02007,"84":0.02258,"85":0.0276,"86":0.12043,"87":0.05771,"88":0.02509,"89":0.02509,"90":0.04014,"91":0.04014,"92":0.04014,"93":0.02509,"94":0.0276,"95":0.03011,"96":0.06774,"97":0.08029,"98":0.12043,"99":0.17814,"100":2.30075,"101":9.94568,"102":1.01364,"103":0.01505,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 29 30 31 32 34 35 36 37 39 41 44 45 46 48 51 54 59 61 104"},F:{"28":0.01004,"36":0.00251,"64":0.00502,"68":0.00251,"69":0.00502,"72":0.00502,"73":0.00502,"77":0.00251,"79":0.01004,"80":0.00502,"81":0.00502,"82":0.01255,"83":0.00753,"84":0.01505,"85":0.30861,"86":0.35879,"87":0.0276,_:"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 70 71 74 75 76 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.01505,"13":0.00753,"14":0.00502,"15":0.00502,"16":0.01004,"17":0.01004,"18":0.04516,"84":0.01004,"85":0.00502,"89":0.00753,"90":0.00502,"91":0.00251,"92":0.02007,"95":0.00502,"96":0.01255,"97":0.01255,"98":0.01505,"99":0.04516,"100":0.11792,"101":1.94448,_:"79 80 81 83 86 87 88 93 94"},E:{"4":0,"12":0.00251,"13":0.01004,"14":0.04014,"15":0.01505,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00502,"10.1":0.00502,"11.1":0.01004,"12.1":0.01255,"13.1":0.05018,"14.1":0.10287,"15.1":0.0276,"15.2-15.3":0.0276,"15.4":0.28603,"15.5":0.04014},G:{"8":0.00091,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00091,"5.0-5.1":0.00455,"6.0-6.1":0.00182,"7.0-7.1":0.02638,"8.1-8.4":0.00273,"9.0-9.2":0.00455,"9.3":0.07913,"10.0-10.2":0.01182,"10.3":0.12825,"11.0-11.2":0.04548,"11.3-11.4":0.03547,"12.0-12.1":0.04457,"12.2-12.5":1.27524,"13.0-13.1":0.03547,"13.2":0.02001,"13.3":0.08641,"13.4-13.7":0.21466,"14.0-14.4":0.79043,"14.5-14.8":0.87593,"15.0-15.1":0.47662,"15.2-15.3":0.825,"15.4":4.10771},P:{"4":0.30929,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.25774,"8.2":0.01015,"9.2":0.03093,"10.1":0.01031,"11.1-11.2":0.11341,"12.0":0.04124,"13.0":0.12372,"14.0":0.16495,"15.0":0.09279,"16.0":1.26808},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00463,"4.2-4.3":0.01522,"4.4":0,"4.4.3-4.4.4":0.1899},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00511,"9":0.00511,"11":0.12777,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.29215},Q:{"10.4":0},O:{"0":0.70415},H:{"0":7.73737},L:{"0":56.01868},S:{"2.5":0.01498}}; 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 cd7308dd3b53dd..8038ac8606f101 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:{"74":0.02845,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 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 3.5 3.6"},D:{"100":0.18018,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1":1.65004,"15.2-15.3":2.85122,"15.4":9.27437},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":3.87087,"15.2-15.3":57.58438,"15.4":6.93475},P:{"4":0.28096,"5.0-5.4":0.1206,"6.2-6.4":0.03015,"7.2-7.4":0.24974,"8.2":0.01005,"9.2":0.04162,"10.1":0.01041,"11.1-11.2":0.10406,"12.0":0.04162,"13.0":0.12487,"14.0":0.16649,"15.0":0.11446,"16.0":2.50782},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:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 3.5 3.6"},D:{"100":0.22386,"101":0.12558,"102":0.06552,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 103 104"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},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.1":0.7644,"15.2-15.3":1.40322,"15.4":41.0592,"15.5":8.25006},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":1.5618,"15.2-15.3":6.01767,"15.4":37.42925},P:{"4":0.30929,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.25774,"8.2":0.01015,"9.2":0.03093,"10.1":0.01031,"11.1-11.2":0.11341,"12.0":0.04124,"13.0":0.12372,"14.0":0.16495,"15.0":0.09279,"16.0":1.26808},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.02648,_:"11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":0.4468},S:{"2.5":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 442046296266cf..2bd8cde749634f 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.0064,"36":0.016,"43":0.0992,"47":0.0032,"51":0.0096,"52":0.0704,"53":0.0096,"54":0.0064,"55":0.0128,"56":0.0192,"57":0.0096,"58":0.0032,"59":0.0032,"60":0.0032,"68":0.0032,"72":0.0064,"78":0.0128,"79":0.0032,"80":0.0064,"81":0.0032,"82":0.0032,"83":0.0032,"84":0.0032,"87":0.0064,"88":0.0096,"89":0.0064,"90":0.0064,"91":0.0224,"92":0.0032,"93":0.0064,"94":0.0096,"95":0.0096,"96":0.0096,"97":0.0192,"98":0.3232,"99":0.9728,"100":0.032,_:"2 3 4 5 6 7 8 9 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 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 85 86 101 3.5 3.6"},D:{"22":0.0064,"26":0.0032,"34":0.0128,"35":0.0032,"38":0.032,"39":0.0032,"40":0.0032,"41":0.0064,"42":0.0096,"43":0.0064,"44":0.0032,"45":0.0064,"46":0.0064,"47":0.0128,"48":0.0128,"49":0.0512,"50":0.0032,"51":0.0064,"52":0.0032,"53":0.0224,"54":0.0032,"55":0.0128,"56":0.0128,"57":0.0128,"58":0.0096,"59":0.0064,"60":0.0064,"61":0.0128,"62":0.016,"63":0.016,"64":0.0064,"65":0.0128,"66":0.0064,"67":0.0096,"68":0.0096,"69":0.0832,"70":0.048,"71":0.0192,"72":0.0704,"73":0.0096,"74":0.0352,"75":0.032,"76":0.0096,"77":0.0224,"78":0.0416,"79":0.1504,"80":0.0352,"81":0.0352,"83":0.0512,"84":0.0448,"85":0.0448,"86":0.0736,"87":0.0864,"88":0.0224,"89":0.0416,"90":0.0288,"91":0.0416,"92":0.0928,"93":0.0288,"94":0.0512,"95":0.0448,"96":0.1312,"97":0.1664,"98":0.2336,"99":3.168,"100":16.0768,"101":0.2656,"102":0.0128,_:"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 103 104"},F:{"28":0.0096,"36":0.0096,"40":0.0064,"46":0.0192,"79":0.0032,"84":0.0736,"85":0.304,"86":0.0064,_:"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 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.0032,"14":0.0032,"16":0.0032,"17":0.0064,"18":0.0224,"84":0.0064,"85":0.0032,"86":0.0032,"89":0.0064,"92":0.0096,"94":0.0032,"95":0.0064,"96":0.0128,"97":0.016,"98":0.0224,"99":0.3072,"100":2.1056,"101":0.032,_:"13 15 79 80 81 83 87 88 90 91 93"},E:{"4":0,"8":0.0032,"13":0.032,"14":0.112,"15":0.0416,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.016,"9.1":0.0032,"10.1":0.0064,"11.1":0.0096,"12.1":0.0192,"13.1":0.096,"14.1":0.3424,"15.1":0.0832,"15.2-15.3":0.0864,"15.4":0.4832},G:{"8":0.00104,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00415,"5.0-5.1":0.00623,"6.0-6.1":0.00623,"7.0-7.1":0.02181,"8.1-8.4":0.01039,"9.0-9.2":0.02493,"9.3":0.07271,"10.0-10.2":0.0135,"10.3":0.0831,"11.0-11.2":0.06959,"11.3-11.4":0.02701,"12.0-12.1":0.03739,"12.2-12.5":0.52975,"13.0-13.1":0.0322,"13.2":0.0135,"13.3":0.06752,"13.4-13.7":0.21398,"14.0-14.4":0.65128,"14.5-14.8":1.41058,"15.0-15.1":0.65855,"15.2-15.3":2.94893,"15.4":3.48075},P:{"4":0.33134,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.10354,"9.2":0.03106,"11.1-11.2":0.08284,"12.0":0.03106,"13.0":0.12425,"14.0":0.15532,"15.0":0.10354,"16.0":2.02947},I:{"0":0,"3":0,"4":0.0145,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05801,"4.2-4.3":0.14502,"4.4":0,"4.4.3-4.4.4":0.76861},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02907,"9":0.02907,"10":0.00969,"11":0.97858,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":1.78186},H:{"0":1.05595},L:{"0":51.35766},S:{"2.5":0.16322},R:{_:"0"},M:{"0":0.16322},Q:{"10.4":0.39446}}; +module.exports={C:{"34":0.00604,"36":0.01208,"43":0.04832,"47":0.00302,"51":0.00604,"52":0.05738,"53":0.00604,"54":0.00302,"55":0.00604,"56":0.00906,"57":0.00604,"68":0.00302,"71":0.00604,"72":0.00604,"76":0.00604,"78":0.01208,"79":0.00604,"80":0.00604,"81":0.00302,"82":0.00302,"83":0.00302,"84":0.00302,"87":0.01208,"88":0.00906,"89":0.00604,"90":0.00604,"91":0.02114,"93":0.00302,"94":0.00604,"95":0.00604,"96":0.00604,"97":0.00906,"98":0.01812,"99":0.2114,"100":1.02982,"101":0.03322,_:"2 3 4 5 6 7 8 9 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 58 59 60 61 62 63 64 65 66 67 69 70 73 74 75 77 85 86 92 102 103 3.5 3.6"},D:{"22":0.00906,"26":0.00302,"34":0.0151,"35":0.00302,"38":0.0302,"41":0.00302,"42":0.00604,"43":0.00604,"45":0.00302,"46":0.00302,"47":0.01208,"48":0.00906,"49":0.04832,"50":0.00302,"51":0.00302,"53":0.02114,"54":0.00302,"55":0.00906,"56":0.01208,"57":0.00906,"58":0.00906,"59":0.00302,"60":0.00604,"61":0.00906,"62":0.01208,"63":0.0151,"64":0.00604,"65":0.00906,"66":0.00604,"67":0.00906,"68":0.00906,"69":0.06342,"70":0.03322,"71":0.01812,"72":0.03624,"73":0.00906,"74":0.0302,"75":0.02718,"76":0.00906,"77":0.01208,"78":0.02718,"79":0.14798,"80":0.0302,"81":0.0302,"83":0.04832,"84":0.04832,"85":0.04832,"86":0.07852,"87":0.07852,"88":0.01812,"89":0.05436,"90":0.02416,"91":0.03322,"92":0.07248,"93":0.02114,"94":0.0453,"95":0.03926,"96":0.09664,"97":0.10872,"98":0.11476,"99":0.19932,"100":3.15288,"101":13.87388,"102":1.46168,"103":0.0151,_:"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 44 52 104"},F:{"28":0.00906,"36":0.00906,"40":0.00604,"46":0.01812,"84":0.00302,"85":0.17214,"86":0.20536,"87":0.0151,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00302,"16":0.00302,"17":0.00604,"18":0.02114,"84":0.00604,"85":0.00302,"86":0.00302,"89":0.00906,"92":0.00604,"96":0.00604,"97":0.00906,"98":0.00906,"99":0.02114,"100":0.10268,"101":2.1895,_:"13 14 15 79 80 81 83 87 88 90 91 93 94 95"},E:{"4":0,"13":0.02718,"14":0.09664,"15":0.03322,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01208,"9.1":0.00302,"10.1":0.00604,"11.1":0.00906,"12.1":0.01812,"13.1":0.08456,"14.1":0.28388,"15.1":0.05738,"15.2-15.3":0.05436,"15.4":0.85768,"15.5":0.0755},G:{"8":0.00104,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00414,"5.0-5.1":0.00518,"6.0-6.1":0.00414,"7.0-7.1":0.01967,"8.1-8.4":0.00932,"9.0-9.2":0.02174,"9.3":0.06523,"10.0-10.2":0.01139,"10.3":0.07558,"11.0-11.2":0.0497,"11.3-11.4":0.02588,"12.0-12.1":0.0352,"12.2-12.5":0.57568,"13.0-13.1":0.0321,"13.2":0.01242,"13.3":0.06109,"13.4-13.7":0.18844,"14.0-14.4":0.57982,"14.5-14.8":1.15965,"15.0-15.1":0.46697,"15.2-15.3":0.8832,"15.4":6.06227},P:{"4":0.33998,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.09272,"8.2":0.01015,"9.2":0.03091,"10.1":0.01031,"11.1-11.2":0.06181,"12.0":0.03091,"13.0":0.11333,"14.0":0.12363,"15.0":0.08242,"16.0":0.8757},I:{"0":0,"3":0,"4":0.05091,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03818,"4.2-4.3":0.12726,"4.4":0,"4.4.3-4.4.4":0.64905},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02594,"9":0.0173,"11":0.90806,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.17448},Q:{"10.4":0.33499},O:{"0":1.53538},H:{"0":0.97788},L:{"0":53.59324},S:{"2.5":0.1675}}; 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 94265e42afddfb..0f1b446374a05b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js @@ -1 +1 @@ -module.exports={C:{"45":0.00449,"48":0.00899,"51":0.01348,"52":0.13928,"53":0.00899,"54":0.00449,"55":0.01797,"56":0.01348,"57":0.00899,"59":0.00899,"60":0.00899,"66":0.00899,"68":0.02247,"72":0.00899,"77":0.01797,"78":0.09435,"79":0.01797,"80":0.00899,"81":0.04942,"82":0.00899,"83":0.00899,"84":0.01348,"86":0.00899,"87":0.01797,"88":0.02247,"89":0.01797,"90":0.01797,"91":0.13928,"92":0.00899,"93":0.01797,"94":0.07189,"95":0.03594,"96":0.04942,"97":0.05841,"98":1.24007,"99":3.33381,"100":0.01348,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 58 61 62 63 64 65 67 69 70 71 73 74 75 76 85 101 3.5 3.6"},D:{"22":0.01348,"34":0.00899,"38":0.01348,"39":0.00449,"40":0.04942,"41":0.00449,"42":0.00449,"43":0.01348,"46":0.00449,"47":0.01348,"48":0.00899,"49":0.09885,"51":0.02247,"52":0.01797,"53":0.00899,"54":0.00899,"55":0.00449,"56":0.01797,"57":0.00449,"58":0.00899,"59":0.00899,"60":0.03594,"61":0.01348,"62":0.02247,"63":0.01797,"64":0.00899,"65":0.03145,"66":0.04493,"67":0.01797,"68":0.00899,"69":0.07638,"70":0.01348,"71":0.00899,"72":0.01348,"73":0.00899,"74":0.01797,"75":0.18871,"76":0.02696,"77":0.01348,"78":0.03594,"79":0.16624,"80":0.11682,"81":0.03594,"83":0.05841,"84":0.08537,"85":0.14378,"86":0.08986,"87":0.1303,"88":0.03594,"89":0.05841,"90":0.03594,"91":0.07189,"92":0.05841,"93":0.0674,"94":0.16624,"95":0.07638,"96":0.17073,"97":0.17523,"98":0.39988,"99":4.37169,"100":17.59908,"101":0.26059,"102":0.00899,_:"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 44 45 50 103 104"},F:{"31":0.02247,"36":0.00899,"40":0.01797,"46":0.00449,"68":0.01348,"71":0.00449,"77":0.01348,"78":0.00899,"79":0.01348,"80":0.00899,"81":0.00449,"82":0.00899,"83":0.01348,"84":0.40437,"85":1.46023,"86":0.02247,_:"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 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00449},B:{"15":0.00899,"16":0.00449,"17":0.00899,"18":0.03145,"84":0.00899,"85":0.00899,"86":0.00899,"89":0.00449,"91":0.00449,"92":0.01348,"93":0.00449,"94":0.00899,"95":0.00899,"96":0.02247,"97":0.0629,"98":0.05392,"99":0.72787,"100":4.24139,"101":0.0629,_:"12 13 14 79 80 81 83 87 88 90"},E:{"4":0,"12":0.00449,"13":0.04493,"14":0.20668,"15":0.08986,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00449,"9.1":0.00899,"10.1":0.00899,"11.1":0.04044,"12.1":0.0629,"13.1":0.26958,"14.1":0.6425,"15.1":0.17972,"15.2-15.3":0.19769,"15.4":1.21311},G:{"8":0.0014,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00559,"6.0-6.1":0.0028,"7.0-7.1":0.01398,"8.1-8.4":0.00699,"9.0-9.2":0.01538,"9.3":0.10766,"10.0-10.2":0.01119,"10.3":0.12724,"11.0-11.2":0.02517,"11.3-11.4":0.03915,"12.0-12.1":0.02097,"12.2-12.5":0.57188,"13.0-13.1":0.02237,"13.2":0.00979,"13.3":0.04894,"13.4-13.7":0.16499,"14.0-14.4":0.45303,"14.5-14.8":1.59818,"15.0-15.1":0.60544,"15.2-15.3":5.14271,"15.4":4.98191},P:{"4":0.14707,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.0105,"11.1-11.2":0.05252,"12.0":0.02101,"13.0":0.09454,"14.0":0.11555,"15.0":0.07353,"16.0":3.23552},I:{"0":0,"3":0,"4":0.00682,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00511,"4.2-4.3":0.01023,"4.4":0,"4.4.3-4.4.4":0.04943},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00949,"9":0.01897,"10":0.00474,"11":0.30827,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.14869},H:{"0":0.67256},L:{"0":34.3003},S:{"2.5":0},R:{_:"0"},M:{"0":0.47911},Q:{"10.4":0}}; +module.exports={C:{"45":0.00942,"48":0.00942,"51":0.00942,"52":0.10828,"53":0.00471,"55":0.00942,"56":0.00942,"57":0.00471,"59":0.00942,"60":0.00942,"66":0.00471,"68":0.02354,"72":0.00471,"77":0.01883,"78":0.08474,"79":0.01883,"80":0.00942,"81":0.03296,"82":0.00942,"83":0.00942,"84":0.00942,"86":0.00942,"87":0.01412,"88":0.01883,"89":0.01412,"90":0.01883,"91":0.14124,"92":0.00942,"93":0.01883,"94":0.0565,"95":0.02354,"96":0.03296,"97":0.02825,"98":0.08474,"99":0.85215,"100":3.62045,"101":0.01412,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 54 58 61 62 63 64 65 67 69 70 71 73 74 75 76 85 102 103 3.5 3.6"},D:{"22":0.00942,"34":0.00471,"38":0.01412,"39":0.00471,"40":0.04237,"41":0.00471,"43":0.00942,"47":0.01883,"48":0.00942,"49":0.08474,"51":0.01883,"52":0.01412,"53":0.00471,"54":0.00942,"56":0.00942,"58":0.00942,"59":0.00942,"60":0.03296,"61":0.00942,"62":0.01883,"63":0.01883,"64":0.00471,"65":0.02354,"66":0.04237,"67":0.01412,"68":0.00471,"69":0.0565,"70":0.01412,"71":0.00942,"72":0.00942,"73":0.00471,"74":0.01883,"75":0.19303,"76":0.03296,"77":0.01412,"78":0.02825,"79":0.14124,"80":0.04237,"81":0.03296,"83":0.06591,"84":0.09887,"85":0.15066,"86":0.10358,"87":0.12712,"88":0.02354,"89":0.0565,"90":0.03766,"91":0.06591,"92":0.0565,"93":0.05179,"94":0.07062,"95":0.04708,"96":0.12712,"97":0.12241,"98":0.19303,"99":0.37664,"100":4.80216,"101":18.11168,"102":1.57247,"103":0.00942,_:"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 42 44 45 46 50 55 57 104"},F:{"31":0.01883,"36":0.00471,"40":0.01412,"46":0.00471,"68":0.00942,"71":0.00471,"79":0.00471,"82":0.00471,"84":0.01412,"85":1.05459,"86":1.07342,"87":0.04237,_:"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.00942,"16":0.00942,"17":0.00942,"18":0.02825,"84":0.00942,"85":0.00942,"86":0.00942,"89":0.00942,"91":0.00471,"92":0.01412,"93":0.00471,"94":0.00471,"95":0.00942,"96":0.01883,"97":0.02354,"98":0.02354,"99":0.07533,"100":0.30131,"101":4.9434,_:"12 13 14 79 80 81 83 87 88 90"},E:{"4":0,"13":0.03766,"14":0.20244,"15":0.07533,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00471,"10.1":0.00942,"11.1":0.03766,"12.1":0.0565,"13.1":0.24952,"14.1":0.5885,"15.1":0.14595,"15.2-15.3":0.15066,"15.4":2.12331,"15.5":0.23069},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00459,"6.0-6.1":0.00153,"7.0-7.1":0.01531,"8.1-8.4":0.00459,"9.0-9.2":0.01531,"9.3":0.09647,"10.0-10.2":0.00919,"10.3":0.10413,"11.0-11.2":0.02144,"11.3-11.4":0.03828,"12.0-12.1":0.01838,"12.2-12.5":0.53442,"13.0-13.1":0.01991,"13.2":0.00919,"13.3":0.04441,"13.4-13.7":0.15313,"14.0-14.4":0.4502,"14.5-14.8":1.48687,"15.0-15.1":0.44407,"15.2-15.3":1.2189,"15.4":10.61944},P:{"4":0.12555,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.01046,"11.1-11.2":0.04185,"12.0":0.02093,"13.0":0.07324,"14.0":0.09416,"15.0":0.18833,"16.0":1.10905},I:{"0":0,"3":0,"4":0.00647,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00647,"4.2-4.3":0.01052,"4.4":0,"4.4.3-4.4.4":0.04532},A:{"8":0.00974,"9":0.0146,"11":0.26285,_:"6 7 10 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.44453},Q:{"10.4":0},O:{"0":0.13759},H:{"0":0.5962},L:{"0":32.6036},S:{"2.5":0}}; 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 d91903f4262c90..2a9745df2ae4a7 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.07486,"11":0.01872,"38":0.00936,"43":0.00468,"44":0.0234,"45":0.00936,"48":0.00468,"51":0.03743,"52":0.06083,"53":0.03743,"54":0.0234,"55":0.04679,"56":0.02807,"57":0.02807,"58":0.00936,"59":0.01404,"70":0.00468,"78":0.07019,"79":0.00468,"80":0.00468,"81":0.00936,"82":0.00468,"83":0.00468,"84":0.00468,"85":0.00468,"86":0.00468,"87":0.00936,"88":0.01404,"89":0.00936,"90":0.00936,"91":0.0889,"93":0.01404,"94":0.0889,"95":0.01404,"96":0.02807,"97":0.04211,"98":0.60827,"99":1.69848,"100":0.00936,_:"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 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 92 101 3.5 3.6"},D:{"35":0.00936,"38":0.00468,"39":0.00936,"40":0.02807,"41":0.01404,"42":0.00936,"43":0.01872,"44":0.01404,"45":0.01404,"46":0.01404,"47":0.01872,"48":0.07486,"49":0.07486,"50":0.00936,"51":0.01404,"52":0.01404,"53":0.00936,"54":0.00936,"55":0.00936,"56":0.09826,"57":0.01404,"58":0.01872,"59":0.01872,"60":0.0234,"61":0.02807,"62":0.01404,"63":0.01872,"64":0.01404,"65":0.0234,"66":0.05615,"67":0.01872,"68":0.00468,"69":0.01872,"70":0.00936,"71":0.00468,"72":0.01872,"73":0.01872,"74":0.01404,"75":0.01872,"76":0.25735,"77":0.01404,"78":0.03743,"79":0.40707,"80":0.06551,"81":0.06083,"83":0.34625,"84":0.10762,"85":0.06551,"86":0.07486,"87":0.11698,"88":0.02807,"89":0.0889,"90":0.05615,"91":0.12633,"92":0.08422,"93":0.15441,"94":0.14505,"95":0.07954,"96":0.42579,"97":0.36028,"98":0.79075,"99":5.00653,"100":17.08771,"101":0.24799,"102":0.03275,"103":0.0234,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 104"},F:{"84":0.10294,"85":0.37432,"86":0.00936,_:"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 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.00936,"15":0.2667,"16":0.0889,"17":0.00936,"18":0.0234,"84":0.00468,"85":0.00936,"86":0.00468,"87":0.0234,"91":0.00468,"92":0.00936,"94":0.00468,"95":0.01404,"96":0.01404,"97":0.0889,"98":0.06083,"99":0.78607,"100":4.61349,"101":0.07486,_:"13 14 79 80 81 83 88 89 90 93"},E:{"4":0,"8":0.00468,"9":0.00936,"12":0.00936,"13":0.06083,"14":0.30881,"15":0.13101,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.04211,"10.1":0.01872,"11.1":0.05147,"12.1":0.1123,"13.1":1.15103,"14.1":1.07617,"15.1":0.25735,"15.2-15.3":0.30881,"15.4":1.95114},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.00268,"7.0-7.1":0.0107,"8.1-8.4":0.00535,"9.0-9.2":0.01873,"9.3":0.08829,"10.0-10.2":0.02675,"10.3":0.11237,"11.0-11.2":0.03478,"11.3-11.4":0.04013,"12.0-12.1":0.0321,"12.2-12.5":0.53508,"13.0-13.1":0.0321,"13.2":0.01873,"13.3":0.08561,"13.4-13.7":0.25416,"14.0-14.4":0.8481,"14.5-14.8":3.04729,"15.0-15.1":1.06749,"15.2-15.3":10.17456,"15.4":10.30833},P:{"4":0.06464,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.02155,"13.0":0.04309,"14.0":0.06464,"15.0":0.04309,"16.0":1.94992},I:{"0":0,"3":0,"4":0.01023,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00614,"4.2-4.3":0.02251,"4.4":0,"4.4.3-4.4.4":0.04093},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04839,"9":0.0871,"10":0.00968,"11":0.42099,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.1011},H:{"0":0.22669},L:{"0":24.33179},S:{"2.5":0},R:{_:"0"},M:{"0":0.45229},Q:{"10.4":0.00532}}; +module.exports={C:{"4":0.079,"11":0.02324,"38":0.00465,"43":0.00465,"44":0.02324,"45":0.00929,"48":0.00465,"51":0.02788,"52":0.05576,"53":0.02788,"54":0.01859,"55":0.03718,"56":0.02324,"57":0.01859,"58":0.00929,"59":0.00929,"78":0.06506,"79":0.00929,"80":0.00929,"81":0.00929,"82":0.00929,"83":0.00929,"84":0.00465,"86":0.00465,"88":0.00929,"89":0.00929,"90":0.00465,"91":0.08365,"93":0.00929,"94":0.08365,"95":0.00929,"96":0.01859,"97":0.01859,"98":0.03253,"99":0.4647,"100":1.81698,"101":0.00929,_:"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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 85 87 92 102 103 3.5 3.6"},D:{"35":0.00929,"38":0.00465,"39":0.00929,"40":0.02324,"41":0.00929,"42":0.00929,"43":0.01394,"44":0.00929,"45":0.00929,"46":0.00929,"47":0.01859,"48":0.06971,"49":0.06506,"50":0.00465,"51":0.00929,"52":0.01394,"53":0.00929,"54":0.00929,"55":0.00929,"56":0.07435,"57":0.00929,"58":0.01394,"59":0.01394,"60":0.01859,"61":0.03253,"62":0.02324,"63":0.01859,"64":0.01394,"65":0.02324,"66":0.05576,"67":0.01859,"68":0.00929,"69":0.01859,"70":0.00929,"71":0.00465,"72":0.00929,"73":0.00465,"74":0.01859,"75":0.01394,"76":0.24629,"77":0.00929,"78":0.02324,"79":0.3857,"80":0.06041,"81":0.06041,"83":0.35317,"84":0.14406,"85":0.09759,"86":0.10688,"87":0.13476,"88":0.02324,"89":0.06971,"90":0.04647,"91":0.09759,"92":0.06506,"93":0.12547,"94":0.08829,"95":0.05112,"96":0.25559,"97":0.23235,"98":0.40894,"99":0.63664,"100":5.74369,"101":15.37692,"102":0.98052,"103":0.02788,"104":0.02324,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37"},F:{"71":0.00465,"85":0.28811,"86":0.26023,"87":0.01394,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01394,"15":0.2277,"17":0.00465,"18":0.02324,"84":0.00465,"85":0.00929,"86":0.00929,"87":0.04182,"92":0.00465,"94":0.00465,"95":0.00929,"96":0.00929,"97":0.02788,"98":0.02788,"99":0.09759,"100":0.37176,"101":4.88864,_:"13 14 16 79 80 81 83 88 89 90 91 93"},E:{"4":0,"8":0.00465,"9":0.00929,"12":0.00929,"13":0.05576,"14":0.25559,"15":0.10223,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.04647,"10.1":0.01859,"11.1":0.04647,"12.1":0.09759,"13.1":0.67382,"14.1":0.86899,"15.1":0.17659,"15.2-15.3":0.19053,"15.4":3.11349,"15.5":0.32529},G:{"8":0,"3.2":0.01071,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00268,"7.0-7.1":0.01071,"8.1-8.4":0.00535,"9.0-9.2":0.01874,"9.3":0.08567,"10.0-10.2":0.0241,"10.3":0.10174,"11.0-11.2":0.02677,"11.3-11.4":0.03748,"12.0-12.1":0.02945,"12.2-12.5":0.48995,"13.0-13.1":0.02945,"13.2":0.01606,"13.3":0.07229,"13.4-13.7":0.2249,"14.0-14.4":0.73627,"14.5-14.8":2.42299,"15.0-15.1":0.71217,"15.2-15.3":2.00533,"15.4":19.69718},P:{"4":0.06455,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.09272,"8.2":0.01015,"9.2":0.03091,"10.1":0.01031,"11.1-11.2":0.02152,"12.0":0.03091,"13.0":0.03228,"14.0":0.05379,"15.0":0.03228,"16.0":0.69931},I:{"0":0,"3":0,"4":0.0095,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00633,"4.2-4.3":0.02216,"4.4":0,"4.4.3-4.4.4":0.03694},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02342,"9":0.08432,"10":0.00468,"11":1.63485,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.43351},Q:{"10.4":0.0107},O:{"0":0.11239},H:{"0":0.22801},L:{"0":24.59732},S:{"2.5":0}}; 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 1cf993f8934fc3..ecb0b8d9e1e8f0 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.0054,"34":0.0108,"48":0.0108,"51":0.12415,"52":0.13495,"53":0.12415,"54":0.08097,"55":0.11876,"56":0.08637,"57":0.08637,"58":0.03239,"59":0.03779,"66":0.0108,"68":0.0054,"78":0.07017,"79":0.0108,"80":0.0108,"81":0.01619,"82":0.0108,"83":0.0054,"87":0.01619,"88":0.0108,"89":0.0054,"90":0.0054,"91":0.05938,"93":0.01619,"94":0.10796,"95":0.0108,"96":0.01619,"97":0.04858,"98":0.67475,"99":1.8947,"100":0.01619,_:"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 49 50 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 84 85 86 92 101 3.5 3.6"},D:{"26":0.01619,"34":0.03239,"38":0.10256,"39":0.03239,"40":0.03239,"41":0.03779,"42":0.03779,"43":0.03779,"44":0.03779,"45":0.04858,"46":0.04858,"47":0.04858,"48":0.04318,"49":0.09716,"50":0.02699,"51":0.03239,"52":0.02699,"53":0.05398,"54":0.03239,"55":0.03779,"56":0.04318,"57":0.04318,"58":0.04858,"59":0.09177,"60":0.09177,"61":0.04858,"62":0.04858,"63":0.04858,"64":0.04858,"65":0.06478,"66":0.02159,"67":0.01619,"68":0.01619,"69":0.02159,"70":0.0054,"71":0.0054,"72":0.0108,"73":0.0108,"74":0.02159,"75":0.01619,"76":0.02159,"77":0.0054,"78":0.02159,"79":0.31848,"80":0.07557,"81":0.04858,"83":0.05938,"84":0.08637,"85":0.08097,"86":0.13495,"87":0.17274,"88":0.02159,"89":0.02699,"90":0.05398,"91":0.03779,"92":0.10256,"93":0.07017,"94":0.08637,"95":0.07557,"96":0.30229,"97":0.37786,"98":0.73413,"99":6.54777,"100":21.00902,"101":0.28609,"102":0.0108,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 103 104"},F:{"36":0.0054,"46":0.05938,"58":0.0054,"71":0.0108,"84":0.10796,"85":0.36167,"86":0.0108,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 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.0054,"17":0.0054,"18":0.02699,"84":0.0108,"85":0.0108,"86":0.0108,"89":0.0108,"90":0.0054,"92":0.02159,"94":0.0054,"95":0.02699,"96":0.02699,"97":0.08637,"98":0.04858,"99":1.00943,"100":5.21987,"101":0.06478,_:"12 13 14 16 79 80 81 83 87 88 91 93"},E:{"4":0,"11":0.0054,"12":0.01619,"13":0.10256,"14":0.39405,"15":0.19973,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.0054,"10.1":0.02699,"11.1":0.06478,"12.1":0.12415,"13.1":0.52361,"14.1":1.48985,"15.1":0.32928,"15.2-15.3":0.35627,"15.4":2.31034},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01329,"6.0-6.1":0.01107,"7.0-7.1":0.01329,"8.1-8.4":0.01993,"9.0-9.2":0.04651,"9.3":0.22147,"10.0-10.2":0.06866,"10.3":0.29677,"11.0-11.2":0.06866,"11.3-11.4":0.07973,"12.0-12.1":0.0598,"12.2-12.5":1.08078,"13.0-13.1":0.03544,"13.2":0.01772,"13.3":0.09745,"13.4-13.7":0.2702,"14.0-14.4":0.77958,"14.5-14.8":2.56908,"15.0-15.1":0.88589,"15.2-15.3":8.15682,"15.4":7.3573},P:{"4":0.58818,"5.0-5.4":0.02178,"6.2-6.4":0.03015,"7.2-7.4":0.02178,"8.2":0.01005,"9.2":0.04162,"10.1":0.01041,"11.1-11.2":0.03268,"12.0":0.02178,"13.0":0.08714,"14.0":0.10892,"15.0":0.08714,"16.0":3.03893},I:{"0":0,"3":0,"4":0.00218,"2.1":0,"2.2":0.00218,"2.3":0.00145,"4.1":0.00218,"4.2-4.3":0.00654,"4.4":0,"4.4.3-4.4.4":0.04069},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.08139,"9":0.09766,"10":0.03255,"11":0.3174,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.11045},H:{"0":0.16556},L:{"0":19.69444},S:{"2.5":0},R:{_:"0"},M:{"0":0.451},Q:{"10.4":0.01381}}; +module.exports={C:{"11":0.00553,"34":0.00553,"48":0.00553,"51":0.09959,"52":0.10513,"53":0.09406,"54":0.07193,"55":0.09406,"56":0.0664,"57":0.0664,"58":0.02767,"59":0.02767,"66":0.01107,"68":0.00553,"77":0.00553,"78":0.07193,"79":0.0166,"80":0.02213,"81":0.0166,"82":0.0166,"83":0.0166,"84":0.00553,"85":0.00553,"87":0.00553,"88":0.01107,"89":0.00553,"91":0.0664,"93":0.0166,"94":0.17152,"95":0.01107,"96":0.01107,"97":0.02213,"98":0.0332,"99":0.4869,"100":2.03614,"101":0.0166,_:"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 49 50 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 86 90 92 102 103 3.5 3.6"},D:{"26":0.01107,"34":0.02767,"38":0.07746,"39":0.02767,"40":0.02767,"41":0.0332,"42":0.02767,"43":0.02767,"44":0.0332,"45":0.03873,"46":0.03873,"47":0.03873,"48":0.03873,"49":0.07746,"50":0.02213,"51":0.02767,"52":0.02213,"53":0.03873,"54":0.02767,"55":0.02767,"56":0.0332,"57":0.0332,"58":0.03873,"59":0.07193,"60":0.07746,"61":0.03873,"62":0.0498,"63":0.03873,"64":0.03873,"65":0.0498,"66":0.02213,"67":0.0166,"68":0.01107,"69":0.0166,"70":0.00553,"71":0.00553,"72":0.01107,"73":0.01107,"74":0.02213,"75":0.0166,"76":0.02767,"77":0.01107,"78":0.02213,"79":0.23239,"80":0.0664,"81":0.03873,"83":0.08853,"84":0.17706,"85":0.14939,"86":0.19366,"87":0.22132,"88":0.02213,"89":0.0332,"90":0.04426,"91":0.03873,"92":0.10513,"93":0.0664,"94":0.07193,"95":0.07193,"96":0.27112,"97":0.23792,"98":0.32645,"99":0.70269,"100":6.32975,"101":20.67682,"102":1.90889,"103":0.0166,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 104"},F:{"28":0.00553,"46":0.03873,"68":0.00553,"70":0.01107,"71":0.00553,"72":0.00553,"85":0.30432,"86":0.26005,"87":0.0332,_:"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 69 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.00553,"16":0.00553,"17":0.00553,"18":0.03873,"83":0.00553,"84":0.01107,"85":0.0166,"86":0.01107,"89":0.00553,"90":0.00553,"92":0.0166,"95":0.02767,"96":0.02767,"97":0.02213,"98":0.0166,"99":0.11066,"100":0.38178,"101":5.96457,_:"12 13 14 79 80 81 87 88 91 93 94"},E:{"4":0,"12":0.01107,"13":0.09406,"14":0.38178,"15":0.17152,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01107,"10.1":0.02213,"11.1":0.05533,"12.1":0.11619,"13.1":0.49797,"14.1":1.33345,"15.1":0.27112,"15.2-15.3":0.24345,"15.4":4.3766,"15.5":0.41498},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00876,"6.0-6.1":0.01095,"7.0-7.1":0.01314,"8.1-8.4":0.01971,"9.0-9.2":0.03723,"9.3":0.19054,"10.0-10.2":0.05256,"10.3":0.24967,"11.0-11.2":0.04599,"11.3-11.4":0.07008,"12.0-12.1":0.04818,"12.2-12.5":0.95489,"13.0-13.1":0.02847,"13.2":0.01533,"13.3":0.08979,"13.4-13.7":0.24529,"14.0-14.4":0.68769,"14.5-14.8":2.11784,"15.0-15.1":0.60228,"15.2-15.3":1.50022,"15.4":14.90369},P:{"4":0.35565,"5.0-5.4":0.02155,"6.2-6.4":0.02011,"7.2-7.4":0.02155,"8.2":0.01015,"9.2":0.03091,"10.1":0.01031,"11.1-11.2":0.03233,"12.0":0.02155,"13.0":0.07544,"14.0":0.08622,"15.0":0.06466,"16.0":1.07772},I:{"0":0,"3":0,"4":0.00144,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00216,"4.2-4.3":0.00576,"4.4":0,"4.4.3-4.4.4":0.0353},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05939,"9":0.06682,"10":0.02227,"11":0.43802,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.4198},Q:{"10.4":0.0134},O:{"0":0.10272},H:{"0":0.15221},L:{"0":19.03463},S:{"2.5":0}}; 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 fc8e9b3a79fc2e..121a5babe0c815 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.00821,"47":0.00411,"51":0.02875,"52":0.07803,"53":0.02875,"54":0.01643,"55":0.02875,"56":0.02054,"57":0.02054,"58":0.00821,"59":0.00821,"60":0.01232,"66":0.00411,"67":0.00411,"68":0.01232,"72":0.00411,"73":0.00411,"78":0.02464,"79":0.00411,"80":0.00411,"81":0.00411,"84":0.00411,"86":0.01232,"88":0.01643,"89":0.00821,"90":0.01232,"91":0.05339,"92":0.00411,"93":0.00411,"94":0.03286,"95":0.00821,"96":0.01232,"97":0.02464,"98":0.4107,"99":1.22389,"100":0.00821,_:"2 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 48 49 50 61 62 63 64 65 69 70 71 74 75 76 77 82 83 85 87 101 3.5 3.6"},D:{"22":0.00411,"38":0.01643,"39":0.00821,"40":0.00821,"41":0.01232,"42":0.01232,"43":0.01232,"44":0.00821,"45":0.01232,"46":0.01232,"47":0.02464,"48":0.01232,"49":0.09857,"50":0.00821,"51":0.01232,"52":0.00821,"53":0.01232,"54":0.00821,"55":0.01232,"56":0.01232,"57":0.01232,"58":0.01643,"59":0.01232,"60":0.01232,"61":0.01232,"62":0.01232,"63":0.02054,"64":0.01232,"65":0.01643,"66":0.01232,"67":0.00821,"68":0.00821,"69":0.02875,"70":0.00821,"71":0.00411,"72":0.00821,"73":0.00821,"74":0.01232,"75":0.08625,"76":0.03286,"77":0.00821,"78":0.01232,"79":0.11089,"80":0.02464,"81":0.03696,"83":0.02875,"84":0.0575,"85":0.04107,"86":0.06571,"87":0.09857,"88":0.02464,"89":0.04518,"90":0.02875,"91":0.50927,"92":0.04928,"93":0.04928,"94":0.04107,"95":0.12321,"96":0.13553,"97":0.16428,"98":0.25874,"99":4.66555,"100":23.72203,"101":0.32445,"102":0.01232,_:"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 103 104"},F:{"28":0.00411,"36":0.01232,"82":0.00821,"83":0.00821,"84":0.41481,"85":1.29371,"86":0.01643,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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.00411,"15":0.01643,"16":0.00411,"17":0.00411,"18":0.01643,"84":0.00411,"89":0.00411,"91":0.00821,"92":0.01232,"95":0.00411,"96":0.00821,"97":0.03286,"98":0.01643,"99":0.30392,"100":2.19314,"101":0.00821,_:"13 14 79 80 81 83 85 86 87 88 90 93 94"},E:{"4":0,"13":0.01232,"14":0.04107,"15":0.02054,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00411,"11.1":0.00821,"12.1":0.01643,"13.1":0.06161,"14.1":0.13142,"15.1":0.04107,"15.2-15.3":0.04107,"15.4":0.22178},G:{"8":0.00173,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00636,"6.0-6.1":0.00116,"7.0-7.1":0.00462,"8.1-8.4":0,"9.0-9.2":0.01676,"9.3":0.03062,"10.0-10.2":0.02831,"10.3":0.05316,"11.0-11.2":0.00867,"11.3-11.4":0.0208,"12.0-12.1":0.00636,"12.2-12.5":0.2369,"13.0-13.1":0.00693,"13.2":0.00404,"13.3":0.02138,"13.4-13.7":0.08147,"14.0-14.4":0.18547,"14.5-14.8":0.75866,"15.0-15.1":0.24037,"15.2-15.3":1.99342,"15.4":2.06796},P:{"4":0.14538,"5.0-5.4":0.02178,"6.2-6.4":0.03015,"7.2-7.4":0.20768,"8.2":0.01005,"9.2":0.01038,"10.1":0.01041,"11.1-11.2":0.07269,"12.0":0.02077,"13.0":0.08307,"14.0":0.10384,"15.0":0.0623,"16.0":1.86913},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00373,"4.2-4.3":0.00821,"4.4":0,"4.4.3-4.4.4":0.04699},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01643,"9":0.01643,"10":0.00411,"11":0.13142,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.07072},H:{"0":0.20085},L:{"0":49.11253},S:{"2.5":0},R:{_:"0"},M:{"0":0.14733},Q:{"10.4":0}}; +module.exports={C:{"19":0.00891,"27":0.00891,"51":0.01337,"52":0.06238,"53":0.01337,"54":0.00446,"55":0.01337,"56":0.00891,"57":0.00891,"59":0.00446,"60":0.00891,"66":0.00446,"68":0.00891,"72":0.00446,"73":0.00446,"78":0.02674,"79":0.00446,"80":0.00891,"81":0.00446,"84":0.00446,"86":0.00891,"88":0.01337,"89":0.00891,"90":0.01337,"91":0.0713,"94":0.03119,"95":0.00891,"96":0.00891,"97":0.01782,"98":0.02228,"99":0.31192,"100":1.38582,"101":0.01337,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 58 61 62 63 64 65 67 69 70 71 74 75 76 77 82 83 85 87 92 93 102 103 3.5 3.6"},D:{"38":0.01337,"41":0.00891,"42":0.00446,"43":0.00446,"45":0.00446,"46":0.00446,"47":0.01337,"48":0.00446,"49":0.09803,"51":0.00891,"53":0.00891,"55":0.00891,"56":0.00891,"57":0.00446,"58":0.01337,"59":0.00446,"60":0.00891,"61":0.00446,"62":0.00891,"63":0.01337,"64":0.00446,"65":0.00891,"66":0.01337,"67":0.00891,"68":0.00891,"69":0.02228,"70":0.00891,"71":0.00446,"72":0.00891,"73":0.00891,"74":0.01337,"75":0.01782,"76":0.02228,"77":0.00891,"78":0.01337,"79":0.10694,"80":0.02674,"81":0.03119,"83":0.03565,"84":0.05793,"85":0.05347,"86":0.08466,"87":0.11586,"88":0.02228,"89":0.0401,"90":0.03119,"91":0.60602,"92":0.04902,"93":0.0401,"94":0.04456,"95":0.0401,"96":0.10694,"97":0.11586,"98":0.13814,"99":0.28518,"100":5.40513,"101":23.65245,"102":2.56666,"103":0.01337,_:"4 5 6 7 8 9 10 11 12 13 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 44 50 52 54 104"},F:{"28":0.00446,"82":0.00446,"84":0.00891,"85":1.28333,"86":1.14965,"87":0.04456,_:"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 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.01782,"16":0.00446,"17":0.00446,"18":0.01782,"84":0.00446,"92":0.00891,"96":0.00446,"97":0.01337,"98":0.00891,"99":0.04456,"100":0.10249,"101":2.62904,_:"12 13 14 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.00891,"14":0.0401,"15":0.01782,_:"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.00891,"12.1":0.01337,"13.1":0.06238,"14.1":0.12031,"15.1":0.03565,"15.2-15.3":0.03565,"15.4":0.36094,"15.5":0.05347},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00554,"6.0-6.1":0.00111,"7.0-7.1":0.00443,"8.1-8.4":0.00055,"9.0-9.2":0.01109,"9.3":0.02771,"10.0-10.2":0.01885,"10.3":0.04157,"11.0-11.2":0.0061,"11.3-11.4":0.01885,"12.0-12.1":0.00665,"12.2-12.5":0.20176,"13.0-13.1":0.00665,"13.2":0.00443,"13.3":0.01829,"13.4-13.7":0.06707,"14.0-14.4":0.16019,"14.5-14.8":0.56482,"15.0-15.1":0.14412,"15.2-15.3":0.39632,"15.4":3.83235},P:{"4":0.1334,"5.0-5.4":0.02155,"6.2-6.4":0.02011,"7.2-7.4":0.19496,"8.2":0.01015,"9.2":0.01026,"10.1":0.01031,"11.1-11.2":0.06157,"12.0":0.02052,"13.0":0.07183,"14.0":0.09235,"15.0":0.05131,"16.0":0.6875},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00281,"4.2-4.3":0.00561,"4.4":0,"4.4.3-4.4.4":0.03593},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00446,"9":0.00891,"11":0.13368,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.1386},Q:{"10.4":0},O:{"0":0.06098},H:{"0":0.1942},L:{"0":47.2776},S:{"2.5":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 b632bfce35aa86..29f91b36095882 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.0197,"11":0.00394,"36":0.00788,"43":0.04333,"44":0.00788,"48":0.00394,"51":0.02363,"52":0.08272,"53":0.0197,"54":0.01182,"55":0.02363,"56":0.0197,"57":0.01576,"58":0.00394,"59":0.00788,"60":0.00788,"66":0.00394,"68":0.00788,"72":0.00394,"77":0.00394,"78":0.04727,"79":0.00788,"80":0.00788,"81":0.01576,"82":0.00394,"83":0.00394,"84":0.00788,"86":0.00394,"87":0.00788,"88":0.01182,"89":0.01182,"90":0.00788,"91":0.09848,"92":0.00394,"93":0.01182,"94":0.04727,"95":0.01576,"96":0.02363,"97":0.03151,"98":0.59873,"99":1.68983,"100":0.0197,_:"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 49 50 61 62 63 64 65 67 69 70 71 73 74 75 76 85 101 3.5 3.6"},D:{"22":0.00394,"24":0.00394,"34":0.00788,"35":0.00788,"38":0.0197,"39":0.00788,"40":0.0197,"41":0.00788,"42":0.00788,"43":0.01182,"44":0.00788,"45":0.00788,"46":0.00788,"47":0.01576,"48":0.02757,"49":0.0709,"50":0.00788,"51":0.01182,"52":0.00788,"53":0.01576,"54":0.00788,"55":0.01182,"56":0.04333,"57":0.01182,"58":0.01182,"59":0.01182,"60":0.0197,"61":0.01576,"62":0.01576,"63":0.01576,"64":0.01182,"65":0.0197,"66":0.02757,"67":0.01576,"68":0.00788,"69":0.05909,"70":0.02757,"71":0.01182,"72":0.03939,"73":0.01182,"74":0.02363,"75":0.06302,"76":0.07878,"77":0.01576,"78":0.03939,"79":0.21665,"80":0.05909,"81":0.04333,"83":0.12605,"84":0.06696,"85":0.07484,"86":0.07484,"87":0.10241,"88":0.02757,"89":0.05515,"90":0.03939,"91":0.0906,"92":0.07878,"93":0.0709,"94":0.09848,"95":0.06302,"96":0.21271,"97":0.21665,"98":0.41753,"99":4.03354,"100":17.20161,"101":0.25997,"102":0.01576,"103":0.00788,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 26 27 28 29 30 31 32 33 36 37 104"},F:{"28":0.00394,"31":0.00394,"36":0.00788,"40":0.00788,"46":0.01182,"68":0.00394,"77":0.00394,"79":0.00394,"80":0.00394,"82":0.00394,"83":0.00394,"84":0.16938,"85":0.63418,"86":0.01182,_:"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 71 72 73 74 75 76 78 81 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.00394,"15":0.0709,"16":0.02757,"17":0.00788,"18":0.02757,"84":0.00788,"85":0.00394,"86":0.00394,"87":0.00788,"89":0.00394,"91":0.00394,"92":0.01182,"94":0.00394,"95":0.00788,"96":0.01576,"97":0.04727,"98":0.03939,"99":0.52389,"100":3.21422,"101":0.05121,_:"13 14 79 80 81 83 88 90 93"},E:{"4":0,"12":0.00394,"13":0.03939,"14":0.18119,"15":0.07484,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00788,"9.1":0.01576,"10.1":0.01182,"11.1":0.02757,"12.1":0.05515,"13.1":0.40178,"14.1":0.59085,"15.1":0.14574,"15.2-15.3":0.16544,"15.4":1.01232},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00301,"5.0-5.1":0.00451,"6.0-6.1":0.02709,"7.0-7.1":0.01655,"8.1-8.4":0.00752,"9.0-9.2":0.02257,"9.3":0.08427,"10.0-10.2":0.02107,"10.3":0.10383,"11.0-11.2":0.05116,"11.3-11.4":0.03461,"12.0-12.1":0.03311,"12.2-12.5":0.57784,"13.0-13.1":0.0301,"13.2":0.01354,"13.3":0.06772,"13.4-13.7":0.21218,"14.0-14.4":0.65158,"14.5-14.8":1.82381,"15.0-15.1":0.73284,"15.2-15.3":5.15092,"15.4":5.37965},P:{"4":0.2196,"5.0-5.4":0.1206,"6.2-6.4":0.03015,"7.2-7.4":0.0732,"8.2":0.01005,"9.2":0.01046,"10.1":0.0804,"11.1-11.2":0.05229,"12.0":0.02091,"13.0":0.09412,"14.0":0.12549,"15.0":0.08366,"16.0":2.29016},I:{"0":0,"3":0,"4":0.02074,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02074,"4.2-4.3":0.0726,"4.4":0,"4.4.3-4.4.4":0.35262},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04264,"9":0.06396,"10":0.01421,"11":0.56852,_:"6 7 5.5"},N:{"11":0.01722,_:"10"},J:{"7":0,"10":0},O:{"0":0.8546},H:{"0":1.07877},L:{"0":40.15689},S:{"2.5":0.07273},R:{_:"0"},M:{"0":0.32123},Q:{"10.4":0.16971}}; +module.exports={C:{"4":0.01934,"11":0.00773,"36":0.00387,"43":0.0232,"44":0.00773,"45":0.00387,"48":0.00387,"51":0.0116,"52":0.06961,"53":0.0116,"54":0.00773,"55":0.01547,"56":0.0116,"57":0.0116,"59":0.00773,"60":0.00387,"66":0.00387,"68":0.00773,"72":0.00387,"77":0.00387,"78":0.04254,"79":0.00773,"80":0.00773,"81":0.0116,"82":0.00773,"83":0.00387,"84":0.00387,"86":0.00387,"87":0.0116,"88":0.0116,"89":0.00773,"90":0.00773,"91":0.09668,"92":0.00387,"93":0.00773,"94":0.03867,"95":0.0116,"96":0.01547,"97":0.01547,"98":0.0348,"99":0.4215,"100":1.84456,"101":0.0232,_:"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 46 47 49 50 58 61 62 63 64 65 67 69 70 71 73 74 75 76 85 102 103 3.5 3.6"},D:{"22":0.00773,"34":0.00773,"38":0.01934,"39":0.00387,"40":0.01934,"41":0.00773,"42":0.00773,"43":0.0116,"44":0.00387,"45":0.00387,"46":0.00387,"47":0.01547,"48":0.0232,"49":0.06187,"50":0.00387,"51":0.00773,"52":0.00773,"53":0.01547,"54":0.00387,"55":0.00773,"56":0.02707,"57":0.00773,"58":0.0116,"59":0.00773,"60":0.01547,"61":0.01547,"62":0.01547,"63":0.01547,"64":0.00773,"65":0.01547,"66":0.02707,"67":0.0232,"68":0.00773,"69":0.0464,"70":0.01934,"71":0.0116,"72":0.01934,"73":0.00773,"74":0.0232,"75":0.05801,"76":0.07347,"77":0.0116,"78":0.03094,"79":0.20495,"80":0.04254,"81":0.03867,"83":0.13148,"84":0.08121,"85":0.08894,"86":0.09281,"87":0.10441,"88":0.01934,"89":0.05801,"90":0.0348,"91":0.08121,"92":0.06574,"93":0.05414,"94":0.06187,"95":0.04254,"96":0.14308,"97":0.14308,"98":0.20495,"99":0.3519,"100":4.17636,"101":15.44867,"102":1.5468,"103":0.01547,"104":0.00773,_:"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"},F:{"28":0.00773,"31":0.00387,"36":0.00387,"40":0.00773,"46":0.0116,"68":0.00387,"71":0.00387,"84":0.00773,"85":0.44857,"86":0.47564,"87":0.02707,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00773,"15":0.05801,"16":0.00387,"17":0.00773,"18":0.0232,"84":0.00773,"85":0.00773,"86":0.00387,"87":0.0116,"89":0.00773,"92":0.00773,"95":0.00773,"96":0.0116,"97":0.01547,"98":0.01547,"99":0.05414,"100":0.21269,"101":3.52284,_:"13 14 79 80 81 83 88 90 91 93 94"},E:{"4":0,"12":0.00387,"13":0.0348,"14":0.15855,"15":0.05801,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00773,"9.1":0.01547,"10.1":0.00773,"11.1":0.0232,"12.1":0.0464,"13.1":0.26682,"14.1":0.49111,"15.1":0.10828,"15.2-15.3":0.10828,"15.4":1.67054,"15.5":0.18948},G:{"8":0,"3.2":0.00304,"4.0-4.1":0,"4.2-4.3":0.00152,"5.0-5.1":0.00455,"6.0-6.1":0.00455,"7.0-7.1":0.0167,"8.1-8.4":0.00759,"9.0-9.2":0.01974,"9.3":0.07743,"10.0-10.2":0.01366,"10.3":0.09261,"11.0-11.2":0.03796,"11.3-11.4":0.03188,"12.0-12.1":0.03036,"12.2-12.5":0.57996,"13.0-13.1":0.02885,"13.2":0.01215,"13.3":0.06073,"13.4-13.7":0.18978,"14.0-14.4":0.59211,"14.5-14.8":1.50911,"15.0-15.1":0.51316,"15.2-15.3":1.20395,"15.4":10.14779},P:{"4":0.20935,"5.0-5.4":0.09049,"6.2-6.4":0.02011,"7.2-7.4":0.0628,"8.2":0.01015,"9.2":0.01047,"10.1":0.03016,"11.1-11.2":0.04187,"12.0":0.02093,"13.0":0.09421,"14.0":0.09421,"15.0":0.09421,"16.0":0.88972},I:{"0":0,"3":0,"4":0.01494,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01991,"4.2-4.3":0.05974,"4.4":0,"4.4.3-4.4.4":0.32858},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01669,"9":0.03895,"10":0.00556,"11":0.8514,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02648,_:"11"},R:{_:"0"},M:{"0":0.30665},Q:{"10.4":0.15333},O:{"0":0.76663},H:{"0":0.99869},L:{"0":41.33544},S:{"2.5":0.0736}}; 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 ac87857ffa40ac..1de89d8716da4a 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.30001346", + "version": "1.0.30001356", "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/full-chromium-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js index a7d4cbdd512065..bf68030957339c 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 @@ -1881,7 +1881,9 @@ module.exports = { "18.2.4", "18.3.0", "18.3.1", - "18.3.2" + "18.3.2", + "18.3.3", + "18.3.4" ], "102.0.4962.3": [ "19.0.0-alpha.1", @@ -1945,7 +1947,8 @@ module.exports = { ], "102.0.5005.63": [ "19.0.2", - "19.0.3" + "19.0.3", + "19.0.4" ], "103.0.5044.0": [ "20.0.0-alpha.1", @@ -1961,7 +1964,21 @@ module.exports = { ], "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", "21.0.0-nightly.20220602", - "21.0.0-nightly.20220603" + "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" ] }; \ 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 892493a7c28836..8ad6d94a28ec93 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"],"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"],"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"],"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","21.0.0-nightly.20220602","21.0.0-nightly.20220603"]} \ 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"],"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"],"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"],"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","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"]} \ 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 3d3f5b260344a4..f4547f0819022c 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 @@ -1366,6 +1366,8 @@ module.exports = { "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", "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", @@ -1405,8 +1407,13 @@ module.exports = { "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", "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-nightly.20220330": "102.0.4962.3", "20.0.0-nightly.20220411": "102.0.4971.0", "20.0.0-nightly.20220414": "102.0.4989.0", @@ -1441,5 +1448,15 @@ module.exports = { "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.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" }; \ 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 fe73749b2d168a..19231dc335f9f0 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","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","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","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","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","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"} \ 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","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","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","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-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","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"} \ 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 817b7b8bc8b96a..9566551ce2723f 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.146", + "version": "1.4.161", "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.1026.0", + "electron-releases": "^3.1041.0", "nyc": "^15.1.0", "request": "^2.65.0", "shelljs": "^0.8.4" diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/alignTransform.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/alignTransform.js index aa51820eade6f7..6ef3ed8bd782b4 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/alignTransform.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/alignTransform.js @@ -79,7 +79,7 @@ const alignTransform = ({ let intoTags = false; let width; - const alignTokens = tokens => { + const alignTokens = (tokens, hasNoTypes) => { const nothingAfter = { delim: false, name: false, @@ -105,6 +105,11 @@ const alignTransform = ({ } } } + } + + if (hasNoTypes) { + nothingAfter.tag = true; + tokens.postTag = ''; } // Todo: Avoid fixing alignment of blocks with multiline wrapping of type @@ -136,7 +141,7 @@ const alignTransform = ({ return tokens; }; - const update = (line, index, source) => { + const update = (line, index, source, hasNoTypes) => { const tokens = { ...line.tokens }; @@ -192,7 +197,7 @@ const alignTransform = ({ } return { ...line, - tokens: alignTokens(tokens) + tokens: alignTokens(tokens, hasNoTypes) }; }; @@ -202,9 +207,14 @@ const alignTransform = ({ }) => { width = source.reduce(getWidth(tags), { ...zeroWidth }); + const hasNoTypes = fields.tags.every(({ + type + }) => { + return !type; + }); return rewireSource({ ...fields, source: source.map((line, index) => { - return update(line, index, source); + return update(line, index, source, hasNoTypes); }) }); }; diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json index 2f1e2ecbc14191..2e75cf6e801d0f 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json @@ -117,5 +117,5 @@ "test-cov": "cross-env TIMING=1 nyc --reporter text npm run test-no-cov", "test-index": "npm run test-no-cov -- test/rules/index.js" }, - "version": "39.3.2" + "version": "39.3.3" } diff --git a/tools/node_modules/eslint/node_modules/lru-cache/LICENSE b/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/LICENSE similarity index 100% rename from tools/node_modules/eslint/node_modules/lru-cache/LICENSE rename to tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/LICENSE diff --git a/tools/node_modules/eslint/node_modules/lru-cache/index.js b/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/index.js similarity index 100% rename from tools/node_modules/eslint/node_modules/lru-cache/index.js rename to tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/index.js diff --git a/tools/node_modules/eslint/node_modules/lru-cache/package.json b/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/package.json similarity index 100% rename from tools/node_modules/eslint/node_modules/lru-cache/package.json rename to tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/package.json diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json index cb595a2a75da39..2a3ec9c8a3a882 100644 --- a/tools/node_modules/eslint/package.json +++ b/tools/node_modules/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.17.0", + "version": "8.18.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": { From b9204c9be87337b404f4741e817d5f66f8910365 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Mon, 20 Jun 2022 00:17:30 +0200 Subject: [PATCH 043/175] meta: update AUTHORS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43480 Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen --- .mailmap | 1 + AUTHORS | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.mailmap b/.mailmap index 3143501352576a..d2bd47a4e851df 100644 --- a/.mailmap +++ b/.mailmap @@ -380,6 +380,7 @@ Noah Rose Ledesma npm team npm team npm team +npm team Oliver Chang Oluwaseun Omoyajowo OneNail diff --git a/AUTHORS b/AUTHORS index f20f9bc3313a08..6bb303118e6476 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3464,5 +3464,9 @@ rikapo Meek Simbule <55823259+meekdenzo@users.noreply.github.com> Michael Ficarra hiroki osame +Eugene Chapko +Sergey Petushkov +Caleb Everett +JialuZhang-intel # Generated by tools/update-authors.mjs From 0659d5e3b0ea76f204a57ce1e569bdc53fb1cb87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 20 Jun 2022 09:50:55 +0200 Subject: [PATCH 044/175] src: change FormatSize to actually accept a size_t This function is only called with size_t values and it does not deal with unsigned values nicely, so its argument type should be size_t. PR-URL: https://github.com/nodejs/node/pull/43464 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Darshan Sen --- src/node_snapshotable.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_snapshotable.cc b/src/node_snapshotable.cc index 2bc30b20bcdeac..b71c46acabed72 100644 --- a/src/node_snapshotable.cc +++ b/src/node_snapshotable.cc @@ -57,7 +57,7 @@ static std::string GetCodeCacheDefName(const std::string& id) { return std::string(buf) + std::string("_cache_data"); } -static std::string FormatSize(int size) { +static std::string FormatSize(size_t size) { char buf[64] = {0}; if (size < 1024) { snprintf(buf, sizeof(buf), "%.2fB", static_cast(size)); From 4e0afa4133216193efa04b8eef31beb290e7a843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 20 Jun 2022 09:51:04 +0200 Subject: [PATCH 045/175] src: remove CopyBuffer CopyBuffer was used by the PBKDF2 implementation prior to the big refactor, which removed those call sites. PR-URL: https://github.com/nodejs/node/pull/43463 Reviewed-By: James M Snell Reviewed-By: Antoine du Hamel Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Luigi Pinca Reviewed-By: Darshan Sen --- src/crypto/crypto_util.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/crypto/crypto_util.h b/src/crypto/crypto_util.h index e5d9410039cad1..c0b10583ce0978 100644 --- a/src/crypto/crypto_util.h +++ b/src/crypto/crypto_util.h @@ -777,20 +777,6 @@ class ArrayBufferOrViewContents { std::shared_ptr store_; }; -template -std::vector CopyBuffer(const ArrayBufferOrViewContents& buf) { - std::vector vec; - vec->resize(buf.size()); - if (vec->size() > 0 && buf.data() != nullptr) - memcpy(vec->data(), buf.data(), vec->size()); - return vec; -} - -template -std::vector CopyBuffer(v8::Local buf) { - return CopyBuffer(ArrayBufferOrViewContents(buf)); -} - v8::MaybeLocal EncodeBignum( Environment* env, const BIGNUM* bn, From d0c78d21e0ed136356f4f89a634bcb0d6dbf94fa Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Mon, 20 Jun 2022 17:20:57 +0800 Subject: [PATCH 046/175] doc: update link of `ICU data slicer` PR-URL: https://github.com/nodejs/node/pull/43483 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel Reviewed-By: Darshan Sen --- tools/icu/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/icu/README.md b/tools/icu/README.md index 2e908e2cf44750..0740b718a859c0 100644 --- a/tools/icu/README.md +++ b/tools/icu/README.md @@ -36,4 +36,4 @@ Note: * [The ICU Homepage][ICU] [ICU]: http://icu-project.org -[ICU data slicer]: https://github.com/unicode-org/icu/blob/master/docs/userguide/icu_data/buildtool.md +[ICU data slicer]: https://github.com/unicode-org/icu/blob/HEAD/docs/userguide/icu_data/buildtool.md From 9bd13bbb3a54bb3c108389d0fd7eb61ece04e627 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 20 Jun 2022 15:42:33 +0200 Subject: [PATCH 047/175] crypto: update Wrapping and unwrapping keys webcrypto example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43452 Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca --- doc/api/webcrypto.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index bc0d107f2f99c6..3a91d0d5e1c63a 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -226,7 +226,7 @@ async function generateAndWrapHmacKey(format = 'jwk', hash = 'SHA-512') { const wrappedKey = await subtle.wrapKey(format, key, wrappingKey, 'AES-KW'); - return wrappedKey; + return { wrappedKey, wrappingKey }; } async function unwrapHmacKey( @@ -238,7 +238,7 @@ async function unwrapHmacKey( const key = await subtle.unwrapKey( format, wrappedKey, - unwrappingKey, + wrappingKey, 'AES-KW', { name: 'HMAC', hash }, true, From 2149acda60bd3909c684d0031c1a53f8d5aabd52 Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Tue, 21 Jun 2022 02:58:45 +0800 Subject: [PATCH 048/175] dns: make promise API fully constructed from `lib/internal/dns/promises` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43227 Refs: https://github.com/nodejs/node/discussions/43198 Reviewed-By: Matteo Collina Reviewed-By: Michaël Zasso Reviewed-By: Luigi Pinca Reviewed-By: Minwoo Jung --- lib/dns.js | 2 -- lib/dns/promises.js | 4 +--- lib/internal/dns/promises.js | 11 +++++++++++ 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/lib/dns.js b/lib/dns.js index 351fa43f357f4d..97793eb12aaf3a 100644 --- a/lib/dns.js +++ b/lib/dns.js @@ -439,8 +439,6 @@ ObjectDefineProperties(module.exports, { get() { if (promises === null) { promises = require('internal/dns/promises'); - promises.setServers = defaultResolverSetServers; - promises.setDefaultResultOrder = setDefaultResultOrder; } return promises; } diff --git a/lib/dns/promises.js b/lib/dns/promises.js index ad8a2561ef51e4..35881e5bb47374 100644 --- a/lib/dns/promises.js +++ b/lib/dns/promises.js @@ -1,5 +1,3 @@ 'use strict'; -const dnsPromises = require('internal/dns/promises'); -dnsPromises.setServers = require('dns').setServers; -module.exports = dnsPromises; +module.exports = require('internal/dns/promises'); diff --git a/lib/internal/dns/promises.js b/lib/internal/dns/promises.js index 395b059758f36f..334260923faa7b 100644 --- a/lib/internal/dns/promises.js +++ b/lib/internal/dns/promises.js @@ -17,6 +17,8 @@ const { emitInvalidHostnameWarning, getDefaultVerbatim, errorCodes: dnsErrorCodes, + setDefaultResultOrder, + setDefaultResolver, } = require('internal/dns/utils'); const { NODATA, @@ -349,11 +351,20 @@ Resolver.prototype.resolve = function resolve(hostname, rrtype) { return ReflectApply(resolver, this, [hostname]); }; +function defaultResolverSetServers(servers) { + const resolver = new Resolver(); + + resolver.setServers(servers); + setDefaultResolver(resolver); + bindDefaultResolver(module.exports, Resolver.prototype); +} module.exports = { lookup, lookupService, Resolver, + setDefaultResultOrder, + setServers: defaultResolverSetServers, // ERROR CODES NODATA, From c8aafe20364621710d4657b62b2ed16201aee8bf Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Tue, 21 Jun 2022 15:02:56 +0800 Subject: [PATCH 049/175] doc: fix Visual Studio 2019 download link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43236 Reviewed-By: Michaël Zasso --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index f7b3efd099d1a6..c16f6ffde07d3f 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -567,9 +567,9 @@ to run it again before invoking `make -j4`. * [Python 3.10](https://www.microsoft.com/en-us/p/python-310/9pjpw5ldxlz5) * The "Desktop development with C++" workload from - [Visual Studio 2019](https://visualstudio.microsoft.com/downloads/) or + [Visual Studio 2019](https://visualstudio.microsoft.com/vs/older-downloads/#visual-studio-2019-and-other-products) or the "C++ build tools" workload from the - [Build Tools](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019), + [Build Tools](https://aka.ms/vs/16/release/vs_buildtools.exe), with the default optional components * Basic Unix tools required for some tests, [Git for Windows](https://git-scm.com/download/win) includes Git Bash From 462e526237a0f037ec56f7f7977a76f03c368c72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 21 Jun 2022 13:43:09 +0200 Subject: [PATCH 050/175] doc,test: clarify timingSafeEqual semantics PR-URL: https://github.com/nodejs/node/pull/43228 Reviewed-By: Ben Noordhuis Reviewed-By: Rich Trott --- doc/api/crypto.md | 13 +++++-- .../test-crypto-timing-safe-equal.js | 35 +++++++++++++++++++ 2 files changed, 46 insertions(+), 2 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 0947b40ee953da..d2e0f815733ba8 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -5437,8 +5437,11 @@ changes: * `b` {ArrayBuffer|Buffer|TypedArray|DataView} * Returns: {boolean} -This function is based on a constant-time algorithm. -Returns true if `a` is equal to `b`, without leaking timing information that +This function compares the underlying bytes that represent the given +`ArrayBuffer`, `TypedArray`, or `DataView` instances using a constant-time +algorithm. + +This function does not leak timing information that would allow an attacker to guess one of the values. This is suitable for comparing HMAC digests or secret values like authentication cookies or [capability urls](https://www.w3.org/TR/capability-urls/). @@ -5451,6 +5454,12 @@ If at least one of `a` and `b` is a `TypedArray` with more than one byte per entry, such as `Uint16Array`, the result will be computed using the platform byte order. +When both of the inputs are `Float32Array`s or +`Float64Array`s, this function might return unexpected results due to IEEE 754 +encoding of floating-point numbers. In particular, neither `x === y` nor +`Object.is(x, y)` implies that the byte representations of two floating-point +numbers `x` and `y` are equal. + Use of `crypto.timingSafeEqual` does not guarantee that the _surrounding_ code is timing-safe. Care should be taken to ensure that the surrounding code does not introduce timing vulnerabilities. diff --git a/test/sequential/test-crypto-timing-safe-equal.js b/test/sequential/test-crypto-timing-safe-equal.js index a8bd3abf4cf1ae..13190692b84749 100644 --- a/test/sequential/test-crypto-timing-safe-equal.js +++ b/test/sequential/test-crypto-timing-safe-equal.js @@ -32,6 +32,41 @@ assert.strictEqual( } } +{ + // When the inputs are floating-point numbers, timingSafeEqual neither has + // equality nor SameValue semantics. It just compares the underlying bytes, + // ignoring the TypedArray type completely. + + const cmp = (fn) => (a, b) => a.every((x, i) => fn(x, b[i])); + const eq = cmp((a, b) => a === b); + const is = cmp(Object.is); + + function test(a, b, { equal, sameValue, timingSafeEqual }) { + assert.strictEqual(eq(a, b), equal); + assert.strictEqual(is(a, b), sameValue); + assert.strictEqual(crypto.timingSafeEqual(a, b), timingSafeEqual); + } + + test(new Float32Array([NaN]), new Float32Array([NaN]), { + equal: false, + sameValue: true, + timingSafeEqual: true + }); + + test(new Float64Array([0]), new Float64Array([-0]), { + equal: true, + sameValue: false, + timingSafeEqual: false + }); + + const x = new BigInt64Array([0x7ff0000000000001n, 0xfff0000000000001n]); + test(new Float64Array(x.buffer), new Float64Array([NaN, NaN]), { + equal: false, + sameValue: true, + timingSafeEqual: false + }); +} + assert.throws( () => crypto.timingSafeEqual(Buffer.from([1, 2, 3]), Buffer.from([1, 2])), { From 70d297c2712d00af4fa3e9457ce15bbf745208b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 21 Jun 2022 23:54:09 +0200 Subject: [PATCH 051/175] test: replace gc(true) with gc({ type: 'minor' }) V8 considers gc(true) legacy, and the new signature is much more expressive. PR-URL: https://github.com/nodejs/node/pull/43493 Reviewed-By: Rich Trott Reviewed-By: Gus Caplan Reviewed-By: Matteo Collina Reviewed-By: Benjamin Gruenbaum --- test/node-api/test_buffer/test_finalizer.js | 2 +- test/parallel/test-net-write-fully-async-buffer.js | 2 +- test/parallel/test-net-write-fully-async-hex-string.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/node-api/test_buffer/test_finalizer.js b/test/node-api/test_buffer/test_finalizer.js index 372116bb3a05fc..b706c68c7c3e02 100644 --- a/test/node-api/test_buffer/test_finalizer.js +++ b/test/node-api/test_buffer/test_finalizer.js @@ -16,7 +16,7 @@ process.on('uncaughtException', common.mustCall((err) => { throw new Error('finalizer error'); })); } - global.gc(true); + global.gc({ type: 'minor' }); await tick(common.platformTimeout(100)); global.gc(); await tick(common.platformTimeout(100)); diff --git a/test/parallel/test-net-write-fully-async-buffer.js b/test/parallel/test-net-write-fully-async-buffer.js index 207ae24f6a32d0..0dddb51bd76ade 100644 --- a/test/parallel/test-net-write-fully-async-buffer.js +++ b/test/parallel/test-net-write-fully-async-buffer.js @@ -23,7 +23,7 @@ const server = net.createServer(common.mustCall(function(conn) { } while (conn.write(Buffer.from(data))); - global.gc(true); + global.gc({ type: 'minor' }); // The buffer allocated above should still be alive. } diff --git a/test/parallel/test-net-write-fully-async-hex-string.js b/test/parallel/test-net-write-fully-async-hex-string.js index f3115d8d2f795e..37b5cd75c1385c 100644 --- a/test/parallel/test-net-write-fully-async-hex-string.js +++ b/test/parallel/test-net-write-fully-async-hex-string.js @@ -21,7 +21,7 @@ const server = net.createServer(common.mustCall(function(conn) { } while (conn.write(data, 'hex')); - global.gc(true); + global.gc({ type: 'minor' }); // The buffer allocated inside the .write() call should still be alive. } From eece34cddb2133db22241502fffde7a32d36875b Mon Sep 17 00:00:00 2001 From: Daiki Nishikawa Date: Wed, 22 Jun 2022 17:28:59 +0900 Subject: [PATCH 052/175] test: add WPT tests for dom/events PR-URL: https://github.com/nodejs/node/pull/43151 Refs: https://github.com/nodejs/node/issues/40678 Reviewed-By: Masashi Hirano Reviewed-By: Ben Noordhuis Reviewed-By: James M Snell --- test/fixtures/wpt/README.md | 1 + .../AddEventListenerOptions-once.any.js | 96 +++++ .../AddEventListenerOptions-passive.any.js | 134 +++++++ .../AddEventListenerOptions-signal.any.js | 143 +++++++ test/fixtures/wpt/dom/events/CustomEvent.html | 35 ++ .../wpt/dom/events/Event-cancelBubble.html | 132 +++++++ .../wpt/dom/events/Event-constants.html | 23 ++ .../wpt/dom/events/Event-constructors.any.js | 114 ++++++ ...Event-defaultPrevented-after-dispatch.html | 44 +++ .../dom/events/Event-defaultPrevented.html | 55 +++ .../Event-dispatch-bubble-canceled.html | 59 +++ .../events/Event-dispatch-bubbles-false.html | 98 +++++ .../events/Event-dispatch-bubbles-true.html | 108 +++++ .../wpt/dom/events/Event-dispatch-click.html | 369 ++++++++++++++++++ .../Event-dispatch-click.tentative.html | 78 ++++ .../events/Event-dispatch-detached-click.html | 20 + ...nt-dispatch-detached-input-and-change.html | 190 +++++++++ .../Event-dispatch-handlers-changed.html | 91 +++++ .../Event-dispatch-listener-order.window.js | 20 + .../Event-dispatch-multiple-cancelBubble.html | 51 +++ ...ent-dispatch-multiple-stopPropagation.html | 51 +++ .../Event-dispatch-omitted-capture.html | 70 ++++ .../Event-dispatch-on-disabled-elements.html | 251 ++++++++++++ .../Event-dispatch-order-at-target.html | 31 ++ .../wpt/dom/events/Event-dispatch-order.html | 26 ++ .../events/Event-dispatch-other-document.html | 23 ++ .../Event-dispatch-propagation-stopped.html | 59 +++ .../dom/events/Event-dispatch-redispatch.html | 124 ++++++ .../dom/events/Event-dispatch-reenter.html | 66 ++++ .../events/Event-dispatch-target-moved.html | 73 ++++ .../events/Event-dispatch-target-removed.html | 72 ++++ .../dom/events/Event-dispatch-throwing.html | 51 +++ .../events/Event-init-while-dispatching.html | 83 ++++ .../wpt/dom/events/Event-initEvent.html | 136 +++++++ .../wpt/dom/events/Event-isTrusted.any.js | 11 + .../wpt/dom/events/Event-propagation.html | 48 +++ .../wpt/dom/events/Event-returnValue.html | 64 +++ .../Event-stopImmediatePropagation.html | 34 ++ ...Event-stopPropagation-cancel-bubbling.html | 20 + .../events/Event-subclasses-constructors.html | 179 +++++++++ .../Event-timestamp-cross-realm-getter.html | 27 ++ .../Event-timestamp-high-resolution.html | 16 + ...Event-timestamp-high-resolution.https.html | 16 + .../Event-timestamp-safe-resolution.html | 49 +++ .../wpt/dom/events/Event-type-empty.html | 35 ++ test/fixtures/wpt/dom/events/Event-type.html | 22 ++ ...entListener-addEventListener.sub.window.js | 9 + ...EventListener-handleEvent-cross-realm.html | 75 ++++ .../dom/events/EventListener-handleEvent.html | 102 +++++ .../EventListener-incumbent-global-1.sub.html | 20 + .../EventListener-incumbent-global-2.sub.html | 20 + ...tener-incumbent-global-subframe-1.sub.html | 13 + ...tener-incumbent-global-subframe-2.sub.html | 13 + ...ener-incumbent-global-subsubframe.sub.html | 20 + .../events/EventListener-invoke-legacy.html | 66 ++++ .../events/EventListenerOptions-capture.html | 98 +++++ ...ntTarget-add-listener-platform-object.html | 32 ++ .../EventTarget-add-remove-listener.any.js | 21 + .../EventTarget-addEventListener.any.js | 9 + .../events/EventTarget-constructible.any.js | 62 +++ ...EventTarget-dispatchEvent-returnvalue.html | 71 ++++ .../dom/events/EventTarget-dispatchEvent.html | 104 +++++ .../EventTarget-removeEventListener.any.js | 8 + .../events/EventTarget-this-of-listener.html | 182 +++++++++ .../wpt/dom/events/KeyEvent-initKeyEvent.html | 23 ++ ...listener-passive-by-default.tentative.html | 73 ++++ ...listener-passive-by-default.tentative.html | 51 +++ .../dom/events/event-disabled-dynamic.html | 21 + .../dom/events/event-global-extra.window.js | 90 +++++ ...set-when-coercing-beforeunload-result.html | 23 ++ ...al-set-before-handleEvent-lookup.window.js | 19 + .../fixtures/wpt/dom/events/event-global.html | 117 ++++++ .../wpt/dom/events/event-global.worker.js | 14 + .../dom/events/focus-event-document-move.html | 33 ++ .../dom/events/keypress-dispatch-crash.html | 15 + .../legacy-pre-activation-behavior.window.js | 10 + .../wpt/dom/events/relatedTarget.window.js | 81 ++++ ...-listener-null-browsing-context-crash.html | 16 + .../dom/events/resources/empty-document.html | 3 + .../resources/event-global-extra-frame.html | 9 + ...en-coercing-beforeunload-result-frame.html | 6 + .../prefixed-animation-event-tests.js | 366 +++++++++++++++++ .../dom/events/scrolling/iframe-chains.html | 47 +++ ...xt-scroll-event-when-using-arrow-keys.html | 71 ++++ .../events/scrolling/overscroll-deltas.html | 85 ++++ .../overscroll-event-fired-to-document.html | 62 +++ ...d-to-element-with-overscroll-behavior.html | 92 +++++ ...croll-event-fired-to-scrolled-element.html | 65 +++ .../overscroll-event-fired-to-window.html | 52 +++ .../dom/events/scrolling/scroll_support.js | 97 +++++ .../scrollend-event-fired-after-snap.html | 86 ++++ ...d-event-fired-for-programmatic-scroll.html | 134 +++++++ ...ollend-event-fired-for-scrollIntoView.html | 123 ++++++ .../scrollend-event-fired-to-document.html | 69 ++++ ...d-to-element-with-overscroll-behavior.html | 93 +++++ ...llend-event-fired-to-scrolled-element.html | 67 ++++ .../scrollend-event-fired-to-window.html | 54 +++ .../scrollend-event-for-user-scroll.html | 138 +++++++ .../wpt/dom/events/shadow-relatedTarget.html | 30 ++ .../events/webkit-animation-end-event.html | 20 + .../webkit-animation-iteration-event.html | 23 ++ .../events/webkit-animation-start-event.html | 20 + .../events/webkit-transition-end-event.html | 21 + test/fixtures/wpt/versions.json | 6 +- test/wpt/status/dom/events.json | 52 +++ test/wpt/test-events.js | 7 + 106 files changed, 6906 insertions(+), 1 deletion(-) create mode 100644 test/fixtures/wpt/dom/events/AddEventListenerOptions-once.any.js create mode 100644 test/fixtures/wpt/dom/events/AddEventListenerOptions-passive.any.js create mode 100644 test/fixtures/wpt/dom/events/AddEventListenerOptions-signal.any.js create mode 100644 test/fixtures/wpt/dom/events/CustomEvent.html create mode 100644 test/fixtures/wpt/dom/events/Event-cancelBubble.html create mode 100644 test/fixtures/wpt/dom/events/Event-constants.html create mode 100644 test/fixtures/wpt/dom/events/Event-constructors.any.js create mode 100644 test/fixtures/wpt/dom/events/Event-defaultPrevented-after-dispatch.html create mode 100644 test/fixtures/wpt/dom/events/Event-defaultPrevented.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-bubble-canceled.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-bubbles-false.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-bubbles-true.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-click.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-click.tentative.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-detached-click.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-detached-input-and-change.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-handlers-changed.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-listener-order.window.js create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-multiple-cancelBubble.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-multiple-stopPropagation.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-omitted-capture.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-on-disabled-elements.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-order-at-target.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-order.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-other-document.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-propagation-stopped.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-redispatch.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-reenter.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-target-moved.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-target-removed.html create mode 100644 test/fixtures/wpt/dom/events/Event-dispatch-throwing.html create mode 100644 test/fixtures/wpt/dom/events/Event-init-while-dispatching.html create mode 100644 test/fixtures/wpt/dom/events/Event-initEvent.html create mode 100644 test/fixtures/wpt/dom/events/Event-isTrusted.any.js create mode 100644 test/fixtures/wpt/dom/events/Event-propagation.html create mode 100644 test/fixtures/wpt/dom/events/Event-returnValue.html create mode 100644 test/fixtures/wpt/dom/events/Event-stopImmediatePropagation.html create mode 100644 test/fixtures/wpt/dom/events/Event-stopPropagation-cancel-bubbling.html create mode 100644 test/fixtures/wpt/dom/events/Event-subclasses-constructors.html create mode 100644 test/fixtures/wpt/dom/events/Event-timestamp-cross-realm-getter.html create mode 100644 test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.html create mode 100644 test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.https.html create mode 100644 test/fixtures/wpt/dom/events/Event-timestamp-safe-resolution.html create mode 100644 test/fixtures/wpt/dom/events/Event-type-empty.html create mode 100644 test/fixtures/wpt/dom/events/Event-type.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-addEventListener.sub.window.js create mode 100644 test/fixtures/wpt/dom/events/EventListener-handleEvent-cross-realm.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-handleEvent.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-incumbent-global-1.sub.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-incumbent-global-2.sub.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-1.sub.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-2.sub.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-incumbent-global-subsubframe.sub.html create mode 100644 test/fixtures/wpt/dom/events/EventListener-invoke-legacy.html create mode 100644 test/fixtures/wpt/dom/events/EventListenerOptions-capture.html create mode 100644 test/fixtures/wpt/dom/events/EventTarget-add-listener-platform-object.html create mode 100644 test/fixtures/wpt/dom/events/EventTarget-add-remove-listener.any.js create mode 100644 test/fixtures/wpt/dom/events/EventTarget-addEventListener.any.js create mode 100644 test/fixtures/wpt/dom/events/EventTarget-constructible.any.js create mode 100644 test/fixtures/wpt/dom/events/EventTarget-dispatchEvent-returnvalue.html create mode 100644 test/fixtures/wpt/dom/events/EventTarget-dispatchEvent.html create mode 100644 test/fixtures/wpt/dom/events/EventTarget-removeEventListener.any.js create mode 100644 test/fixtures/wpt/dom/events/EventTarget-this-of-listener.html create mode 100644 test/fixtures/wpt/dom/events/KeyEvent-initKeyEvent.html create mode 100644 test/fixtures/wpt/dom/events/document-level-touchmove-event-listener-passive-by-default.tentative.html create mode 100644 test/fixtures/wpt/dom/events/document-level-wheel-event-listener-passive-by-default.tentative.html create mode 100644 test/fixtures/wpt/dom/events/event-disabled-dynamic.html create mode 100644 test/fixtures/wpt/dom/events/event-global-extra.window.js create mode 100644 test/fixtures/wpt/dom/events/event-global-is-still-set-when-coercing-beforeunload-result.html create mode 100644 test/fixtures/wpt/dom/events/event-global-set-before-handleEvent-lookup.window.js create mode 100644 test/fixtures/wpt/dom/events/event-global.html create mode 100644 test/fixtures/wpt/dom/events/event-global.worker.js create mode 100644 test/fixtures/wpt/dom/events/focus-event-document-move.html create mode 100644 test/fixtures/wpt/dom/events/keypress-dispatch-crash.html create mode 100644 test/fixtures/wpt/dom/events/legacy-pre-activation-behavior.window.js create mode 100644 test/fixtures/wpt/dom/events/relatedTarget.window.js create mode 100644 test/fixtures/wpt/dom/events/replace-event-listener-null-browsing-context-crash.html create mode 100644 test/fixtures/wpt/dom/events/resources/empty-document.html create mode 100644 test/fixtures/wpt/dom/events/resources/event-global-extra-frame.html create mode 100644 test/fixtures/wpt/dom/events/resources/event-global-is-still-set-when-coercing-beforeunload-result-frame.html create mode 100644 test/fixtures/wpt/dom/events/resources/prefixed-animation-event-tests.js create mode 100644 test/fixtures/wpt/dom/events/scrolling/iframe-chains.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/input-text-scroll-event-when-using-arrow-keys.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/overscroll-deltas.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-document.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-element-with-overscroll-behavior.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-window.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scroll_support.js create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-after-snap.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-scrollIntoView.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-document.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-element-with-overscroll-behavior.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-scrolled-element.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-window.html create mode 100644 test/fixtures/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html create mode 100644 test/fixtures/wpt/dom/events/shadow-relatedTarget.html create mode 100644 test/fixtures/wpt/dom/events/webkit-animation-end-event.html create mode 100644 test/fixtures/wpt/dom/events/webkit-animation-iteration-event.html create mode 100644 test/fixtures/wpt/dom/events/webkit-animation-start-event.html create mode 100644 test/fixtures/wpt/dom/events/webkit-transition-end-event.html create mode 100644 test/wpt/status/dom/events.json create mode 100644 test/wpt/test-events.js diff --git a/test/fixtures/wpt/README.md b/test/fixtures/wpt/README.md index 927a8a6f80fb58..e4bd0ab9737bf4 100644 --- a/test/fixtures/wpt/README.md +++ b/test/fixtures/wpt/README.md @@ -13,6 +13,7 @@ Last update: - common: https://github.com/web-platform-tests/wpt/tree/03c5072aff/common - console: https://github.com/web-platform-tests/wpt/tree/3b1f72e99a/console - dom/abort: https://github.com/web-platform-tests/wpt/tree/c49cafb491/dom/abort +- dom/events: https://github.com/web-platform-tests/wpt/tree/f8821adb28/dom/events - encoding: https://github.com/web-platform-tests/wpt/tree/35f70910d3/encoding - FileAPI: https://github.com/web-platform-tests/wpt/tree/3b279420d4/FileAPI - hr-time: https://github.com/web-platform-tests/wpt/tree/9910784394/hr-time diff --git a/test/fixtures/wpt/dom/events/AddEventListenerOptions-once.any.js b/test/fixtures/wpt/dom/events/AddEventListenerOptions-once.any.js new file mode 100644 index 00000000000000..b4edd4345c5e34 --- /dev/null +++ b/test/fixtures/wpt/dom/events/AddEventListenerOptions-once.any.js @@ -0,0 +1,96 @@ +// META: title=AddEventListenerOptions.once + +"use strict"; + +test(function() { + var invoked_once = false; + var invoked_normal = false; + function handler_once() { + invoked_once = true; + } + function handler_normal() { + invoked_normal = true; + } + + const et = new EventTarget(); + et.addEventListener('test', handler_once, {once: true}); + et.addEventListener('test', handler_normal); + et.dispatchEvent(new Event('test')); + assert_equals(invoked_once, true, "Once handler should be invoked"); + assert_equals(invoked_normal, true, "Normal handler should be invoked"); + + invoked_once = false; + invoked_normal = false; + et.dispatchEvent(new Event('test')); + assert_equals(invoked_once, false, "Once handler shouldn't be invoked again"); + assert_equals(invoked_normal, true, "Normal handler should be invoked again"); + et.removeEventListener('test', handler_normal); +}, "Once listener should be invoked only once"); + +test(function() { + const et = new EventTarget(); + var invoked_count = 0; + function handler() { + invoked_count++; + if (invoked_count == 1) + et.dispatchEvent(new Event('test')); + } + et.addEventListener('test', handler, {once: true}); + et.dispatchEvent(new Event('test')); + assert_equals(invoked_count, 1, "Once handler should only be invoked once"); + + invoked_count = 0; + function handler2() { + invoked_count++; + if (invoked_count == 1) + et.addEventListener('test', handler2, {once: true}); + if (invoked_count <= 2) + et.dispatchEvent(new Event('test')); + } + et.addEventListener('test', handler2, {once: true}); + et.dispatchEvent(new Event('test')); + assert_equals(invoked_count, 2, "Once handler should only be invoked once after each adding"); +}, "Once listener should be invoked only once even if the event is nested"); + +test(function() { + var invoked_count = 0; + function handler() { + invoked_count++; + } + + const et = new EventTarget(); + + et.addEventListener('test', handler, {once: true}); + et.addEventListener('test', handler); + et.dispatchEvent(new Event('test')); + assert_equals(invoked_count, 1, "The handler should only be added once"); + + invoked_count = 0; + et.dispatchEvent(new Event('test')); + assert_equals(invoked_count, 0, "The handler was added as a once listener"); + + invoked_count = 0; + et.addEventListener('test', handler, {once: true}); + et.removeEventListener('test', handler); + et.dispatchEvent(new Event('test')); + assert_equals(invoked_count, 0, "The handler should have been removed"); +}, "Once listener should be added / removed like normal listeners"); + +test(function() { + const et = new EventTarget(); + + var invoked_count = 0; + + for (let n = 4; n > 0; n--) { + et.addEventListener('test', (e) => { + invoked_count++; + e.stopImmediatePropagation(); + }, {once: true}); + } + + for (let n = 4; n > 0; n--) { + et.dispatchEvent(new Event('test')); + } + + assert_equals(invoked_count, 4, "The listeners should be invoked"); +}, "Multiple once listeners should be invoked even if the stopImmediatePropagation is set"); diff --git a/test/fixtures/wpt/dom/events/AddEventListenerOptions-passive.any.js b/test/fixtures/wpt/dom/events/AddEventListenerOptions-passive.any.js new file mode 100644 index 00000000000000..8e59cf5b379f2e --- /dev/null +++ b/test/fixtures/wpt/dom/events/AddEventListenerOptions-passive.any.js @@ -0,0 +1,134 @@ +// META: title=AddEventListenerOptions.passive + +test(function() { + var supportsPassive = false; + var query_options = { + get passive() { + supportsPassive = true; + return false; + }, + get dummy() { + assert_unreached("dummy value getter invoked"); + return false; + } + }; + + const et = new EventTarget(); + et.addEventListener('test_event', null, query_options); + assert_true(supportsPassive, "addEventListener doesn't support the passive option"); + + supportsPassive = false; + et.removeEventListener('test_event', null, query_options); + assert_false(supportsPassive, "removeEventListener supports the passive option when it should not"); +}, "Supports passive option on addEventListener only"); + +function testPassiveValue(optionsValue, expectedDefaultPrevented, existingEventTarget) { + var defaultPrevented = undefined; + var handler = function handler(e) { + assert_false(e.defaultPrevented, "Event prematurely marked defaultPrevented"); + e.preventDefault(); + defaultPrevented = e.defaultPrevented; + } + const et = existingEventTarget || new EventTarget(); + et.addEventListener('test', handler, optionsValue); + var uncanceled = et.dispatchEvent(new Event('test', {bubbles: true, cancelable: true})); + + assert_equals(defaultPrevented, expectedDefaultPrevented, "Incorrect defaultPrevented for options: " + JSON.stringify(optionsValue)); + assert_equals(uncanceled, !expectedDefaultPrevented, "Incorrect return value from dispatchEvent"); + + et.removeEventListener('test', handler, optionsValue); +} + +test(function() { + testPassiveValue(undefined, true); + testPassiveValue({}, true); + testPassiveValue({passive: false}, true); + testPassiveValue({passive: true}, false); + testPassiveValue({passive: 0}, true); + testPassiveValue({passive: 1}, false); +}, "preventDefault should be ignored if-and-only-if the passive option is true"); + +function testPassiveValueOnReturnValue(test, optionsValue, expectedDefaultPrevented) { + var defaultPrevented = undefined; + var handler = test.step_func(e => { + assert_false(e.defaultPrevented, "Event prematurely marked defaultPrevented"); + e.returnValue = false; + defaultPrevented = e.defaultPrevented; + }); + const et = new EventTarget(); + et.addEventListener('test', handler, optionsValue); + var uncanceled = et.dispatchEvent(new Event('test', {bubbles: true, cancelable: true})); + + assert_equals(defaultPrevented, expectedDefaultPrevented, "Incorrect defaultPrevented for options: " + JSON.stringify(optionsValue)); + assert_equals(uncanceled, !expectedDefaultPrevented, "Incorrect return value from dispatchEvent"); + + et.removeEventListener('test', handler, optionsValue); +} + +async_test(t => { + testPassiveValueOnReturnValue(t, undefined, true); + testPassiveValueOnReturnValue(t, {}, true); + testPassiveValueOnReturnValue(t, {passive: false}, true); + testPassiveValueOnReturnValue(t, {passive: true}, false); + testPassiveValueOnReturnValue(t, {passive: 0}, true); + testPassiveValueOnReturnValue(t, {passive: 1}, false); + t.done(); +}, "returnValue should be ignored if-and-only-if the passive option is true"); + +function testPassiveWithOtherHandlers(optionsValue, expectedDefaultPrevented) { + var handlerInvoked1 = false; + var dummyHandler1 = function() { + handlerInvoked1 = true; + }; + var handlerInvoked2 = false; + var dummyHandler2 = function() { + handlerInvoked2 = true; + }; + + const et = new EventTarget(); + et.addEventListener('test', dummyHandler1, {passive:true}); + et.addEventListener('test', dummyHandler2); + + testPassiveValue(optionsValue, expectedDefaultPrevented, et); + + assert_true(handlerInvoked1, "Extra passive handler not invoked"); + assert_true(handlerInvoked2, "Extra non-passive handler not invoked"); + + et.removeEventListener('test', dummyHandler1); + et.removeEventListener('test', dummyHandler2); +} + +test(function() { + testPassiveWithOtherHandlers({}, true); + testPassiveWithOtherHandlers({passive: false}, true); + testPassiveWithOtherHandlers({passive: true}, false); +}, "passive behavior of one listener should be unaffected by the presence of other listeners"); + +function testOptionEquivalence(optionValue1, optionValue2, expectedEquality) { + var invocationCount = 0; + var handler = function handler(e) { + invocationCount++; + } + const et = new EventTarget(); + et.addEventListener('test', handler, optionValue1); + et.addEventListener('test', handler, optionValue2); + et.dispatchEvent(new Event('test', {bubbles: true})); + assert_equals(invocationCount, expectedEquality ? 1 : 2, "equivalence of options " + + JSON.stringify(optionValue1) + " and " + JSON.stringify(optionValue2)); + et.removeEventListener('test', handler, optionValue1); + et.removeEventListener('test', handler, optionValue2); +} + +test(function() { + // Sanity check options that should be treated as distinct handlers + testOptionEquivalence({capture:true}, {capture:false, passive:false}, false); + testOptionEquivalence({capture:true}, {passive:true}, false); + + // Option values that should be treated as equivalent + testOptionEquivalence({}, {passive:false}, true); + testOptionEquivalence({passive:true}, {passive:false}, true); + testOptionEquivalence(undefined, {passive:true}, true); + testOptionEquivalence({capture: true, passive: false}, {capture: true, passive: true}, true); + +}, "Equivalence of option values"); + diff --git a/test/fixtures/wpt/dom/events/AddEventListenerOptions-signal.any.js b/test/fixtures/wpt/dom/events/AddEventListenerOptions-signal.any.js new file mode 100644 index 00000000000000..e6a34261594bca --- /dev/null +++ b/test/fixtures/wpt/dom/events/AddEventListenerOptions-signal.any.js @@ -0,0 +1,143 @@ +'use strict'; + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('test', handler, { signal: controller.signal }); + et.dispatchEvent(new Event('test')); + assert_equals(count, 1, "Adding a signal still adds a listener"); + et.dispatchEvent(new Event('test')); + assert_equals(count, 2, "The listener was not added with the once flag"); + controller.abort(); + et.dispatchEvent(new Event('test')); + assert_equals(count, 2, "Aborting on the controller removes the listener"); + et.addEventListener('test', handler, { signal: controller.signal }); + et.dispatchEvent(new Event('test')); + assert_equals(count, 2, "Passing an aborted signal never adds the handler"); +}, "Passing an AbortSignal to addEventListener options should allow removing a listener"); + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('test', handler, { signal: controller.signal }); + et.removeEventListener('test', handler); + et.dispatchEvent(new Event('test')); + assert_equals(count, 0, "The listener was still removed"); +}, "Passing an AbortSignal to addEventListener does not prevent removeEventListener"); + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('test', handler, { signal: controller.signal, once: true }); + controller.abort(); + et.dispatchEvent(new Event('test')); + assert_equals(count, 0, "The listener was still removed"); +}, "Passing an AbortSignal to addEventListener works with the once flag"); + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('test', handler, { signal: controller.signal, once: true }); + et.removeEventListener('test', handler); + et.dispatchEvent(new Event('test')); + assert_equals(count, 0, "The listener was still removed"); +}, "Removing a once listener works with a passed signal"); + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('first', handler, { signal: controller.signal, once: true }); + et.addEventListener('second', handler, { signal: controller.signal, once: true }); + controller.abort(); + et.dispatchEvent(new Event('first')); + et.dispatchEvent(new Event('second')); + assert_equals(count, 0, "The listener was still removed"); +}, "Passing an AbortSignal to multiple listeners"); + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('test', handler, { signal: controller.signal, capture: true }); + controller.abort(); + et.dispatchEvent(new Event('test')); + assert_equals(count, 0, "The listener was still removed"); +}, "Passing an AbortSignal to addEventListener works with the capture flag"); + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('test', () => { + controller.abort(); + }, { signal: controller.signal }); + et.addEventListener('test', handler, { signal: controller.signal }); + et.dispatchEvent(new Event('test')); + assert_equals(count, 0, "The listener was still removed"); +}, "Aborting from a listener does not call future listeners"); + +test(function() { + let count = 0; + function handler() { + count++; + } + const et = new EventTarget(); + const controller = new AbortController(); + et.addEventListener('test', () => { + et.addEventListener('test', handler, { signal: controller.signal }); + controller.abort(); + }, { signal: controller.signal }); + et.dispatchEvent(new Event('test')); + assert_equals(count, 0, "The listener was still removed"); +}, "Adding then aborting a listener in another listener does not call it"); + +test(function() { + const et = new EventTarget(); + const ac = new AbortController(); + let count = 0; + et.addEventListener('foo', () => { + et.addEventListener('foo', () => { + count++; + if (count > 5) ac.abort(); + et.dispatchEvent(new Event('foo')); + }, { signal: ac.signal }); + et.dispatchEvent(new Event('foo')); + }, { once: true }); + et.dispatchEvent(new Event('foo')); +}, "Aborting from a nested listener should remove it"); + +test(function() { + const et = new EventTarget(); + assert_throws_js(TypeError, () => { et.addEventListener("foo", () => {}, { signal: null }); }); +}, "Passing null as the signal should throw"); + +test(function() { + const et = new EventTarget(); + assert_throws_js(TypeError, () => { et.addEventListener("foo", null, { signal: null }); }); +}, "Passing null as the signal should throw (listener is also null)"); diff --git a/test/fixtures/wpt/dom/events/CustomEvent.html b/test/fixtures/wpt/dom/events/CustomEvent.html new file mode 100644 index 00000000000000..87050943f9bffa --- /dev/null +++ b/test/fixtures/wpt/dom/events/CustomEvent.html @@ -0,0 +1,35 @@ + +CustomEvent + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-cancelBubble.html b/test/fixtures/wpt/dom/events/Event-cancelBubble.html new file mode 100644 index 00000000000000..d8d2d7239d025f --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-cancelBubble.html @@ -0,0 +1,132 @@ + + + + + Event.cancelBubble + + + + + + + +
+
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/Event-constants.html b/test/fixtures/wpt/dom/events/Event-constants.html new file mode 100644 index 00000000000000..635e9894d9a3a4 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-constants.html @@ -0,0 +1,23 @@ + +Event constants + + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-constructors.any.js b/test/fixtures/wpt/dom/events/Event-constructors.any.js new file mode 100644 index 00000000000000..aced2f3c2cda61 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-constructors.any.js @@ -0,0 +1,114 @@ +// META: title=Event constructors + +test(function() { + assert_throws_js(TypeError, function() { + new Event() + }) +}) +test(function() { + var test_error = { name: "test" } + assert_throws_exactly(test_error, function() { + new Event({ toString: function() { throw test_error; } }) + }) +}) +test(function() { + var ev = new Event("") + assert_equals(ev.type, "") + assert_equals(ev.target, null) + assert_equals(ev.srcElement, null) + assert_equals(ev.currentTarget, null) + assert_equals(ev.eventPhase, Event.NONE) + assert_equals(ev.bubbles, false) + assert_equals(ev.cancelable, false) + assert_equals(ev.defaultPrevented, false) + assert_equals(ev.returnValue, true) + assert_equals(ev.isTrusted, false) + assert_true(ev.timeStamp > 0) + assert_true("initEvent" in ev) +}) +test(function() { + var ev = new Event("test") + assert_equals(ev.type, "test") + assert_equals(ev.target, null) + assert_equals(ev.srcElement, null) + assert_equals(ev.currentTarget, null) + assert_equals(ev.eventPhase, Event.NONE) + assert_equals(ev.bubbles, false) + assert_equals(ev.cancelable, false) + assert_equals(ev.defaultPrevented, false) + assert_equals(ev.returnValue, true) + assert_equals(ev.isTrusted, false) + assert_true(ev.timeStamp > 0) + assert_true("initEvent" in ev) +}) +test(function() { + assert_throws_js(TypeError, function() { Event("test") }, + 'Calling Event constructor without "new" must throw'); +}) +test(function() { + var ev = new Event("I am an event", { bubbles: true, cancelable: false}) + assert_equals(ev.type, "I am an event") + assert_equals(ev.bubbles, true) + assert_equals(ev.cancelable, false) +}) +test(function() { + var ev = new Event("@", { bubblesIGNORED: true, cancelable: true}) + assert_equals(ev.type, "@") + assert_equals(ev.bubbles, false) + assert_equals(ev.cancelable, true) +}) +test(function() { + var ev = new Event("@", { "bubbles\0IGNORED": true, cancelable: true}) + assert_equals(ev.type, "@") + assert_equals(ev.bubbles, false) + assert_equals(ev.cancelable, true) +}) +test(function() { + var ev = new Event("Xx", { cancelable: true}) + assert_equals(ev.type, "Xx") + assert_equals(ev.bubbles, false) + assert_equals(ev.cancelable, true) +}) +test(function() { + var ev = new Event("Xx", {}) + assert_equals(ev.type, "Xx") + assert_equals(ev.bubbles, false) + assert_equals(ev.cancelable, false) +}) +test(function() { + var ev = new Event("Xx", {bubbles: true, cancelable: false, sweet: "x"}) + assert_equals(ev.type, "Xx") + assert_equals(ev.bubbles, true) + assert_equals(ev.cancelable, false) + assert_equals(ev.sweet, undefined) +}) +test(function() { + var called = [] + var ev = new Event("Xx", { + get cancelable() { + called.push("cancelable") + return false + }, + get bubbles() { + called.push("bubbles") + return true; + }, + get sweet() { + called.push("sweet") + return "x" + } + }) + assert_array_equals(called, ["bubbles", "cancelable"]) + assert_equals(ev.type, "Xx") + assert_equals(ev.bubbles, true) + assert_equals(ev.cancelable, false) + assert_equals(ev.sweet, undefined) +}) +test(function() { + var ev = new CustomEvent("$", {detail: 54, sweet: "x", sweet2: "x", cancelable:true}) + assert_equals(ev.type, "$") + assert_equals(ev.bubbles, false) + assert_equals(ev.cancelable, true) + assert_equals(ev.sweet, undefined) + assert_equals(ev.detail, 54) +}) diff --git a/test/fixtures/wpt/dom/events/Event-defaultPrevented-after-dispatch.html b/test/fixtures/wpt/dom/events/Event-defaultPrevented-after-dispatch.html new file mode 100644 index 00000000000000..8fef005eb57772 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-defaultPrevented-after-dispatch.html @@ -0,0 +1,44 @@ + + +Event.defaultPrevented is not reset after dispatchEvent() + + + + +
+ + diff --git a/test/fixtures/wpt/dom/events/Event-defaultPrevented.html b/test/fixtures/wpt/dom/events/Event-defaultPrevented.html new file mode 100644 index 00000000000000..2548fa3e064bb1 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-defaultPrevented.html @@ -0,0 +1,55 @@ + +Event.defaultPrevented + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-bubble-canceled.html b/test/fixtures/wpt/dom/events/Event-dispatch-bubble-canceled.html new file mode 100644 index 00000000000000..20f398f66f9bcf --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-bubble-canceled.html @@ -0,0 +1,59 @@ + + + +Setting cancelBubble=true prior to dispatchEvent() + + + + +
+ + + + + + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-bubbles-false.html b/test/fixtures/wpt/dom/events/Event-dispatch-bubbles-false.html new file mode 100644 index 00000000000000..0f43cb0275662d --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-bubbles-false.html @@ -0,0 +1,98 @@ + + + Event.bubbles attribute is set to false + + + + +
+ + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-bubbles-true.html b/test/fixtures/wpt/dom/events/Event-dispatch-bubbles-true.html new file mode 100644 index 00000000000000..b23605a1ebc318 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-bubbles-true.html @@ -0,0 +1,108 @@ + + + Event.bubbles attribute is set to false + + + + +
+ + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-click.html b/test/fixtures/wpt/dom/events/Event-dispatch-click.html new file mode 100644 index 00000000000000..010305775df7e9 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-click.html @@ -0,0 +1,369 @@ + +Synthetic click event "magic" + + +
+ + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-click.tentative.html b/test/fixtures/wpt/dom/events/Event-dispatch-click.tentative.html new file mode 100644 index 00000000000000..cfdae55ef2ab48 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-click.tentative.html @@ -0,0 +1,78 @@ + +Clicks on input element + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-detached-click.html b/test/fixtures/wpt/dom/events/Event-dispatch-detached-click.html new file mode 100644 index 00000000000000..76ea3d78ba74e0 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-detached-click.html @@ -0,0 +1,20 @@ + +Click event on an element not in the document + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-detached-input-and-change.html b/test/fixtures/wpt/dom/events/Event-dispatch-detached-input-and-change.html new file mode 100644 index 00000000000000..a53ae71ac2a08d --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-detached-input-and-change.html @@ -0,0 +1,190 @@ + + + +input and change events for detached checkbox and radio elements + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-handlers-changed.html b/test/fixtures/wpt/dom/events/Event-dispatch-handlers-changed.html new file mode 100644 index 00000000000000..24e6fd70cb4ec4 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-handlers-changed.html @@ -0,0 +1,91 @@ + + + Dispatch additional events inside an event listener + + + +
+ + + + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-listener-order.window.js b/test/fixtures/wpt/dom/events/Event-dispatch-listener-order.window.js new file mode 100644 index 00000000000000..a01a472872b927 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-listener-order.window.js @@ -0,0 +1,20 @@ +test(t => { + const hostParent = document.createElement("section"), + host = hostParent.appendChild(document.createElement("div")), + shadowRoot = host.attachShadow({ mode: "closed" }), + targetParent = shadowRoot.appendChild(document.createElement("p")), + target = targetParent.appendChild(document.createElement("span")), + path = [hostParent, host, shadowRoot, targetParent, target], + expected = [], + result = []; + path.forEach((node, index) => { + expected.splice(index, 0, "capturing " + node.nodeName); + expected.splice(index + 1, 0, "bubbling " + node.nodeName); + }); + path.forEach(node => { + node.addEventListener("test", () => { result.push("bubbling " + node.nodeName) }); + node.addEventListener("test", () => { result.push("capturing " + node.nodeName) }, true); + }); + target.dispatchEvent(new CustomEvent('test', { detail: {}, bubbles: true, composed: true })); + assert_array_equals(result, expected); +}); diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-multiple-cancelBubble.html b/test/fixtures/wpt/dom/events/Event-dispatch-multiple-cancelBubble.html new file mode 100644 index 00000000000000..2873fd7794b782 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-multiple-cancelBubble.html @@ -0,0 +1,51 @@ + + + +Multiple dispatchEvent() and cancelBubble + + + + +
+ + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-multiple-stopPropagation.html b/test/fixtures/wpt/dom/events/Event-dispatch-multiple-stopPropagation.html new file mode 100644 index 00000000000000..72644bd861ea1d --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-multiple-stopPropagation.html @@ -0,0 +1,51 @@ + + + + Multiple dispatchEvent() and stopPropagation() + + + + +
+ + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-omitted-capture.html b/test/fixtures/wpt/dom/events/Event-dispatch-omitted-capture.html new file mode 100644 index 00000000000000..77074d9a3ec2b3 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-omitted-capture.html @@ -0,0 +1,70 @@ + + +EventTarget.addEventListener: capture argument omitted + + + + +
+ + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-on-disabled-elements.html b/test/fixtures/wpt/dom/events/Event-dispatch-on-disabled-elements.html new file mode 100644 index 00000000000000..361006a7240496 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-on-disabled-elements.html @@ -0,0 +1,251 @@ + + + +Events must dispatch on disabled elements + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-order-at-target.html b/test/fixtures/wpt/dom/events/Event-dispatch-order-at-target.html new file mode 100644 index 00000000000000..79673c32564cbe --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-order-at-target.html @@ -0,0 +1,31 @@ + + +Listeners are invoked in correct order (AT_TARGET phase) + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-order.html b/test/fixtures/wpt/dom/events/Event-dispatch-order.html new file mode 100644 index 00000000000000..ca94434595c6ee --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-order.html @@ -0,0 +1,26 @@ + +Event phases order + + +
+ +
+
+
diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-other-document.html b/test/fixtures/wpt/dom/events/Event-dispatch-other-document.html new file mode 100644 index 00000000000000..689b48087a0327 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-other-document.html @@ -0,0 +1,23 @@ + +Custom event on an element in another document + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-propagation-stopped.html b/test/fixtures/wpt/dom/events/Event-dispatch-propagation-stopped.html new file mode 100644 index 00000000000000..889f8cfe11489d --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-propagation-stopped.html @@ -0,0 +1,59 @@ + + + + Calling stopPropagation() prior to dispatchEvent() + + + + +
+ + + + + + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-redispatch.html b/test/fixtures/wpt/dom/events/Event-dispatch-redispatch.html new file mode 100644 index 00000000000000..cf861ca17744c2 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-redispatch.html @@ -0,0 +1,124 @@ + + +EventTarget#dispatchEvent(): redispatching a native event + + + + + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-reenter.html b/test/fixtures/wpt/dom/events/Event-dispatch-reenter.html new file mode 100644 index 00000000000000..71f8517bdd9dbe --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-reenter.html @@ -0,0 +1,66 @@ + + + Dispatch additional events inside an event listener + + +
+ + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-target-moved.html b/test/fixtures/wpt/dom/events/Event-dispatch-target-moved.html new file mode 100644 index 00000000000000..facb2c7b9568f6 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-target-moved.html @@ -0,0 +1,73 @@ + + + Determined event propagation path - target moved + + + +
+ + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-target-removed.html b/test/fixtures/wpt/dom/events/Event-dispatch-target-removed.html new file mode 100644 index 00000000000000..531799c3ade6b6 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-target-removed.html @@ -0,0 +1,72 @@ + + +Determined event propagation path - target removed + + + +
+ + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-dispatch-throwing.html b/test/fixtures/wpt/dom/events/Event-dispatch-throwing.html new file mode 100644 index 00000000000000..7d1c0d94a0845b --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-dispatch-throwing.html @@ -0,0 +1,51 @@ + + +Throwing in event listeners + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-init-while-dispatching.html b/test/fixtures/wpt/dom/events/Event-init-while-dispatching.html new file mode 100644 index 00000000000000..2aa1f6701c4c4b --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-init-while-dispatching.html @@ -0,0 +1,83 @@ + + +Re-initializing events while dispatching them + + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-initEvent.html b/test/fixtures/wpt/dom/events/Event-initEvent.html new file mode 100644 index 00000000000000..ad1018d4daf7ba --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-initEvent.html @@ -0,0 +1,136 @@ + +Event.initEvent + + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-isTrusted.any.js b/test/fixtures/wpt/dom/events/Event-isTrusted.any.js new file mode 100644 index 00000000000000..00bcecd0ed67a0 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-isTrusted.any.js @@ -0,0 +1,11 @@ +test(function() { + var desc1 = Object.getOwnPropertyDescriptor(new Event("x"), "isTrusted"); + assert_not_equals(desc1, undefined); + assert_equals(typeof desc1.get, "function"); + + var desc2 = Object.getOwnPropertyDescriptor(new Event("x"), "isTrusted"); + assert_not_equals(desc2, undefined); + assert_equals(typeof desc2.get, "function"); + + assert_equals(desc1.get, desc2.get); +}); diff --git a/test/fixtures/wpt/dom/events/Event-propagation.html b/test/fixtures/wpt/dom/events/Event-propagation.html new file mode 100644 index 00000000000000..33989eb4bf9526 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-propagation.html @@ -0,0 +1,48 @@ + +Event propagation tests + +
+ + + diff --git a/test/fixtures/wpt/dom/events/Event-returnValue.html b/test/fixtures/wpt/dom/events/Event-returnValue.html new file mode 100644 index 00000000000000..08df2d41416ffc --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-returnValue.html @@ -0,0 +1,64 @@ + + + + + Event.returnValue + + + + + + + +
+ + + diff --git a/test/fixtures/wpt/dom/events/Event-stopImmediatePropagation.html b/test/fixtures/wpt/dom/events/Event-stopImmediatePropagation.html new file mode 100644 index 00000000000000..b75732257a89dd --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-stopImmediatePropagation.html @@ -0,0 +1,34 @@ + + +Event's stopImmediatePropagation + + + + + + +
+ + diff --git a/test/fixtures/wpt/dom/events/Event-stopPropagation-cancel-bubbling.html b/test/fixtures/wpt/dom/events/Event-stopPropagation-cancel-bubbling.html new file mode 100644 index 00000000000000..5c2c49f33826a9 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-stopPropagation-cancel-bubbling.html @@ -0,0 +1,20 @@ + + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-subclasses-constructors.html b/test/fixtures/wpt/dom/events/Event-subclasses-constructors.html new file mode 100644 index 00000000000000..08a5ded011635c --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-subclasses-constructors.html @@ -0,0 +1,179 @@ + + +Event constructors + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-timestamp-cross-realm-getter.html b/test/fixtures/wpt/dom/events/Event-timestamp-cross-realm-getter.html new file mode 100644 index 00000000000000..45823de26b27f9 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-timestamp-cross-realm-getter.html @@ -0,0 +1,27 @@ + + +event.timeStamp is initialized using event's relevant global object + + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.html b/test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.html new file mode 100644 index 00000000000000..a049fef64b4c7d --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.html @@ -0,0 +1,16 @@ + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.https.html b/test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.https.html new file mode 100644 index 00000000000000..70f974294796b5 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-timestamp-high-resolution.https.html @@ -0,0 +1,16 @@ + + + + + diff --git a/test/fixtures/wpt/dom/events/Event-timestamp-safe-resolution.html b/test/fixtures/wpt/dom/events/Event-timestamp-safe-resolution.html new file mode 100644 index 00000000000000..24f2dec93c5ae8 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-timestamp-safe-resolution.html @@ -0,0 +1,49 @@ + + + + \ No newline at end of file diff --git a/test/fixtures/wpt/dom/events/Event-type-empty.html b/test/fixtures/wpt/dom/events/Event-type-empty.html new file mode 100644 index 00000000000000..225b85a613a655 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-type-empty.html @@ -0,0 +1,35 @@ + +Event.type set to the empty string + + + + +
+ diff --git a/test/fixtures/wpt/dom/events/Event-type.html b/test/fixtures/wpt/dom/events/Event-type.html new file mode 100644 index 00000000000000..22792f5c6c7883 --- /dev/null +++ b/test/fixtures/wpt/dom/events/Event-type.html @@ -0,0 +1,22 @@ + +Event.type + + + + +
+ diff --git a/test/fixtures/wpt/dom/events/EventListener-addEventListener.sub.window.js b/test/fixtures/wpt/dom/events/EventListener-addEventListener.sub.window.js new file mode 100644 index 00000000000000..b44bc332859da5 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-addEventListener.sub.window.js @@ -0,0 +1,9 @@ +async_test(function(t) { + let crossOriginFrame = document.createElement('iframe'); + crossOriginFrame.src = 'https://{{hosts[alt][]}}:{{ports[https][0]}}/common/blank.html'; + document.body.appendChild(crossOriginFrame); + crossOriginFrame.addEventListener('load', t.step_func_done(function() { + let crossOriginWindow = crossOriginFrame.contentWindow; + window.addEventListener('click', crossOriginWindow); + })); +}, "EventListener.addEventListener doesn't throw when a cross origin object is passed in."); diff --git a/test/fixtures/wpt/dom/events/EventListener-handleEvent-cross-realm.html b/test/fixtures/wpt/dom/events/EventListener-handleEvent-cross-realm.html new file mode 100644 index 00000000000000..663d04213f82bb --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-handleEvent-cross-realm.html @@ -0,0 +1,75 @@ + + +Cross-realm EventListener throws TypeError of its associated Realm + + + + + + + diff --git a/test/fixtures/wpt/dom/events/EventListener-handleEvent.html b/test/fixtures/wpt/dom/events/EventListener-handleEvent.html new file mode 100644 index 00000000000000..06bc1f6e2ab267 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-handleEvent.html @@ -0,0 +1,102 @@ + + +EventListener::handleEvent() + + + +
+ diff --git a/test/fixtures/wpt/dom/events/EventListener-incumbent-global-1.sub.html b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-1.sub.html new file mode 100644 index 00000000000000..9d941385cbc483 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-1.sub.html @@ -0,0 +1,20 @@ + + + + + + + diff --git a/test/fixtures/wpt/dom/events/EventListener-incumbent-global-2.sub.html b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-2.sub.html new file mode 100644 index 00000000000000..4433c098d75c58 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-2.sub.html @@ -0,0 +1,20 @@ + + + + + + + diff --git a/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-1.sub.html b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-1.sub.html new file mode 100644 index 00000000000000..25487cc5e0bcb1 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-1.sub.html @@ -0,0 +1,13 @@ + + + diff --git a/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-2.sub.html b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-2.sub.html new file mode 100644 index 00000000000000..9c7235e2ad4358 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subframe-2.sub.html @@ -0,0 +1,13 @@ + + + diff --git a/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subsubframe.sub.html b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subsubframe.sub.html new file mode 100644 index 00000000000000..dd683f6f65f89f --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-incumbent-global-subsubframe.sub.html @@ -0,0 +1,20 @@ + + diff --git a/test/fixtures/wpt/dom/events/EventListener-invoke-legacy.html b/test/fixtures/wpt/dom/events/EventListener-invoke-legacy.html new file mode 100644 index 00000000000000..a01afcd8d1985c --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListener-invoke-legacy.html @@ -0,0 +1,66 @@ + + +Invoke legacy event listener + + + +
+ diff --git a/test/fixtures/wpt/dom/events/EventListenerOptions-capture.html b/test/fixtures/wpt/dom/events/EventListenerOptions-capture.html new file mode 100644 index 00000000000000..f72cf3ca5463f1 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventListenerOptions-capture.html @@ -0,0 +1,98 @@ + + +EventListenerOptions.capture + + + + +
+ + diff --git a/test/fixtures/wpt/dom/events/EventTarget-add-listener-platform-object.html b/test/fixtures/wpt/dom/events/EventTarget-add-listener-platform-object.html new file mode 100644 index 00000000000000..d5565c22b3d5af --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-add-listener-platform-object.html @@ -0,0 +1,32 @@ + + +addEventListener with a platform object + + + +Click me! + diff --git a/test/fixtures/wpt/dom/events/EventTarget-add-remove-listener.any.js b/test/fixtures/wpt/dom/events/EventTarget-add-remove-listener.any.js new file mode 100644 index 00000000000000..b1d7ffb3e07fbe --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-add-remove-listener.any.js @@ -0,0 +1,21 @@ +// META: title=EventTarget's addEventListener + removeEventListener + +"use strict"; + +function listener(evt) { + evt.preventDefault(); + return false; +} + +test(() => { + const et = new EventTarget(); + et.addEventListener("x", listener, false); + let event = new Event("x", { cancelable: true }); + let ret = et.dispatchEvent(event); + assert_false(ret); + + et.removeEventListener("x", listener); + event = new Event("x", { cancelable: true }); + ret = et.dispatchEvent(event); + assert_true(ret); +}, "Removing an event listener without explicit capture arg should succeed"); diff --git a/test/fixtures/wpt/dom/events/EventTarget-addEventListener.any.js b/test/fixtures/wpt/dom/events/EventTarget-addEventListener.any.js new file mode 100644 index 00000000000000..e22da4aff850a2 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-addEventListener.any.js @@ -0,0 +1,9 @@ +// META: title=EventTarget.addEventListener + +// Step 1. +test(function() { + const et = new EventTarget(); + assert_equals(et.addEventListener("x", null, false), undefined); + assert_equals(et.addEventListener("x", null, true), undefined); + assert_equals(et.addEventListener("x", null), undefined); +}, "Adding a null event listener should succeed"); diff --git a/test/fixtures/wpt/dom/events/EventTarget-constructible.any.js b/test/fixtures/wpt/dom/events/EventTarget-constructible.any.js new file mode 100644 index 00000000000000..b0e7614e625b3d --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-constructible.any.js @@ -0,0 +1,62 @@ +"use strict"; + +test(() => { + const target = new EventTarget(); + const event = new Event("foo", { bubbles: true, cancelable: false }); + let callCount = 0; + + function listener(e) { + assert_equals(e, event); + ++callCount; + } + + target.addEventListener("foo", listener); + + target.dispatchEvent(event); + assert_equals(callCount, 1); + + target.dispatchEvent(event); + assert_equals(callCount, 2); + + target.removeEventListener("foo", listener); + target.dispatchEvent(event); + assert_equals(callCount, 2); +}, "A constructed EventTarget can be used as expected"); + +test(() => { + class NicerEventTarget extends EventTarget { + on(...args) { + this.addEventListener(...args); + } + + off(...args) { + this.removeEventListener(...args); + } + + dispatch(type, detail) { + this.dispatchEvent(new CustomEvent(type, { detail })); + } + } + + const target = new NicerEventTarget(); + const event = new Event("foo", { bubbles: true, cancelable: false }); + const detail = "some data"; + let callCount = 0; + + function listener(e) { + assert_equals(e.detail, detail); + ++callCount; + } + + target.on("foo", listener); + + target.dispatch("foo", detail); + assert_equals(callCount, 1); + + target.dispatch("foo", detail); + assert_equals(callCount, 2); + + target.off("foo", listener); + target.dispatch("foo", detail); + assert_equals(callCount, 2); +}, "EventTarget can be subclassed"); diff --git a/test/fixtures/wpt/dom/events/EventTarget-dispatchEvent-returnvalue.html b/test/fixtures/wpt/dom/events/EventTarget-dispatchEvent-returnvalue.html new file mode 100644 index 00000000000000..c4466e0d6cdada --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-dispatchEvent-returnvalue.html @@ -0,0 +1,71 @@ + + +EventTarget.dispatchEvent: return value + + + + + + +
+ + + + + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/EventTarget-dispatchEvent.html b/test/fixtures/wpt/dom/events/EventTarget-dispatchEvent.html new file mode 100644 index 00000000000000..783561f5fb5943 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-dispatchEvent.html @@ -0,0 +1,104 @@ + + +EventTarget.dispatchEvent + + + + + + +
+ diff --git a/test/fixtures/wpt/dom/events/EventTarget-removeEventListener.any.js b/test/fixtures/wpt/dom/events/EventTarget-removeEventListener.any.js new file mode 100644 index 00000000000000..289dfcfbabde0f --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-removeEventListener.any.js @@ -0,0 +1,8 @@ +// META: title=EventTarget.removeEventListener + +// Step 1. +test(function() { + assert_equals(globalThis.removeEventListener("x", null, false), undefined); + assert_equals(globalThis.removeEventListener("x", null, true), undefined); + assert_equals(globalThis.removeEventListener("x", null), undefined); +}, "removing a null event listener should succeed"); diff --git a/test/fixtures/wpt/dom/events/EventTarget-this-of-listener.html b/test/fixtures/wpt/dom/events/EventTarget-this-of-listener.html new file mode 100644 index 00000000000000..506564c4133ce6 --- /dev/null +++ b/test/fixtures/wpt/dom/events/EventTarget-this-of-listener.html @@ -0,0 +1,182 @@ + + +EventTarget listeners this value + + + + + + diff --git a/test/fixtures/wpt/dom/events/KeyEvent-initKeyEvent.html b/test/fixtures/wpt/dom/events/KeyEvent-initKeyEvent.html new file mode 100644 index 00000000000000..3fffaba0143c78 --- /dev/null +++ b/test/fixtures/wpt/dom/events/KeyEvent-initKeyEvent.html @@ -0,0 +1,23 @@ + + +KeyEvent.initKeyEvent + + +
+ diff --git a/test/fixtures/wpt/dom/events/document-level-touchmove-event-listener-passive-by-default.tentative.html b/test/fixtures/wpt/dom/events/document-level-touchmove-event-listener-passive-by-default.tentative.html new file mode 100644 index 00000000000000..f3f0d58209fd8e --- /dev/null +++ b/test/fixtures/wpt/dom/events/document-level-touchmove-event-listener-passive-by-default.tentative.html @@ -0,0 +1,73 @@ + +Default passive document level touchmove event listener test + + + + + + + +
+
+ + + diff --git a/test/fixtures/wpt/dom/events/document-level-wheel-event-listener-passive-by-default.tentative.html b/test/fixtures/wpt/dom/events/document-level-wheel-event-listener-passive-by-default.tentative.html new file mode 100644 index 00000000000000..b7224835fa398b --- /dev/null +++ b/test/fixtures/wpt/dom/events/document-level-wheel-event-listener-passive-by-default.tentative.html @@ -0,0 +1,51 @@ + +Default passive document level wheel event listener manual test + + + + + + + +
This is a manual test since there is no way to synthesize wheel events. +Scroll by wheel in the middle of the page to run the test.
+ + diff --git a/test/fixtures/wpt/dom/events/event-disabled-dynamic.html b/test/fixtures/wpt/dom/events/event-disabled-dynamic.html new file mode 100644 index 00000000000000..3f995b02f1b421 --- /dev/null +++ b/test/fixtures/wpt/dom/events/event-disabled-dynamic.html @@ -0,0 +1,21 @@ + + +Test that disabled is honored immediately in presence of dynamic changes + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/event-global-extra.window.js b/test/fixtures/wpt/dom/events/event-global-extra.window.js new file mode 100644 index 00000000000000..0f14961c40a650 --- /dev/null +++ b/test/fixtures/wpt/dom/events/event-global-extra.window.js @@ -0,0 +1,90 @@ +const otherWindow = document.body.appendChild(document.createElement("iframe")).contentWindow; + +["EventTarget", "XMLHttpRequest"].forEach(constructorName => { + async_test(t => { + const eventTarget = new otherWindow[constructorName](); + eventTarget.addEventListener("hi", t.step_func_done(e => { + assert_equals(otherWindow.event, undefined); + assert_equals(e, window.event); + })); + eventTarget.dispatchEvent(new Event("hi")); + }, "window.event for constructors from another global: " + constructorName); +}); + +// XXX: It would be good to test a subclass of EventTarget once we sort out +// https://github.com/heycam/webidl/issues/540 + +async_test(t => { + const element = document.body.appendChild(otherWindow.document.createElement("meh")); + element.addEventListener("yo", t.step_func_done(e => { + assert_equals(e, window.event); + })); + element.dispatchEvent(new Event("yo")); +}, "window.event and element from another document"); + +async_test(t => { + const doc = otherWindow.document, + element = doc.body.appendChild(doc.createElement("meh")), + child = element.appendChild(doc.createElement("bleh")); + element.addEventListener("yoyo", t.step_func(e => { + document.body.appendChild(element); + assert_equals(element.ownerDocument, document); + assert_equals(window.event, e); + assert_equals(otherWindow.event, undefined); + }), true); + element.addEventListener("yoyo", t.step_func(e => { + assert_equals(element.ownerDocument, document); + assert_equals(window.event, e); + assert_equals(otherWindow.event, undefined); + }), true); + child.addEventListener("yoyo", t.step_func_done(e => { + assert_equals(child.ownerDocument, document); + assert_equals(window.event, e); + assert_equals(otherWindow.event, undefined); + })); + child.dispatchEvent(new Event("yoyo")); +}, "window.event and moving an element post-dispatch"); + +test(t => { + const host = document.createElement("div"), + shadow = host.attachShadow({ mode: "open" }), + child = shadow.appendChild(document.createElement("trala")), + furtherChild = child.appendChild(document.createElement("waddup")); + let counter = 0; + host.addEventListener("hi", t.step_func(e => { + assert_equals(window.event, e); + assert_equals(counter++, 3); + })); + child.addEventListener("hi", t.step_func(e => { + assert_equals(window.event, undefined); + assert_equals(counter++, 2); + })); + furtherChild.addEventListener("hi", t.step_func(e => { + host.appendChild(child); + assert_equals(window.event, undefined); + assert_equals(counter++, 0); + })); + furtherChild.addEventListener("hi", t.step_func(e => { + assert_equals(window.event, undefined); + assert_equals(counter++, 1); + })); + furtherChild.dispatchEvent(new Event("hi", { composed: true, bubbles: true })); + assert_equals(counter, 4); +}, "window.event should not be affected by nodes moving post-dispatch"); + +async_test(t => { + const frame = document.body.appendChild(document.createElement("iframe")); + frame.src = "resources/event-global-extra-frame.html"; + frame.onload = t.step_func_done((load_event) => { + const event = new Event("hi"); + document.addEventListener("hi", frame.contentWindow.listener); // listener intentionally not wrapped in t.step_func + document.addEventListener("hi", t.step_func(e => { + assert_equals(event, e); + assert_equals(window.event, e); + })); + document.dispatchEvent(event); + assert_equals(frameState.event, event); + assert_equals(frameState.windowEvent, event); + assert_equals(frameState.parentEvent, load_event); + }); +}, "Listener from a different global"); diff --git a/test/fixtures/wpt/dom/events/event-global-is-still-set-when-coercing-beforeunload-result.html b/test/fixtures/wpt/dom/events/event-global-is-still-set-when-coercing-beforeunload-result.html new file mode 100644 index 00000000000000..a64c8b6b8b6d5f --- /dev/null +++ b/test/fixtures/wpt/dom/events/event-global-is-still-set-when-coercing-beforeunload-result.html @@ -0,0 +1,23 @@ + + +window.event is still set when 'beforeunload' result is coerced to string + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/event-global-set-before-handleEvent-lookup.window.js b/test/fixtures/wpt/dom/events/event-global-set-before-handleEvent-lookup.window.js new file mode 100644 index 00000000000000..8f934bcea97fe1 --- /dev/null +++ b/test/fixtures/wpt/dom/events/event-global-set-before-handleEvent-lookup.window.js @@ -0,0 +1,19 @@ +// https://dom.spec.whatwg.org/#concept-event-listener-inner-invoke (steps 8.2 - 12) +// https://webidl.spec.whatwg.org/#call-a-user-objects-operation (step 10.1) + +test(() => { + const eventTarget = new EventTarget; + + let currentEvent; + eventTarget.addEventListener("foo", { + get handleEvent() { + currentEvent = window.event; + return () => {}; + } + }); + + const event = new Event("foo"); + eventTarget.dispatchEvent(event); + + assert_equals(currentEvent, event); +}, "window.event is set before 'handleEvent' lookup"); diff --git a/test/fixtures/wpt/dom/events/event-global.html b/test/fixtures/wpt/dom/events/event-global.html new file mode 100644 index 00000000000000..3e8d25ecb5dd9d --- /dev/null +++ b/test/fixtures/wpt/dom/events/event-global.html @@ -0,0 +1,117 @@ + +window.event tests + + + +
+ diff --git a/test/fixtures/wpt/dom/events/event-global.worker.js b/test/fixtures/wpt/dom/events/event-global.worker.js new file mode 100644 index 00000000000000..116cf32932bd8d --- /dev/null +++ b/test/fixtures/wpt/dom/events/event-global.worker.js @@ -0,0 +1,14 @@ +importScripts("/resources/testharness.js"); +test(t => { + let seen = false; + const event = new Event("hi"); + assert_equals(self.event, undefined); + self.addEventListener("hi", t.step_func(e => { + seen = true; + assert_equals(self.event, undefined); + assert_equals(e, event); + })); + self.dispatchEvent(event); + assert_true(seen); +}, "There's no self.event (that's why we call it window.event) in workers"); +done(); diff --git a/test/fixtures/wpt/dom/events/focus-event-document-move.html b/test/fixtures/wpt/dom/events/focus-event-document-move.html new file mode 100644 index 00000000000000..2943761ce132e3 --- /dev/null +++ b/test/fixtures/wpt/dom/events/focus-event-document-move.html @@ -0,0 +1,33 @@ + + + + + + + + + + + + +
Click me
+ + diff --git a/test/fixtures/wpt/dom/events/keypress-dispatch-crash.html b/test/fixtures/wpt/dom/events/keypress-dispatch-crash.html new file mode 100644 index 00000000000000..3207adbd8c8919 --- /dev/null +++ b/test/fixtures/wpt/dom/events/keypress-dispatch-crash.html @@ -0,0 +1,15 @@ + + + + + + + diff --git a/test/fixtures/wpt/dom/events/legacy-pre-activation-behavior.window.js b/test/fixtures/wpt/dom/events/legacy-pre-activation-behavior.window.js new file mode 100644 index 00000000000000..e9e84bfad1e6f7 --- /dev/null +++ b/test/fixtures/wpt/dom/events/legacy-pre-activation-behavior.window.js @@ -0,0 +1,10 @@ +test(t => { + const input = document.body.appendChild(document.createElement('input')); + input.type = "radio"; + t.add_cleanup(() => input.remove()); + const clickEvent = new MouseEvent('click', { button: 0, which: 1 }); + input.addEventListener('change', t.step_func(() => { + assert_equals(clickEvent.eventPhase, Event.NONE); + })); + input.dispatchEvent(clickEvent); +}, "Use NONE phase during legacy-pre-activation behavior"); diff --git a/test/fixtures/wpt/dom/events/relatedTarget.window.js b/test/fixtures/wpt/dom/events/relatedTarget.window.js new file mode 100644 index 00000000000000..ebc83ceb209a7c --- /dev/null +++ b/test/fixtures/wpt/dom/events/relatedTarget.window.js @@ -0,0 +1,81 @@ +// https://dom.spec.whatwg.org/#concept-event-dispatch + +const host = document.createElement("div"), + child = host.appendChild(document.createElement("p")), + shadow = host.attachShadow({ mode: "closed" }), + slot = shadow.appendChild(document.createElement("slot")); + +test(() => { + for (target of [shadow, slot]) { + for (relatedTarget of [new XMLHttpRequest(), self, host]) { + const event = new FocusEvent("demo", { relatedTarget: relatedTarget }); + target.dispatchEvent(event); + assert_equals(event.target, null); + assert_equals(event.relatedTarget, null); + } + } +}, "Reset if target pointed to a shadow tree"); + +test(() => { + for (relatedTarget of [shadow, slot]) { + for (target of [new XMLHttpRequest(), self, host]) { + const event = new FocusEvent("demo", { relatedTarget: relatedTarget }); + target.dispatchEvent(event); + assert_equals(event.target, target); + assert_equals(event.relatedTarget, host); + } + } +}, "Retarget a shadow-tree relatedTarget"); + +test(t => { + const shadowChild = shadow.appendChild(document.createElement("div")); + shadowChild.addEventListener("demo", t.step_func(() => document.body.appendChild(shadowChild))); + const event = new FocusEvent("demo", { relatedTarget: new XMLHttpRequest() }); + shadowChild.dispatchEvent(event); + assert_equals(shadowChild.parentNode, document.body); + assert_equals(event.target, null); + assert_equals(event.relatedTarget, null); + shadowChild.remove(); +}, "Reset if target pointed to a shadow tree pre-dispatch"); + +test(t => { + const shadowChild = shadow.appendChild(document.createElement("div")); + document.body.addEventListener("demo", t.step_func(() => document.body.appendChild(shadowChild))); + const event = new FocusEvent("demo", { relatedTarget: shadowChild }); + document.body.dispatchEvent(event); + assert_equals(shadowChild.parentNode, document.body); + assert_equals(event.target, document.body); + assert_equals(event.relatedTarget, host); + shadowChild.remove(); +}, "Retarget a shadow-tree relatedTarget, part 2"); + +test(t => { + const event = new FocusEvent("heya", { relatedTarget: shadow, cancelable: true }), + callback = t.unreached_func(); + host.addEventListener("heya", callback); + t.add_cleanup(() => host.removeEventListener("heya", callback)); + event.preventDefault(); + assert_true(event.defaultPrevented); + assert_false(host.dispatchEvent(event)); + assert_equals(event.target, null); + assert_equals(event.relatedTarget, null); + // Check that the dispatch flag is cleared + event.initEvent("x"); + assert_equals(event.type, "x"); +}, "Reset targets on early return"); + +test(t => { + const input = document.body.appendChild(document.createElement("input")), + event = new MouseEvent("click", { relatedTarget: shadow }); + let seen = false; + t.add_cleanup(() => input.remove()); + input.type = "checkbox"; + input.oninput = t.step_func(() => { + assert_equals(event.target, null); + assert_equals(event.relatedTarget, null); + assert_equals(event.composedPath().length, 0); + seen = true; + }); + assert_true(input.dispatchEvent(event)); + assert_true(seen); +}, "Reset targets before activation behavior"); diff --git a/test/fixtures/wpt/dom/events/replace-event-listener-null-browsing-context-crash.html b/test/fixtures/wpt/dom/events/replace-event-listener-null-browsing-context-crash.html new file mode 100644 index 00000000000000..f41955eedd39fb --- /dev/null +++ b/test/fixtures/wpt/dom/events/replace-event-listener-null-browsing-context-crash.html @@ -0,0 +1,16 @@ + +Event listeners: replace listener after moving between documents + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/resources/empty-document.html b/test/fixtures/wpt/dom/events/resources/empty-document.html new file mode 100644 index 00000000000000..b9cd130a07f77e --- /dev/null +++ b/test/fixtures/wpt/dom/events/resources/empty-document.html @@ -0,0 +1,3 @@ + + + diff --git a/test/fixtures/wpt/dom/events/resources/event-global-extra-frame.html b/test/fixtures/wpt/dom/events/resources/event-global-extra-frame.html new file mode 100644 index 00000000000000..241dda8b66f8c8 --- /dev/null +++ b/test/fixtures/wpt/dom/events/resources/event-global-extra-frame.html @@ -0,0 +1,9 @@ + diff --git a/test/fixtures/wpt/dom/events/resources/event-global-is-still-set-when-coercing-beforeunload-result-frame.html b/test/fixtures/wpt/dom/events/resources/event-global-is-still-set-when-coercing-beforeunload-result-frame.html new file mode 100644 index 00000000000000..5df4fa27936379 --- /dev/null +++ b/test/fixtures/wpt/dom/events/resources/event-global-is-still-set-when-coercing-beforeunload-result-frame.html @@ -0,0 +1,6 @@ + + + + diff --git a/test/fixtures/wpt/dom/events/resources/prefixed-animation-event-tests.js b/test/fixtures/wpt/dom/events/resources/prefixed-animation-event-tests.js new file mode 100644 index 00000000000000..021b6bb9dfdc42 --- /dev/null +++ b/test/fixtures/wpt/dom/events/resources/prefixed-animation-event-tests.js @@ -0,0 +1,366 @@ +'use strict' + +// Runs a set of tests for a given prefixed/unprefixed animation event (e.g. +// animationstart/webkitAnimationStart). +// +// The eventDetails object must have the following form: +// { +// isTransition: false, <-- can be omitted, default false +// unprefixedType: 'animationstart', +// prefixedType: 'webkitAnimationStart', +// animationCssStyle: '1ms', <-- must NOT include animation name or +// transition property +// } +function runAnimationEventTests(eventDetails) { + const { + isTransition, + unprefixedType, + prefixedType, + animationCssStyle + } = eventDetails; + + // Derive the DOM event handler names, e.g. onanimationstart. + const unprefixedHandler = `on${unprefixedType}`; + const prefixedHandler = `on${prefixedType.toLowerCase()}`; + + const style = document.createElement('style'); + document.head.appendChild(style); + if (isTransition) { + style.sheet.insertRule( + `.baseStyle { width: 100px; transition: width ${animationCssStyle}; }`); + style.sheet.insertRule('.transition { width: 200px !important; }'); + } else { + style.sheet.insertRule('@keyframes anim {}'); + } + + function triggerAnimation(div) { + if (isTransition) { + div.classList.add('transition'); + } else { + div.style.animation = `anim ${animationCssStyle}`; + } + } + + test(t => { + const div = createDiv(t); + + assert_equals(div[unprefixedHandler], null, + `${unprefixedHandler} should initially be null`); + assert_equals(div[prefixedHandler], null, + `${prefixedHandler} should initially be null`); + + // Setting one should not affect the other. + div[unprefixedHandler] = () => { }; + + assert_not_equals(div[unprefixedHandler], null, + `setting ${unprefixedHandler} should make it non-null`); + assert_equals(div[prefixedHandler], null, + `setting ${unprefixedHandler} should not affect ${prefixedHandler}`); + + div[prefixedHandler] = () => { }; + + assert_not_equals(div[prefixedHandler], null, + `setting ${prefixedHandler} should make it non-null`); + assert_not_equals(div[unprefixedHandler], div[prefixedHandler], + 'the setters should be different'); + }, `${unprefixedHandler} and ${prefixedHandler} are not aliases`); + + // The below tests primarily test the interactions of prefixed animation + // events in the algorithm for invoking events: + // https://dom.spec.whatwg.org/#concept-event-listener-invoke + + promise_test(async t => { + const div = createDiv(t); + + let receivedEventCount = 0; + addTestScopedEventHandler(t, div, prefixedHandler, () => { + receivedEventCount++; + }); + addTestScopedEventListener(t, div, prefixedType, () => { + receivedEventCount++; + }); + + // The HTML spec[0] specifies that the prefixed event handlers have an + // 'Event handler event type' of the appropriate prefixed event type. E.g. + // onwebkitanimationend creates a listener for the event type + // 'webkitAnimationEnd'. + // + // [0]: https://html.spec.whatwg.org/multipage/webappapis.html#event-handlers-on-elements,-document-objects,-and-window-objects + div.dispatchEvent(new AnimationEvent(prefixedType)); + assert_equals(receivedEventCount, 2, + 'prefixed listener and handler received event'); + }, `dispatchEvent of a ${prefixedType} event does trigger a ` + + `prefixed event handler or listener`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedEvent = false; + addTestScopedEventHandler(t, div, unprefixedHandler, () => { + receivedEvent = true; + }); + addTestScopedEventListener(t, div, unprefixedType, () => { + receivedEvent = true; + }); + + div.dispatchEvent(new AnimationEvent(prefixedType)); + assert_false(receivedEvent, + 'prefixed listener or handler received event'); + }, `dispatchEvent of a ${prefixedType} event does not trigger an ` + + `unprefixed event handler or listener`); + + + promise_test(async t => { + const div = createDiv(t); + + let receivedEvent = false; + addTestScopedEventHandler(t, div, prefixedHandler, () => { + receivedEvent = true; + }); + addTestScopedEventListener(t, div, prefixedType, () => { + receivedEvent = true; + }); + + // The rewrite rules from + // https://dom.spec.whatwg.org/#concept-event-listener-invoke step 8 do not + // apply because isTrusted will be false. + div.dispatchEvent(new AnimationEvent(unprefixedType)); + assert_false(receivedEvent, 'prefixed listener or handler received event'); + }, `dispatchEvent of an ${unprefixedType} event does not trigger a ` + + `prefixed event handler or listener`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedEvent = false; + addTestScopedEventHandler(t, div, prefixedHandler, () => { + receivedEvent = true; + }); + + triggerAnimation(div); + await waitForEventThenAnimationFrame(t, unprefixedType); + assert_true(receivedEvent, `received ${prefixedHandler} event`); + }, `${prefixedHandler} event handler should trigger for an animation`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedPrefixedEvent = false; + addTestScopedEventHandler(t, div, prefixedHandler, () => { + receivedPrefixedEvent = true; + }); + let receivedUnprefixedEvent = false; + addTestScopedEventHandler(t, div, unprefixedHandler, () => { + receivedUnprefixedEvent = true; + }); + + triggerAnimation(div); + await waitForEventThenAnimationFrame(t, unprefixedType); + assert_true(receivedUnprefixedEvent, `received ${unprefixedHandler} event`); + assert_false(receivedPrefixedEvent, `received ${prefixedHandler} event`); + }, `${prefixedHandler} event handler should not trigger if an unprefixed ` + + `event handler also exists`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedPrefixedEvent = false; + addTestScopedEventHandler(t, div, prefixedHandler, () => { + receivedPrefixedEvent = true; + }); + let receivedUnprefixedEvent = false; + addTestScopedEventListener(t, div, unprefixedType, () => { + receivedUnprefixedEvent = true; + }); + + triggerAnimation(div); + await waitForEventThenAnimationFrame(t, unprefixedHandler); + assert_true(receivedUnprefixedEvent, `received ${unprefixedHandler} event`); + assert_false(receivedPrefixedEvent, `received ${prefixedHandler} event`); + }, `${prefixedHandler} event handler should not trigger if an unprefixed ` + + `listener also exists`); + + promise_test(async t => { + // We use a parent/child relationship to be able to register both prefixed + // and unprefixed event handlers without the deduplication logic kicking in. + const parent = createDiv(t); + const child = createDiv(t); + parent.appendChild(child); + // After moving the child, we have to clean style again. + getComputedStyle(child).transition; + getComputedStyle(child).width; + + let observedUnprefixedType; + addTestScopedEventHandler(t, parent, unprefixedHandler, e => { + observedUnprefixedType = e.type; + }); + let observedPrefixedType; + addTestScopedEventHandler(t, child, prefixedHandler, e => { + observedPrefixedType = e.type; + }); + + triggerAnimation(child); + await waitForEventThenAnimationFrame(t, unprefixedType); + + assert_equals(observedUnprefixedType, unprefixedType); + assert_equals(observedPrefixedType, prefixedType); + }, `event types for prefixed and unprefixed ${unprefixedType} event ` + + `handlers should be named appropriately`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedEvent = false; + addTestScopedEventListener(t, div, prefixedType, () => { + receivedEvent = true; + }); + + triggerAnimation(div); + await waitForEventThenAnimationFrame(t, unprefixedHandler); + assert_true(receivedEvent, `received ${prefixedType} event`); + }, `${prefixedType} event listener should trigger for an animation`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedPrefixedEvent = false; + addTestScopedEventListener(t, div, prefixedType, () => { + receivedPrefixedEvent = true; + }); + let receivedUnprefixedEvent = false; + addTestScopedEventListener(t, div, unprefixedType, () => { + receivedUnprefixedEvent = true; + }); + + triggerAnimation(div); + await waitForEventThenAnimationFrame(t, unprefixedHandler); + assert_true(receivedUnprefixedEvent, `received ${unprefixedType} event`); + assert_false(receivedPrefixedEvent, `received ${prefixedType} event`); + }, `${prefixedType} event listener should not trigger if an unprefixed ` + + `listener also exists`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedPrefixedEvent = false; + addTestScopedEventListener(t, div, prefixedType, () => { + receivedPrefixedEvent = true; + }); + let receivedUnprefixedEvent = false; + addTestScopedEventHandler(t, div, unprefixedHandler, () => { + receivedUnprefixedEvent = true; + }); + + triggerAnimation(div); + await waitForEventThenAnimationFrame(t, unprefixedHandler); + assert_true(receivedUnprefixedEvent, `received ${unprefixedType} event`); + assert_false(receivedPrefixedEvent, `received ${prefixedType} event`); + }, `${prefixedType} event listener should not trigger if an unprefixed ` + + `event handler also exists`); + + promise_test(async t => { + // We use a parent/child relationship to be able to register both prefixed + // and unprefixed event listeners without the deduplication logic kicking in. + const parent = createDiv(t); + const child = createDiv(t); + parent.appendChild(child); + // After moving the child, we have to clean style again. + getComputedStyle(child).transition; + getComputedStyle(child).width; + + let observedUnprefixedType; + addTestScopedEventListener(t, parent, unprefixedType, e => { + observedUnprefixedType = e.type; + }); + let observedPrefixedType; + addTestScopedEventListener(t, child, prefixedType, e => { + observedPrefixedType = e.type; + }); + + triggerAnimation(child); + await waitForEventThenAnimationFrame(t, unprefixedHandler); + + assert_equals(observedUnprefixedType, unprefixedType); + assert_equals(observedPrefixedType, prefixedType); + }, `event types for prefixed and unprefixed ${unprefixedType} event ` + + `listeners should be named appropriately`); + + promise_test(async t => { + const div = createDiv(t); + + let receivedEvent = false; + addTestScopedEventListener(t, div, prefixedType.toLowerCase(), () => { + receivedEvent = true; + }); + addTestScopedEventListener(t, div, prefixedType.toUpperCase(), () => { + receivedEvent = true; + }); + + triggerAnimation(div); + await waitForEventThenAnimationFrame(t, unprefixedHandler); + assert_false(receivedEvent, `received ${prefixedType} event`); + }, `${prefixedType} event listener is case sensitive`); +} + +// Below are utility functions. + +// Creates a div element, appends it to the document body and removes the +// created element during test cleanup. +function createDiv(test) { + const element = document.createElement('div'); + element.classList.add('baseStyle'); + document.body.appendChild(element); + test.add_cleanup(() => { + element.remove(); + }); + + // Flush style before returning. Some browsers only do partial style re-calc, + // so ask for all important properties to make sure they are applied. + getComputedStyle(element).transition; + getComputedStyle(element).width; + + return element; +} + +// Adds an event handler for |handlerName| (calling |callback|) to the given +// |target|, that will automatically be cleaned up at the end of the test. +function addTestScopedEventHandler(test, target, handlerName, callback) { + assert_regexp_match( + handlerName, /^on/, 'Event handler names must start with "on"'); + assert_equals(target[handlerName], null, + `${handlerName} must be supported and not previously set`); + target[handlerName] = callback; + // We need this cleaned up even if the event handler doesn't run. + test.add_cleanup(() => { + if (target[handlerName]) + target[handlerName] = null; + }); +} + +// Adds an event listener for |type| (calling |callback|) to the given +// |target|, that will automatically be cleaned up at the end of the test. +function addTestScopedEventListener(test, target, type, callback) { + target.addEventListener(type, callback); + // We need this cleaned up even if the event handler doesn't run. + test.add_cleanup(() => { + target.removeEventListener(type, callback); + }); +} + +// Returns a promise that will resolve once the passed event (|eventName|) has +// triggered and one more animation frame has happened. Automatically chooses +// between an event handler or event listener based on whether |eventName| +// begins with 'on'. +// +// We always listen on window as we don't want to interfere with the test via +// triggering the prefixed event deduplication logic. +function waitForEventThenAnimationFrame(test, eventName) { + return new Promise((resolve, _) => { + const eventFunc = eventName.startsWith('on') + ? addTestScopedEventHandler : addTestScopedEventListener; + eventFunc(test, window, eventName, () => { + // rAF once to give the event under test time to come through. + requestAnimationFrame(resolve); + }); + }); +} diff --git a/test/fixtures/wpt/dom/events/scrolling/iframe-chains.html b/test/fixtures/wpt/dom/events/scrolling/iframe-chains.html new file mode 100644 index 00000000000000..2d7e1827adad6f --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/iframe-chains.html @@ -0,0 +1,47 @@ + + + + + + + + + + + +
+ +
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/input-text-scroll-event-when-using-arrow-keys.html b/test/fixtures/wpt/dom/events/scrolling/input-text-scroll-event-when-using-arrow-keys.html new file mode 100644 index 00000000000000..f84e4465275b7a --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/input-text-scroll-event-when-using-arrow-keys.html @@ -0,0 +1,71 @@ + + + + + + + + + + + +

Moving the cursor using the arrow keys into an + input element fires scroll events when text has to scroll into view. + Uses arrow keys to move forward and backwards in the input + element.

+ + + + + + diff --git a/test/fixtures/wpt/dom/events/scrolling/overscroll-deltas.html b/test/fixtures/wpt/dom/events/scrolling/overscroll-deltas.html new file mode 100644 index 00000000000000..6f0b77f22eda2a --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/overscroll-deltas.html @@ -0,0 +1,85 @@ + + + + + + + + + + +
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-document.html b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-document.html new file mode 100644 index 00000000000000..c054ffca9c471f --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-document.html @@ -0,0 +1,62 @@ + + + + + + + + + + +
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-element-with-overscroll-behavior.html b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-element-with-overscroll-behavior.html new file mode 100644 index 00000000000000..750080e6568e86 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-element-with-overscroll-behavior.html @@ -0,0 +1,92 @@ + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html new file mode 100644 index 00000000000000..cfc782a809a7e7 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html @@ -0,0 +1,65 @@ + + + + + + + + + + +
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-window.html b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-window.html new file mode 100644 index 00000000000000..ef5ae3daef8158 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/overscroll-event-fired-to-window.html @@ -0,0 +1,52 @@ + + + + + + + + + + +
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/scroll_support.js b/test/fixtures/wpt/dom/events/scrolling/scroll_support.js new file mode 100644 index 00000000000000..0a73f34fefc8ab --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scroll_support.js @@ -0,0 +1,97 @@ +const MAX_FRAME = 700; +const MAX_UNCHANGED_FRAMES = 20; + +// Returns a promise that resolves when the given condition is met or rejects +// after MAX_FRAME animation frames. +function waitFor(condition, error_message = 'Reaches the maximum frames.') { + return new Promise((resolve, reject) => { + function tick(frames) { + // We requestAnimationFrame either for MAX_FRAM frames or until condition + // is met. + if (frames >= MAX_FRAME) + reject(error_message); + else if (condition()) + resolve(); + else + requestAnimationFrame(tick.bind(this, frames + 1)); + } + tick(0); + }); +} + +function waitForCompositorCommit() { + return new Promise((resolve) => { + // rAF twice. + window.requestAnimationFrame(() => { + window.requestAnimationFrame(resolve); + }); + }); +} + +function waitForAnimationEnd(getValue) { + var last_changed_frame = 0; + var last_position = getValue(); + return new Promise((resolve, reject) => { + function tick(frames) { + // We requestAnimationFrame either for MAX_FRAME or until + // MAX_UNCHANGED_FRAMES with no change have been observed. + if (frames >= MAX_FRAME || frames - last_changed_frame > MAX_UNCHANGED_FRAMES) { + resolve(); + } else { + current_value = getValue(); + if (last_position != current_value) { + last_changed_frame = frames; + last_position = current_value; + } + requestAnimationFrame(tick.bind(this, frames + 1)); + } + } + tick(0); + }) +} + +function touchScrollInTarget(pixels_to_scroll, target, direction, pause_time_in_ms = 100) { + var x_delta = 0; + var y_delta = 0; + const num_movs = 5; + if (direction == "down") { + y_delta = -1 * pixels_to_scroll / num_movs; + } else if (direction == "up") { + y_delta = pixels_to_scroll / num_movs; + } else if (direction == "right") { + x_delta = -1 * pixels_to_scroll / num_movs; + } else if (direction == "left") { + x_delta = pixels_to_scroll / num_movs;; + } else { + throw("scroll direction '" + direction + "' is not expected, direction should be 'down', 'up', 'left' or 'right'"); + } + return new test_driver.Actions() + .addPointer("pointer1", "touch") + .pointerMove(0, 0, {origin: target}) + .pointerDown() + .pointerMove(x_delta, y_delta, {origin: target}) + .pointerMove(2 * x_delta, 2 * y_delta, {origin: target}) + .pointerMove(3 * x_delta, 3 * y_delta, {origin: target}) + .pointerMove(4 * x_delta, 4 * y_delta, {origin: target}) + .pointerMove(5 * x_delta, 5 * y_delta, {origin: target}) + .pause(pause_time_in_ms) + .pointerUp() + .send(); +} + +// Trigger fling by doing pointerUp right after pointerMoves. +function touchFlingInTarget(pixels_to_scroll, target, direction) { + touchScrollInTarget(pixels_to_scroll, target, direction, 0 /* pause_time */); +} + +function mouseActionsInTarget(target, origin, delta, pause_time_in_ms = 100) { + return new test_driver.Actions() + .addPointer("pointer1", "mouse") + .pointerMove(origin.x, origin.y, { origin: target }) + .pointerDown() + .pointerMove(origin.x + delta.x, origin.y + delta.y, { origin: target }) + .pointerMove(origin.x + delta.x * 2, origin.y + delta.y * 2, { origin: target }) + .pause(pause_time_in_ms) + .pointerUp() + .send(); +} diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-after-snap.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-after-snap.html new file mode 100644 index 00000000000000..ef1b495791cad1 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-after-snap.html @@ -0,0 +1,86 @@ + + + + + + + + + + +
+
+
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html new file mode 100644 index 00000000000000..79b5f5f0186871 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html @@ -0,0 +1,134 @@ + + + + + + + + + + + +
+
+
+
+ + diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-scrollIntoView.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-scrollIntoView.html new file mode 100644 index 00000000000000..63e1c3e22eaafc --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-for-scrollIntoView.html @@ -0,0 +1,123 @@ + + + + + + + + + + + +
+
+
+
+ + diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-document.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-document.html new file mode 100644 index 00000000000000..99c1c6930fab0b --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-document.html @@ -0,0 +1,69 @@ + + + + + + + + + + +
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-element-with-overscroll-behavior.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-element-with-overscroll-behavior.html new file mode 100644 index 00000000000000..0269c66fdde192 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-element-with-overscroll-behavior.html @@ -0,0 +1,93 @@ + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-scrolled-element.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-scrolled-element.html new file mode 100644 index 00000000000000..87cad79df7c2af --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-scrolled-element.html @@ -0,0 +1,67 @@ + + + + + + + + + + +
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-window.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-window.html new file mode 100644 index 00000000000000..f9510e6e231615 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-fired-to-window.html @@ -0,0 +1,54 @@ + + + + + + + + + + +
+
+
+
+ + + diff --git a/test/fixtures/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html new file mode 100644 index 00000000000000..30f16571cd8320 --- /dev/null +++ b/test/fixtures/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html @@ -0,0 +1,138 @@ + + + + + + + + + + + + +
+
+
+
+ + + + diff --git a/test/fixtures/wpt/dom/events/shadow-relatedTarget.html b/test/fixtures/wpt/dom/events/shadow-relatedTarget.html new file mode 100644 index 00000000000000..713555b7d8ab61 --- /dev/null +++ b/test/fixtures/wpt/dom/events/shadow-relatedTarget.html @@ -0,0 +1,30 @@ + + + + +
+ + diff --git a/test/fixtures/wpt/dom/events/webkit-animation-end-event.html b/test/fixtures/wpt/dom/events/webkit-animation-end-event.html new file mode 100644 index 00000000000000..4186f6b7a9d241 --- /dev/null +++ b/test/fixtures/wpt/dom/events/webkit-animation-end-event.html @@ -0,0 +1,20 @@ + + +Prefixed CSS Animation end events + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/webkit-animation-iteration-event.html b/test/fixtures/wpt/dom/events/webkit-animation-iteration-event.html new file mode 100644 index 00000000000000..fb251972a32e16 --- /dev/null +++ b/test/fixtures/wpt/dom/events/webkit-animation-iteration-event.html @@ -0,0 +1,23 @@ + + +Prefixed CSS Animation iteration events + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/webkit-animation-start-event.html b/test/fixtures/wpt/dom/events/webkit-animation-start-event.html new file mode 100644 index 00000000000000..ad1036644a96e1 --- /dev/null +++ b/test/fixtures/wpt/dom/events/webkit-animation-start-event.html @@ -0,0 +1,20 @@ + + +Prefixed CSS Animation start events + + + + + + + + + diff --git a/test/fixtures/wpt/dom/events/webkit-transition-end-event.html b/test/fixtures/wpt/dom/events/webkit-transition-end-event.html new file mode 100644 index 00000000000000..2741824e3054a2 --- /dev/null +++ b/test/fixtures/wpt/dom/events/webkit-transition-end-event.html @@ -0,0 +1,21 @@ + + +Prefixed CSS Transition End event + + + + + + + + + diff --git a/test/fixtures/wpt/versions.json b/test/fixtures/wpt/versions.json index bde6cf862f6358..e9539ebf6410ae 100644 --- a/test/fixtures/wpt/versions.json +++ b/test/fixtures/wpt/versions.json @@ -11,6 +11,10 @@ "commit": "c49cafb491d99d6318f8f24a26936cc66501f412", "path": "dom/abort" }, + "dom/events": { + "commit": "f8821adb281696322f4bd96d412a98ae510f9125", + "path": "dom/events" + }, "encoding": { "commit": "35f70910d3753c8b650fdfd4c716caedfefe88c9", "path": "encoding" @@ -79,4 +83,4 @@ "commit": "a370aad338d6ed743abb4d2c6ae84a7f1058558c", "path": "webidl/ecmascript-binding/es-exceptions" } -} \ No newline at end of file +} diff --git a/test/wpt/status/dom/events.json b/test/wpt/status/dom/events.json new file mode 100644 index 00000000000000..9266118feca49f --- /dev/null +++ b/test/wpt/status/dom/events.json @@ -0,0 +1,52 @@ +{ + "Event-dispatch-listener-order.window.js": { "fail": "document is not defined" }, + "AddEventListenerOptions-passive.any.js": { + "fail": { + "unexpected": [ + "assert_equals: Incorrect defaultPrevented for options: {\"passive\":true} expected false but got true", + "assert_equals: Incorrect defaultPrevented for options: undefined expected true but got false" + ] + } + }, + "AddEventListenerOptions-signal.any.js": { + "fail": { + "unexpected": [ + "assert_throws_js: function \"() => { et.addEventListener(\"foo\", () => {}, { signal: null }); }\" did not throw", + "assert_throws_js: function \"() => { et.addEventListener(\"foo\", null, { signal: null }); }\" did not throw" + ] + } + }, + "Event-constructors.any.js": { + "fail": { + "unexpected": [ + "assert_true: expected true got false", + "assert_array_equals: lengths differ, expected array [\"bubbles\", \"cancelable\"] length 2, got [\"cancelable\", \"bubbles\", \"sweet\"] length 3", + "CustomEvent is not defined" + ] + } + }, + "EventListener-addEventListener.sub.window.js": { + "fail": "document is not defined" + }, + "EventTarget-constructible.any.js": { + "fail": "CustomEvent is not defined" + }, + "relatedTarget.window.js": { + "fail": "document is not defined" + }, + "event-global.worker.js": { + "fail": "importScripts is not defined" + }, + "event-global-extra.window.js": { + "fail": "document is not defined" + }, + "legacy-pre-activation-behavior.window.js": { + "fail": "document is not defined" + }, + "event-global-set-before-handleEvent-lookup.window.js": { + "fail": "window is not defined" + }, + "EventTarget-removeEventListener.any.js": { + "fail": "globalThis.removeEventListener is not a function" + } +} diff --git a/test/wpt/test-events.js b/test/wpt/test-events.js new file mode 100644 index 00000000000000..5040d56d6a2c58 --- /dev/null +++ b/test/wpt/test-events.js @@ -0,0 +1,7 @@ +'use strict'; +require('../common'); +const { WPTRunner } = require('../common/wpt'); + +const runner = new WPTRunner('dom/events'); + +runner.runJsTests(); From 491c7619c406a053f97277ac19649e31f492068d Mon Sep 17 00:00:00 2001 From: Paolo Insogna Date: Fri, 10 Jun 2022 16:25:15 +0200 Subject: [PATCH 053/175] http: defer reentrant execution of Parser::Execute PR-URL: https://github.com/nodejs/node/pull/43369 Fixes: https://github.com/nodejs/node/issues/39671 Reviewed-By: Ben Noordhuis Reviewed-By: Matteo Collina --- lib/_http_common.js | 7 +-- src/node_http_parser.cc | 60 +++---------------- .../test-http-parser-multiple-execute.js | 37 ++++++++++++ test/parallel/test-http-parser.js | 34 +++++------ 4 files changed, 65 insertions(+), 73 deletions(-) create mode 100644 test/parallel/test-http-parser-multiple-execute.js diff --git a/lib/_http_common.js b/lib/_http_common.js index 2055ca205b84a3..4430869520f813 100644 --- a/lib/_http_common.js +++ b/lib/_http_common.js @@ -117,7 +117,7 @@ function parserOnHeadersComplete(versionMajor, versionMinor, headers, method, return parser.onIncoming(incoming, shouldKeepAlive); } -function parserOnBody(b, start, len) { +function parserOnBody(b) { const stream = this.incoming; // If the stream has already been removed, then drop it. @@ -125,9 +125,8 @@ function parserOnBody(b, start, len) { return; // Pretend this was the result of a stream._read call. - if (len > 0 && !stream._dumped) { - const slice = b.slice(start, start + len); - const ret = stream.push(slice); + if (!stream._dumped) { + const ret = stream.push(b); if (!ret) readStop(this.socket); } diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc index 7ff5b0fe2ff76f..52c8e9e2589dd4 100644 --- a/src/node_http_parser.cc +++ b/src/node_http_parser.cc @@ -248,11 +248,7 @@ class Parser : public AsyncWrap, public StreamListener { binding_data_(binding_data) { } - - void MemoryInfo(MemoryTracker* tracker) const override { - tracker->TrackField("current_buffer", current_buffer_); - } - + SET_NO_MEMORY_INFO() SET_MEMORY_INFO_NAME(Parser) SET_SELF_SIZE(Parser) @@ -454,32 +450,20 @@ class Parser : public AsyncWrap, public StreamListener { int on_body(const char* at, size_t length) { - EscapableHandleScope scope(env()->isolate()); + if (length == 0) + return 0; - Local obj = object(); - Local cb = obj->Get(env()->context(), kOnBody).ToLocalChecked(); + Environment* env = this->env(); + HandleScope handle_scope(env->isolate()); + + Local cb = object()->Get(env->context(), kOnBody).ToLocalChecked(); if (!cb->IsFunction()) return 0; - // We came from consumed stream - if (current_buffer_.IsEmpty()) { - // Make sure Buffer will be in parent HandleScope - current_buffer_ = scope.Escape(Buffer::Copy( - env()->isolate(), - current_buffer_data_, - current_buffer_len_).ToLocalChecked()); - } + Local buffer = Buffer::Copy(env, at, length).ToLocalChecked(); - Local argv[3] = { - current_buffer_, - Integer::NewFromUnsigned( - env()->isolate(), static_cast(at - current_buffer_data_)), - Integer::NewFromUnsigned(env()->isolate(), length)}; - - MaybeLocal r = MakeCallback(cb.As(), - arraysize(argv), - argv); + MaybeLocal r = MakeCallback(cb.As(), 1, &buffer); if (r.IsEmpty()) { got_exception_ = true; @@ -593,17 +577,9 @@ class Parser : public AsyncWrap, public StreamListener { static void Execute(const FunctionCallbackInfo& args) { Parser* parser; ASSIGN_OR_RETURN_UNWRAP(&parser, args.Holder()); - CHECK(parser->current_buffer_.IsEmpty()); - CHECK_EQ(parser->current_buffer_len_, 0); - CHECK_NULL(parser->current_buffer_data_); ArrayBufferViewContents buffer(args[0]); - // This is a hack to get the current_buffer to the callbacks with the least - // amount of overhead. Nothing else will run while http_parser_execute() - // runs, therefore this pointer can be set and used for the execution. - parser->current_buffer_ = args[0].As(); - Local ret = parser->Execute(buffer.data(), buffer.length()); if (!ret.IsEmpty()) @@ -615,7 +591,6 @@ class Parser : public AsyncWrap, public StreamListener { Parser* parser; ASSIGN_OR_RETURN_UNWRAP(&parser, args.Holder()); - CHECK(parser->current_buffer_.IsEmpty()); Local ret = parser->Execute(nullptr, 0); if (!ret.IsEmpty()) @@ -695,11 +670,6 @@ class Parser : public AsyncWrap, public StreamListener { // Should always be called from the same context. CHECK_EQ(env, parser->env()); - if (parser->execute_depth_) { - parser->pending_pause_ = should_pause; - return; - } - if (should_pause) { llhttp_pause(&parser->parser_); } else { @@ -801,7 +771,6 @@ class Parser : public AsyncWrap, public StreamListener { if (nread == 0) return; - current_buffer_.Clear(); Local ret = Execute(buf.base, nread); // Exception @@ -834,17 +803,12 @@ class Parser : public AsyncWrap, public StreamListener { llhttp_errno_t err; - // Do not allow re-entering `http_parser_execute()` - CHECK_EQ(execute_depth_, 0); - - execute_depth_++; if (data == nullptr) { err = llhttp_finish(&parser_); } else { err = llhttp_execute(&parser_, data, len); Save(); } - execute_depth_--; // Calculate bytes read and resume after Upgrade/CONNECT pause size_t nread = len; @@ -864,8 +828,6 @@ class Parser : public AsyncWrap, public StreamListener { llhttp_pause(&parser_); } - // Unassign the 'buffer_' variable - current_buffer_.Clear(); current_buffer_len_ = 0; current_buffer_data_ = nullptr; @@ -989,8 +951,6 @@ class Parser : public AsyncWrap, public StreamListener { int MaybePause() { - CHECK_NE(execute_depth_, 0); - if (!pending_pause_) { return 0; } @@ -1018,10 +978,8 @@ class Parser : public AsyncWrap, public StreamListener { size_t num_values_; bool have_flushed_; bool got_exception_; - Local current_buffer_; size_t current_buffer_len_; const char* current_buffer_data_; - unsigned int execute_depth_ = 0; bool headers_completed_ = false; bool pending_pause_ = false; uint64_t header_nread_ = 0; diff --git a/test/parallel/test-http-parser-multiple-execute.js b/test/parallel/test-http-parser-multiple-execute.js new file mode 100644 index 00000000000000..d05a973752395a --- /dev/null +++ b/test/parallel/test-http-parser-multiple-execute.js @@ -0,0 +1,37 @@ +'use strict'; + +const common = require('../common'); +const assert = require('assert'); +const { request } = require('http'); +const { Duplex } = require('stream'); + +let socket; + +function createConnection(...args) { + socket = new Duplex({ + read() {}, + write(chunk, encoding, callback) { + if (chunk.toString().includes('\r\n\r\n')) { + this.push('HTTP/1.1 100 Continue\r\n\r\n'); + } + + callback(); + } + }); + + return socket; +} + +const req = request('http://localhost:8080', { createConnection }); + +req.on('information', common.mustCall(({ statusCode }) => { + assert.strictEqual(statusCode, 100); + socket.push('HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n'); + socket.push(null); +})); + +req.on('response', common.mustCall(({ statusCode }) => { + assert.strictEqual(statusCode, 200); +})); + +req.end(); diff --git a/test/parallel/test-http-parser.js b/test/parallel/test-http-parser.js index 97dc57f755ad88..739beaa3d67cd9 100644 --- a/test/parallel/test-http-parser.js +++ b/test/parallel/test-http-parser.js @@ -62,8 +62,8 @@ function newParser(type) { function expectBody(expected) { - return mustCall(function(buf, start, len) { - const body = String(buf.slice(start, start + len)); + return mustCall(function(buf) { + const body = String(buf); assert.strictEqual(body, expected); }); } @@ -126,8 +126,8 @@ function expectBody(expected) { assert.strictEqual(statusMessage, 'OK'); }; - const onBody = (buf, start, len) => { - const body = String(buf.slice(start, start + len)); + const onBody = (buf) => { + const body = String(buf); assert.strictEqual(body, 'pong'); }; @@ -195,8 +195,8 @@ function expectBody(expected) { parser[kOnHeaders] = mustCall(onHeaders); }; - const onBody = (buf, start, len) => { - const body = String(buf.slice(start, start + len)); + const onBody = (buf) => { + const body = String(buf); assert.strictEqual(body, 'ping'); seen_body = true; }; @@ -291,8 +291,8 @@ function expectBody(expected) { assert.strictEqual(versionMinor, 1); }; - const onBody = (buf, start, len) => { - const body = String(buf.slice(start, start + len)); + const onBody = (buf) => { + const body = String(buf); assert.strictEqual(body, 'foo=42&bar=1337'); }; @@ -332,8 +332,8 @@ function expectBody(expected) { let body_part = 0; const body_parts = ['123', '123456', '1234567890']; - const onBody = (buf, start, len) => { - const body = String(buf.slice(start, start + len)); + const onBody = (buf) => { + const body = String(buf); assert.strictEqual(body, body_parts[body_part++]); }; @@ -371,8 +371,8 @@ function expectBody(expected) { const body_parts = ['123', '123456', '123456789', '123456789ABC', '123456789ABCDEF']; - const onBody = (buf, start, len) => { - const body = String(buf.slice(start, start + len)); + const onBody = (buf) => { + const body = String(buf); assert.strictEqual(body, body_parts[body_part++]); }; @@ -428,8 +428,8 @@ function expectBody(expected) { let expected_body = '123123456123456789123456789ABC123456789ABCDEF'; - const onBody = (buf, start, len) => { - const chunk = String(buf.slice(start, start + len)); + const onBody = (buf) => { + const chunk = String(buf); assert.strictEqual(expected_body.indexOf(chunk), 0); expected_body = expected_body.slice(chunk.length); }; @@ -445,9 +445,7 @@ function expectBody(expected) { for (let i = 1; i < request.length - 1; ++i) { const a = request.slice(0, i); - console.error(`request.slice(0, ${i}) = ${JSON.stringify(a.toString())}`); const b = request.slice(i); - console.error(`request.slice(${i}) = ${JSON.stringify(b.toString())}`); test(a, b); } } @@ -488,8 +486,8 @@ function expectBody(expected) { let expected_body = '123123456123456789123456789ABC123456789ABCDEF'; - const onBody = (buf, start, len) => { - const chunk = String(buf.slice(start, start + len)); + const onBody = (buf) => { + const chunk = String(buf); assert.strictEqual(expected_body.indexOf(chunk), 0); expected_body = expected_body.slice(chunk.length); }; From 47a252257bd1d11046b233b2806cfed8ad0f6e92 Mon Sep 17 00:00:00 2001 From: theanarkh Date: Wed, 22 Jun 2022 22:10:18 +0800 Subject: [PATCH 054/175] net: fix net.Server keepalive and noDelay PR-URL: https://github.com/nodejs/node/pull/43497 Reviewed-By: Paolo Insogna Reviewed-By: Matteo Collina --- lib/net.js | 9 ++++---- test/parallel/test-net-server-keepalive.js | 25 ++++++++++++++++++++++ test/parallel/test-net-server-nodelay.js | 23 ++++++++++++++++++++ 3 files changed, 52 insertions(+), 5 deletions(-) create mode 100644 test/parallel/test-net-server-keepalive.js create mode 100644 test/parallel/test-net-server-nodelay.js diff --git a/lib/net.js b/lib/net.js index 2e0b26a19585c2..f72a745bcc7ef3 100644 --- a/lib/net.js +++ b/lib/net.js @@ -1659,12 +1659,11 @@ function onconnection(err, clientHandle) { writable: true }); - if (self.noDelay && handle.setNoDelay) { - handle.setNoDelay(true); + if (self.noDelay && clientHandle.setNoDelay) { + clientHandle.setNoDelay(true); } - - if (self.keepAlive && self.setKeepAlive) { - handle.setKeepAlive(true, handle.keepAliveInitialDelay); + if (self.keepAlive && clientHandle.setKeepAlive) { + clientHandle.setKeepAlive(true, self.keepAliveInitialDelay); } self._connections++; diff --git a/test/parallel/test-net-server-keepalive.js b/test/parallel/test-net-server-keepalive.js new file mode 100644 index 00000000000000..384787d22bb69c --- /dev/null +++ b/test/parallel/test-net-server-keepalive.js @@ -0,0 +1,25 @@ +'use strict'; +const common = require('../common'); +const assert = require('assert'); +const net = require('net'); + +const server = net.createServer({ + keepAlive: true, + keepAliveInitialDelay: 1000 +}, common.mustCall((socket) => { + socket.destroy(); + server.close(); +})).listen(0, common.mustCall(() => { + net.connect(server.address().port); +})); + +const onconnection = server._handle.onconnection; +server._handle.onconnection = common.mustCall((err, clientHandle) => { + const setKeepAlive = clientHandle.setKeepAlive; + clientHandle.setKeepAlive = common.mustCall((enable, initialDelayMsecs) => { + assert.strictEqual(enable, server.keepAlive); + assert.strictEqual(initialDelayMsecs, server.keepAliveInitialDelay); + setKeepAlive.call(clientHandle, enable, initialDelayMsecs); + }); + onconnection.call(server._handle, err, clientHandle); +}); diff --git a/test/parallel/test-net-server-nodelay.js b/test/parallel/test-net-server-nodelay.js new file mode 100644 index 00000000000000..f5ee77f71c5383 --- /dev/null +++ b/test/parallel/test-net-server-nodelay.js @@ -0,0 +1,23 @@ +'use strict'; +const common = require('../common'); +const assert = require('assert'); +const net = require('net'); + +const server = net.createServer({ + noDelay: true +}, common.mustCall((socket) => { + socket.destroy(); + server.close(); +})).listen(0, common.mustCall(() => { + net.connect(server.address().port); +})); + +const onconnection = server._handle.onconnection; +server._handle.onconnection = common.mustCall((err, clientHandle) => { + const setNoDelay = clientHandle.setNoDelay; + clientHandle.setNoDelay = common.mustCall((enable) => { + assert.strictEqual(enable, server.noDelay); + setNoDelay.call(clientHandle, enable); + }); + onconnection.call(server._handle, err, clientHandle); +}); From 2e799bcd3562f7ca42eed2209c9b26ea58c85e04 Mon Sep 17 00:00:00 2001 From: James Scott-Brown Date: Wed, 22 Jun 2022 16:57:53 +0100 Subject: [PATCH 055/175] doc: update link to MDN page about dynamic imports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was split into a separate page 2 days ago: https://github.com/mdn/content/commit/d2b50123d485c68c5321339446cf77a4bb16dd82 PR-URL: https://github.com/nodejs/node/pull/43530 Reviewed-By: Antoine du Hamel Reviewed-By: Tobias Nießen Reviewed-By: Darshan Sen Reviewed-By: Mohammed Keyvanzadeh --- doc/api/esm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index b5de0175ae234e..e767c23f44aa4b 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -1549,7 +1549,7 @@ success! [Conditional exports]: packages.md#conditional-exports [Core modules]: modules.md#core-modules [Determining module system]: packages.md#determining-module-system -[Dynamic `import()`]: https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports +[Dynamic `import()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import [ES Module Integration Proposal for WebAssembly]: https://github.com/webassembly/esm-integration [HTTPS and HTTP imports]: #https-and-http-imports [Import Assertions]: #import-assertions From 7ca58b8ee7abab119cc48933993a9e21f0386398 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 22 Jun 2022 19:23:01 +0100 Subject: [PATCH 056/175] test: allow EOVERFLOW errors in fs position tests Some platforms may return `EOVERFLOW` errors instead of `EFBIG`. PR-URL: https://github.com/nodejs/node/pull/43510 Refs: https://github.com/nodejs/node/pull/42999 Refs: https://github.com/nodejs/node/issues/43509 Reviewed-By: LiviaMedeiros Reviewed-By: Santiago Gimeno Reviewed-By: Luigi Pinca --- test/parallel/test-fs-read-position-validation.mjs | 6 +++--- test/parallel/test-fs-readSync-position-validation.mjs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/parallel/test-fs-read-position-validation.mjs b/test/parallel/test-fs-read-position-validation.mjs index 919a8dd1419903..1b65dc19a2e545 100644 --- a/test/parallel/test-fs-read-position-validation.mjs +++ b/test/parallel/test-fs-read-position-validation.mjs @@ -12,7 +12,7 @@ const offset = 0; const length = buffer.byteLength; // allowedErrors is an array of acceptable internal errors -// For example, on some platforms read syscall might return -EFBIG +// For example, on some platforms read syscall might return -EFBIG or -EOVERFLOW async function testValid(position, allowedErrors = []) { return new Promise((resolve, reject) => { fs.open(filepath, 'r', common.mustSucceed((fd) => { @@ -71,9 +71,9 @@ async function testInvalid(code, position) { await testValid(1n); await testValid(9); await testValid(9n); - await testValid(Number.MAX_SAFE_INTEGER, [ 'EFBIG' ]); + await testValid(Number.MAX_SAFE_INTEGER, [ 'EFBIG', 'EOVERFLOW' ]); - await testValid(2n ** 63n - 1n - BigInt(length), [ 'EFBIG' ]); + await testValid(2n ** 63n - 1n - BigInt(length), [ 'EFBIG', 'EOVERFLOW' ]); await testInvalid('ERR_OUT_OF_RANGE', 2n ** 63n); // TODO(LiviaMedeiros): test `2n ** 63n - BigInt(length)` diff --git a/test/parallel/test-fs-readSync-position-validation.mjs b/test/parallel/test-fs-readSync-position-validation.mjs index 5cf40ba1b08578..1c3b22ac86d067 100644 --- a/test/parallel/test-fs-readSync-position-validation.mjs +++ b/test/parallel/test-fs-readSync-position-validation.mjs @@ -12,7 +12,7 @@ const offset = 0; const length = buffer.byteLength; // allowedErrors is an array of acceptable internal errors -// For example, on some platforms read syscall might return -EFBIG +// For example, on some platforms read syscall might return -EFBIG or -EOVERFLOW function testValid(position, allowedErrors = []) { let fdSync; try { @@ -57,9 +57,9 @@ function testInvalid(code, position, internalCatch = false) { testValid(1n); testValid(9); testValid(9n); - testValid(Number.MAX_SAFE_INTEGER, [ 'EFBIG' ]); + testValid(Number.MAX_SAFE_INTEGER, [ 'EFBIG', 'EOVERFLOW' ]); - testValid(2n ** 63n - 1n - BigInt(length), [ 'EFBIG' ]); + testValid(2n ** 63n - 1n - BigInt(length), [ 'EFBIG', 'EOVERFLOW' ]); testInvalid('ERR_OUT_OF_RANGE', 2n ** 63n); // TODO(LiviaMedeiros): test `2n ** 63n - BigInt(length)` From 08ed28c31e9a79af357eda0d6c5d9a41690c6be7 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Mon, 20 Jun 2022 14:54:07 -0400 Subject: [PATCH 057/175] doc: add Juan as a security steward Ran through onboaring with Juan today. Add him to the rotation for security stewards. Signed-off-by: Michael Dawson PR-URL: https://github.com/nodejs/node/pull/43512 Reviewed-By: Richard Lau Reviewed-By: Antoine du Hamel Reviewed-By: Colin Ihrig Reviewed-By: Gireesh Punathil Reviewed-By: Beth Griggs Reviewed-By: Darshan Sen --- doc/contributing/security-release-process.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/contributing/security-release-process.md b/doc/contributing/security-release-process.md index 74daa87ee8081c..4f19b0ce48d652 100644 --- a/doc/contributing/security-release-process.md +++ b/doc/contributing/security-release-process.md @@ -26,6 +26,7 @@ The current security stewards are documented in the main Node.js | RH and IBM | Joe | 2022-Mar-18 | | NearForm | Matteo / Rafael | | | Datadog | Vladimir | | +| NodeSource | Juan | | | RH and IBM | Michael | | ## Planning From 60b949d8ff0348e63a61c1d4483a5a3e8758de2a Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Tue, 21 Jun 2022 11:58:28 -0400 Subject: [PATCH 058/175] doc: move MylesBorins to TSC Emeritus MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit My availability has become smaller and smaller and I think for now the best thing to do is to move to TSC Emeritus. Perhaps I'll have more time to focus on Node.js Leadership again in the future, but for now I think it's best to officially step back a bit. So long, and thanks for all the modules o/ PR-URL: https://github.com/nodejs/node/pull/43524 Reviewed-By: Richard Lau Reviewed-By: Ruben Bridgewater Reviewed-By: Antoine du Hamel Reviewed-By: Matteo Collina Reviewed-By: Juan José Arboleda Reviewed-By: Trivikram Kamat Reviewed-By: Tobias Nießen Reviewed-By: Michael Dawson Reviewed-By: Gireesh Punathil Reviewed-By: Darshan Sen Reviewed-By: Franziska Hinkelmann Reviewed-By: Danielle Adams Reviewed-By: Luigi Pinca --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b0de86cf489ae..08f33caad450b7 100644 --- a/README.md +++ b/README.md @@ -180,8 +180,6 @@ For information about the governance of the Node.js project, see **Matteo Collina** <> (he/him) * [mhdawson](https://github.com/mhdawson) - **Michael Dawson** <> (he/him) -* [MylesBorins](https://github.com/MylesBorins) - - **Myles Borins** <> (he/him) * [RaisinTen](https://github.com/RaisinTen) - **Darshan Sen** <> (he/him) * [richardlau](https://github.com/richardlau) - @@ -229,6 +227,8 @@ For information about the governance of the Node.js project, see **Mary Marchini** <> (she/her) * [mscdex](https://github.com/mscdex) - **Brian White** <> +* [MylesBorins](https://github.com/MylesBorins) - + **Myles Borins** <> (he/him) * [nebrius](https://github.com/nebrius) - **Bryan Hughes** <> * [ofrobots](https://github.com/ofrobots) - From 17b92f06795bf1451cc71f56b431bb602d6fae6f Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 22 Jun 2022 21:46:47 +0200 Subject: [PATCH 059/175] test: use unique file names in fs trace test Should fix test flakiness that is presumably caused by the asynchronous nature of the unlink operation on Windows. It's been observed that sub-tests randomly fail with "permission denied" errors when trying to create a new file in a directory with appropriate permissions. The DeleteFile() NT API call makes a file inaccessible and marks it for deletion but doesn't actually delete it until the last open handle has been closed. Accessing such a file fails with ERROR_ACCESS_DENIED. Processes can close handles manually or wait for the operating system to close them asynchronously after process termination. I speculate it's the latter that's causing the test to turn flaky. Fixes: https://github.com/nodejs/node/issues/43502 PR-URL: https://github.com/nodejs/node/pull/43504 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Richard Lau Reviewed-By: LiviaMedeiros Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott --- test/parallel/test-trace-events-fs-sync.js | 168 ++++++++++----------- 1 file changed, 84 insertions(+), 84 deletions(-) diff --git a/test/parallel/test-trace-events-fs-sync.js b/test/parallel/test-trace-events-fs-sync.js index 78a5059bc91f5f..b12694f4efa607 100644 --- a/test/parallel/test-trace-events-fs-sync.js +++ b/test/parallel/test-trace-events-fs-sync.js @@ -16,102 +16,102 @@ if (!common.isWindows) { uid = process.getuid(); } -tests['fs.sync.access'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.accessSync("fs.txt");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.chmod'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.chmodSync("fs.txt",100);' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.chown'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - `fs.chownSync("fs.txt", ${uid}, ${gid});` + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.close'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.copyfile'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.copyFileSync("fs.txt","a.txt");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.fchmod'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'const fd = fs.openSync("fs.txt", "r+");' + +tests['fs.sync.access'] = 'fs.writeFileSync("fs0.txt", "123", "utf8");' + + 'fs.accessSync("fs0.txt");' + + 'fs.unlinkSync("fs0.txt")'; +tests['fs.sync.chmod'] = 'fs.writeFileSync("fs1.txt", "123", "utf8");' + + 'fs.chmodSync("fs1.txt",100);' + + 'fs.unlinkSync("fs1.txt")'; +tests['fs.sync.chown'] = 'fs.writeFileSync("fs2.txt", "123", "utf8");' + + `fs.chownSync("fs2.txt", ${uid}, ${gid});` + + 'fs.unlinkSync("fs2.txt")'; +tests['fs.sync.close'] = 'fs.writeFileSync("fs3.txt", "123", "utf8");' + + 'fs.unlinkSync("fs3.txt")'; +tests['fs.sync.copyfile'] = 'fs.writeFileSync("fs4.txt", "123", "utf8");' + + 'fs.copyFileSync("fs4.txt","a.txt");' + + 'fs.unlinkSync("fs4.txt")'; +tests['fs.sync.fchmod'] = 'fs.writeFileSync("fs5.txt", "123", "utf8");' + + 'const fd = fs.openSync("fs5.txt", "r+");' + 'fs.fchmodSync(fd,100);' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.fchown'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'const fd = fs.openSync("fs.txt", "r+");' + + 'fs.unlinkSync("fs5.txt")'; +tests['fs.sync.fchown'] = 'fs.writeFileSync("fs6.txt", "123", "utf8");' + + 'const fd = fs.openSync("fs6.txt", "r+");' + `fs.fchownSync(fd, ${uid}, ${gid});` + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.fdatasync'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'const fd = fs.openSync("fs.txt", "r+");' + + 'fs.unlinkSync("fs6.txt")'; +tests['fs.sync.fdatasync'] = 'fs.writeFileSync("fs7.txt", "123", "utf8");' + + 'const fd = fs.openSync("fs7.txt", "r+");' + 'fs.fdatasyncSync(fd);' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.fstat'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.readFileSync("fs.txt");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.fsync'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'const fd = fs.openSync("fs.txt", "r+");' + + 'fs.unlinkSync("fs7.txt")'; +tests['fs.sync.fstat'] = 'fs.writeFileSync("fs8.txt", "123", "utf8");' + + 'fs.readFileSync("fs8.txt");' + + 'fs.unlinkSync("fs8.txt")'; +tests['fs.sync.fsync'] = 'fs.writeFileSync("fs9.txt", "123", "utf8");' + + 'const fd = fs.openSync("fs9.txt", "r+");' + 'fs.fsyncSync(fd);' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.ftruncate'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'const fd = fs.openSync("fs.txt", "r+");' + + 'fs.unlinkSync("fs9.txt")'; +tests['fs.sync.ftruncate'] = 'fs.writeFileSync("fs10.txt", "123", "utf8");' + + 'const fd = fs.openSync("fs10.txt", "r+");' + 'fs.ftruncateSync(fd, 1);' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.futimes'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'const fd = fs.openSync("fs.txt", "r+");' + + 'fs.unlinkSync("fs10.txt")'; +tests['fs.sync.futimes'] = 'fs.writeFileSync("fs11.txt", "123", "utf8");' + + 'const fd = fs.openSync("fs11.txt", "r+");' + 'fs.futimesSync(fd,1,1);' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.lchown'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - `fs.lchownSync("fs.txt", ${uid}, ${gid});` + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.link'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.linkSync("fs.txt", "linkx");' + - 'fs.unlinkSync("linkx");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.lstat'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.lstatSync("fs.txt");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.mkdir'] = 'fs.mkdirSync("fstemp");' + - 'fs.rmdirSync("fstemp")'; -tests['fs.sync.mkdtemp'] = 'const fp = fs.mkdtempSync("fstest");' + + 'fs.unlinkSync("fs11.txt")'; +tests['fs.sync.lchown'] = 'fs.writeFileSync("fs12.txt", "123", "utf8");' + + `fs.lchownSync("fs12.txt", ${uid}, ${gid});` + + 'fs.unlinkSync("fs12.txt")'; +tests['fs.sync.link'] = 'fs.writeFileSync("fs13.txt", "123", "utf8");' + + 'fs.linkSync("fs13.txt", "fs14.txt");' + + 'fs.unlinkSync("fs13.txt");' + + 'fs.unlinkSync("fs14.txt")'; +tests['fs.sync.lstat'] = 'fs.writeFileSync("fs15.txt", "123", "utf8");' + + 'fs.lstatSync("fs15.txt");' + + 'fs.unlinkSync("fs15.txt")'; +tests['fs.sync.mkdir'] = 'fs.mkdirSync("fstemp0");' + + 'fs.rmdirSync("fstemp0")'; +tests['fs.sync.mkdtemp'] = 'const fp = fs.mkdtempSync("fstemp1");' + 'fs.rmdirSync(fp)'; -tests['fs.sync.open'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.read'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.readFileSync("fs.txt");' + - 'fs.unlinkSync("fs.txt")'; +tests['fs.sync.open'] = 'fs.writeFileSync("fs16.txt", "123", "utf8");' + + 'fs.unlinkSync("fs16.txt")'; +tests['fs.sync.read'] = 'fs.writeFileSync("fs17.txt", "123", "utf8");' + + 'fs.readFileSync("fs17.txt");' + + 'fs.unlinkSync("fs17.txt")'; tests['fs.sync.readdir'] = 'fs.readdirSync("./")'; -tests['fs.sync.realpath'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.linkSync("fs.txt", "linkx");' + - 'fs.realpathSync.native("linkx");' + - 'fs.unlinkSync("linkx");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.rename'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.renameSync("fs.txt","xyz.txt"); ' + - 'fs.unlinkSync("xyz.txt")'; -tests['fs.sync.rmdir'] = 'fs.mkdirSync("fstemp");' + - 'fs.rmdirSync("fstemp")'; -tests['fs.sync.stat'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.statSync("fs.txt");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.unlink'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.linkSync("fs.txt", "linkx");' + - 'fs.unlinkSync("linkx");' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.utimes'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.utimesSync("fs.txt",1,1);' + - 'fs.unlinkSync("fs.txt")'; -tests['fs.sync.write'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.unlinkSync("fs.txt")'; +tests['fs.sync.realpath'] = 'fs.writeFileSync("fs18.txt", "123", "utf8");' + + 'fs.linkSync("fs18.txt", "fs19.txt");' + + 'fs.realpathSync.native("fs19.txt");' + + 'fs.unlinkSync("fs18.txt");' + + 'fs.unlinkSync("fs19.txt")'; +tests['fs.sync.rename'] = 'fs.writeFileSync("fs20.txt", "123", "utf8");' + + 'fs.renameSync("fs20.txt","fs21.txt"); ' + + 'fs.unlinkSync("fs21.txt")'; +tests['fs.sync.rmdir'] = 'fs.mkdirSync("fstemp2");' + + 'fs.rmdirSync("fstemp2")'; +tests['fs.sync.stat'] = 'fs.writeFileSync("fs22.txt", "123", "utf8");' + + 'fs.statSync("fs22.txt");' + + 'fs.unlinkSync("fs22.txt")'; +tests['fs.sync.unlink'] = 'fs.writeFileSync("fs23.txt", "123", "utf8");' + + 'fs.linkSync("fs23.txt", "fs24.txt");' + + 'fs.unlinkSync("fs23.txt");' + + 'fs.unlinkSync("fs24.txt")'; +tests['fs.sync.utimes'] = 'fs.writeFileSync("fs25.txt", "123", "utf8");' + + 'fs.utimesSync("fs25.txt",1,1);' + + 'fs.unlinkSync("fs25.txt")'; +tests['fs.sync.write'] = 'fs.writeFileSync("fs26.txt", "123", "utf8");' + + 'fs.unlinkSync("fs26.txt")'; // On windows, we need permissions to test symlink and readlink. // We'll only try to run these tests if we have enough privileges. if (common.canCreateSymLink()) { - tests['fs.sync.symlink'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.symlinkSync("fs.txt", "linkx");' + - 'fs.unlinkSync("linkx");' + - 'fs.unlinkSync("fs.txt")'; - tests['fs.sync.readlink'] = 'fs.writeFileSync("fs.txt", "123", "utf8");' + - 'fs.symlinkSync("fs.txt", "linkx");' + - 'fs.readlinkSync("linkx");' + - 'fs.unlinkSync("linkx");' + - 'fs.unlinkSync("fs.txt")'; + tests['fs.sync.symlink'] = 'fs.writeFileSync("fs27.txt", "123", "utf8");' + + 'fs.symlinkSync("fs27.txt", "fs28.txt");' + + 'fs.unlinkSync("fs27.txt");' + + 'fs.unlinkSync("fs28.txt")'; + tests['fs.sync.readlink'] = 'fs.writeFileSync("fs29.txt", "123", "utf8");' + + 'fs.symlinkSync("fs29.txt", "fs30.txt");' + + 'fs.readlinkSync("fs30.txt");' + + 'fs.unlinkSync("fs29.txt");' + + 'fs.unlinkSync("fs30.txt")'; } const tmpdir = require('../common/tmpdir'); From 9940dc38c1ddaf164e9bb06a0a79c85814cb28ed Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 22 Jun 2022 21:55:53 +0100 Subject: [PATCH 060/175] test: skip test-v8-serialize-leak on IBM i On IBM i rss memory information is not available and always returns `0`. PR-URL: https://github.com/nodejs/node/pull/43511 Refs: https://github.com/nodejs/node/issues/43509 Refs: https://github.com/libuv/libuv/pull/2732 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca --- test/parallel/test-v8-serialize-leak.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-v8-serialize-leak.js b/test/parallel/test-v8-serialize-leak.js index 4e3a1d96f8ad6e..a90c398adcdaf3 100644 --- a/test/parallel/test-v8-serialize-leak.js +++ b/test/parallel/test-v8-serialize-leak.js @@ -1,7 +1,12 @@ 'use strict'; // Flags: --expose-gc -require('../common'); +const common = require('../common'); + +// On IBMi, the rss memory always returns zero +if (common.isIBMi) + common.skip('On IBMi, the rss memory always returns zero'); + const v8 = require('v8'); const assert = require('assert'); From 919c5ee5c253180c4ab02deb93085c99760aeedb Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Thu, 23 Jun 2022 12:57:51 +0800 Subject: [PATCH 061/175] build: update main branch name in GH workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43481 Refs: https://github.com/nodejs/node/issues/33864 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel Reviewed-By: Darshan Sen Reviewed-By: Juan José Arboleda Reviewed-By: Tierney Cyren --- .github/workflows/build-tarball.yml | 1 - .github/workflows/build-windows.yml | 1 - .github/workflows/coverage-linux.yml | 3 ++- .github/workflows/coverage-windows.yml | 3 ++- .github/workflows/doc.yml | 1 - .github/workflows/linters.yml | 3 +-- .github/workflows/notify-force-push.yml | 1 - .github/workflows/test-asan.yml | 1 - .github/workflows/test-internet.yml | 1 - .github/workflows/test-linux.yml | 1 - .github/workflows/test-macos.yml | 1 - 11 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index 8c13541fd37d14..52e3ac97c68297 100644 --- a/.github/workflows/build-tarball.yml +++ b/.github/workflows/build-tarball.yml @@ -12,7 +12,6 @@ on: - '!.github/workflows/build-tarball.yml' push: branches: - - master - main - v[0-9]+.x-staging - v[0-9]+.x diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 5ab5f98739f579..c85c9976dfd380 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -9,7 +9,6 @@ on: types: [opened, synchronize, reopened, ready_for_review] push: branches: - - master - main - canary - v[0-9]+.x-staging diff --git a/.github/workflows/coverage-linux.yml b/.github/workflows/coverage-linux.yml index 77bad80cc269d5..5e8115a9245ded 100644 --- a/.github/workflows/coverage-linux.yml +++ b/.github/workflows/coverage-linux.yml @@ -11,7 +11,8 @@ on: - .github/** - '!.github/workflows/coverage-linux.yml' push: - branches: [master, main] + branches: + - main paths-ignore: - '**.md' - benchmark/** diff --git a/.github/workflows/coverage-windows.yml b/.github/workflows/coverage-windows.yml index 29e7ac689a2043..287872d79f3dee 100644 --- a/.github/workflows/coverage-windows.yml +++ b/.github/workflows/coverage-windows.yml @@ -12,7 +12,8 @@ on: - .github/** - '!.github/workflows/coverage-windows.yml' push: - branches: [master, main] + branches: + - main paths-ignore: - '**.md' - benchmark/** diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 1151c42967807a..474a8dd7eac45e 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -5,7 +5,6 @@ on: types: [opened, synchronize, reopened, ready_for_review] push: branches: - - master - main - v[0-9]+.x-staging - v[0-9]+.x diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 0fa577025211e9..c9873d188a8e14 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -5,7 +5,6 @@ on: types: [opened, synchronize, reopened, ready_for_review] push: branches: - - master - main - v[0-9]+.x-staging - v[0-9]+.x @@ -50,7 +49,7 @@ jobs: - name: Lint C/C++ files run: make lint-cpp format-cpp: - if: ${{ github.event.pull_request.draft == false && github.base_ref == 'master' }} + if: ${{ github.event.pull_request && github.event.pull_request.draft == false && github.base_ref == github.event.repository.default_branch }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/notify-force-push.yml b/.github/workflows/notify-force-push.yml index 4f43a7d715013c..32876584edb3c3 100644 --- a/.github/workflows/notify-force-push.yml +++ b/.github/workflows/notify-force-push.yml @@ -1,7 +1,6 @@ on: push: branches: - - master - main name: Notify on Force Push diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml index 87cf9edf672d47..b345eded201755 100644 --- a/.github/workflows/test-asan.yml +++ b/.github/workflows/test-asan.yml @@ -12,7 +12,6 @@ on: - '!.github/workflows/test-asan.yml' push: branches: - - master - main - canary - v[0-9]+.x-staging diff --git a/.github/workflows/test-internet.yml b/.github/workflows/test-internet.yml index 8325845963ecf9..75f508bfe01258 100644 --- a/.github/workflows/test-internet.yml +++ b/.github/workflows/test-internet.yml @@ -10,7 +10,6 @@ on: paths: [test/internet/**] push: branches: - - master - main - canary - v[0-9]+.x-staging diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 7d6f4303e9256e..b2fa9e0a0cbbb6 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -9,7 +9,6 @@ on: types: [opened, synchronize, reopened, ready_for_review] push: branches: - - master - main - canary - v[0-9]+.x-staging diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 0c76a44bae9695..f342dbfa0f130e 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -12,7 +12,6 @@ on: - '!.github/workflows/test-macos.yml' push: branches: - - master - main - canary - v[0-9]+.x-staging From bd91337988c061f77b7220e0e328ffbe7a1d83d7 Mon Sep 17 00:00:00 2001 From: Meek Simbule <55823259+meekdenzo@users.noreply.github.com> Date: Thu, 23 Jun 2022 15:52:05 -0500 Subject: [PATCH 062/175] test: refactor to top-level await PR-URL: https://github.com/nodejs/node/pull/43500 Reviewed-By: Rich Trott Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca --- ...r-address.js => test-debugger-address.mjs} | 47 +++++++++---------- 1 file changed, 22 insertions(+), 25 deletions(-) rename test/parallel/{test-debugger-address.js => test-debugger-address.mjs} (57%) diff --git a/test/parallel/test-debugger-address.js b/test/parallel/test-debugger-address.mjs similarity index 57% rename from test/parallel/test-debugger-address.js rename to test/parallel/test-debugger-address.mjs index e8cfd428ebcb05..eab99c9b0e2fb3 100644 --- a/test/parallel/test-debugger-address.js +++ b/test/parallel/test-debugger-address.mjs @@ -1,13 +1,12 @@ -'use strict'; -const common = require('../common'); +import { skipIfInspectorDisabled } from '../common/index.mjs'; -common.skipIfInspectorDisabled(); +skipIfInspectorDisabled(); -const fixtures = require('../common/fixtures'); -const startCLI = require('../common/debugger'); +import * as fixtures from '../common/fixtures.mjs'; +import startCLI from '../common/debugger.js'; -const assert = require('assert'); -const { spawn } = require('child_process'); +import assert from 'assert'; +import { spawn } from 'child_process'; // NOTE(oyyd): We might want to import this regexp from "lib/_inspect.js"? const kDebuggerMsgReg = /Debugger listening on ws:\/\/\[?(.+?)\]?:(\d+)\//; @@ -53,22 +52,20 @@ function launchTarget(...args) { assert.ifError(error); } - (async () => { - try { - const { childProc, host, port } = await launchTarget('--inspect=0', script); - target = childProc; - cli = startCLI([`${host || '127.0.0.1'}:${port}`]); - await cli.waitForPrompt(); - await cli.command('sb("alive.js", 3)'); - await cli.waitFor(/break/); - await cli.waitForPrompt(); - assert.match( - cli.output, - /> 3 {3}\+\+x;/, - 'marks the 3rd line' - ); - } finally { - cleanup(); - } - })().then(common.mustCall()); + try { + const { childProc, host, port } = await launchTarget('--inspect=0', script); + target = childProc; + cli = startCLI([`${host || '127.0.0.1'}:${port}`]); + await cli.waitForPrompt(); + await cli.command('sb("alive.js", 3)'); + await cli.waitFor(/break/); + await cli.waitForPrompt(); + assert.match( + cli.output, + /> 3 {3}\+\+x;/, + 'marks the 3rd line' + ); + } finally { + cleanup(); + } } From 0636f86eccdf1c343fe94c16926160dbdefa2553 Mon Sep 17 00:00:00 2001 From: npm CLI robot Date: Fri, 24 Jun 2022 18:21:50 -0700 Subject: [PATCH 063/175] deps: upgrade npm to 8.13.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43552 Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen Reviewed-By: Mohammed Keyvanzadeh --- deps/npm/docs/content/commands/npm-cache.md | 7 +- deps/npm/docs/content/commands/npm-ci.md | 2 +- .../docs/content/commands/npm-deprecate.md | 7 +- .../npm/docs/content/commands/npm-dist-tag.md | 17 +- deps/npm/docs/content/commands/npm-explain.md | 10 +- deps/npm/docs/content/commands/npm-fund.md | 25 +- deps/npm/docs/content/commands/npm-init.md | 37 ++- .../content/commands/npm-install-ci-test.md | 2 +- .../docs/content/commands/npm-install-test.md | 11 +- deps/npm/docs/content/commands/npm-install.md | 11 +- deps/npm/docs/content/commands/npm-link.md | 14 +- deps/npm/docs/content/commands/npm-ls.md | 3 +- .../npm/docs/content/commands/npm-outdated.md | 3 +- deps/npm/docs/content/commands/npm-owner.md | 7 +- deps/npm/docs/content/commands/npm-pack.md | 3 +- deps/npm/docs/content/commands/npm-publish.md | 51 ++-- deps/npm/docs/content/commands/npm-rebuild.md | 8 +- deps/npm/docs/content/commands/npm-restart.md | 2 +- .../docs/content/commands/npm-run-script.md | 2 +- deps/npm/docs/content/commands/npm-star.md | 3 +- deps/npm/docs/content/commands/npm-start.md | 2 +- deps/npm/docs/content/commands/npm-stop.md | 2 +- deps/npm/docs/content/commands/npm-test.md | 2 +- .../docs/content/commands/npm-unpublish.md | 3 +- deps/npm/docs/content/commands/npm-unstar.md | 2 +- deps/npm/docs/content/commands/npm-view.md | 3 +- .../content/configuring-npm/package-json.md | 2 +- deps/npm/docs/content/using-npm/config.md | 2 +- .../docs/content/using-npm/package-spec.md | 106 ++++++++ deps/npm/docs/output/commands/npm-cache.html | 7 +- deps/npm/docs/output/commands/npm-ci.html | 2 +- .../docs/output/commands/npm-deprecate.html | 3 +- .../docs/output/commands/npm-dist-tag.html | 17 +- .../npm/docs/output/commands/npm-explain.html | 9 +- deps/npm/docs/output/commands/npm-fund.html | 25 +- deps/npm/docs/output/commands/npm-init.html | 29 +- .../output/commands/npm-install-ci-test.html | 2 +- .../output/commands/npm-install-test.html | 11 +- .../npm/docs/output/commands/npm-install.html | 11 +- deps/npm/docs/output/commands/npm-link.html | 14 +- deps/npm/docs/output/commands/npm-ls.html | 5 +- .../docs/output/commands/npm-outdated.html | 3 +- deps/npm/docs/output/commands/npm-owner.html | 7 +- deps/npm/docs/output/commands/npm-pack.html | 3 +- .../npm/docs/output/commands/npm-publish.html | 62 ++--- .../npm/docs/output/commands/npm-rebuild.html | 8 +- .../npm/docs/output/commands/npm-restart.html | 2 +- .../docs/output/commands/npm-run-script.html | 2 +- deps/npm/docs/output/commands/npm-star.html | 3 +- deps/npm/docs/output/commands/npm-start.html | 2 +- deps/npm/docs/output/commands/npm-stop.html | 2 +- deps/npm/docs/output/commands/npm-test.html | 2 +- .../docs/output/commands/npm-unpublish.html | 3 +- deps/npm/docs/output/commands/npm-unstar.html | 2 +- deps/npm/docs/output/commands/npm-view.html | 3 +- deps/npm/docs/output/commands/npm.html | 2 +- .../output/configuring-npm/package-json.html | 2 +- deps/npm/docs/output/using-npm/config.html | 2 +- .../docs/output/using-npm/package-spec.html | 254 ++++++++++++++++++ deps/npm/lib/auth/legacy.js | 12 +- deps/npm/lib/commands/cache.js | 6 +- deps/npm/lib/commands/deprecate.js | 2 +- deps/npm/lib/commands/dist-tag.js | 8 +- deps/npm/lib/commands/explain.js | 2 +- deps/npm/lib/commands/fund.js | 2 +- deps/npm/lib/commands/init.js | 4 +- deps/npm/lib/commands/install.js | 13 +- deps/npm/lib/commands/link.js | 3 +- deps/npm/lib/commands/ls.js | 2 +- deps/npm/lib/commands/outdated.js | 2 +- deps/npm/lib/commands/owner.js | 6 +- deps/npm/lib/commands/pack.js | 2 +- deps/npm/lib/commands/publish.js | 2 +- deps/npm/lib/commands/rebuild.js | 2 +- deps/npm/lib/commands/star.js | 2 +- deps/npm/lib/commands/unpublish.js | 2 +- deps/npm/lib/commands/view.js | 11 +- deps/npm/lib/utils/config/definitions.js | 6 +- deps/npm/lib/utils/open-url-prompt.js | 69 +++++ deps/npm/man/man1/npm-cache.1 | 8 +- deps/npm/man/man1/npm-ci.1 | 2 +- deps/npm/man/man1/npm-deprecate.1 | 8 +- deps/npm/man/man1/npm-dist-tag.1 | 18 +- deps/npm/man/man1/npm-explain.1 | 11 +- deps/npm/man/man1/npm-fund.1 | 26 +- deps/npm/man/man1/npm-init.1 | 41 ++- deps/npm/man/man1/npm-install-ci-test.1 | 2 +- deps/npm/man/man1/npm-install-test.1 | 11 +- deps/npm/man/man1/npm-install.1 | 11 +- deps/npm/man/man1/npm-link.1 | 15 +- deps/npm/man/man1/npm-ls.1 | 6 +- deps/npm/man/man1/npm-outdated.1 | 4 +- deps/npm/man/man1/npm-owner.1 | 8 +- deps/npm/man/man1/npm-pack.1 | 4 +- deps/npm/man/man1/npm-publish.1 | 49 ++-- deps/npm/man/man1/npm-rebuild.1 | 9 +- deps/npm/man/man1/npm-restart.1 | 2 +- deps/npm/man/man1/npm-run-script.1 | 2 +- deps/npm/man/man1/npm-star.1 | 4 +- deps/npm/man/man1/npm-start.1 | 2 +- deps/npm/man/man1/npm-stop.1 | 2 +- deps/npm/man/man1/npm-test.1 | 2 +- deps/npm/man/man1/npm-unpublish.1 | 4 +- deps/npm/man/man1/npm-unstar.1 | 2 +- deps/npm/man/man1/npm-view.1 | 4 +- deps/npm/man/man1/npm.1 | 2 +- deps/npm/man/man5/package-json.5 | 2 +- deps/npm/man/man7/config.7 | 2 +- deps/npm/man/man7/package-spec.7 | 145 ++++++++++ .../arborist/lib/arborist/build-ideal-tree.js | 2 +- .../@npmcli/arborist/package.json | 6 +- .../@npmcli/run-script/lib/escape.js | 71 +++++ .../@npmcli/run-script/lib/make-spawn-args.js | 92 ++++++- .../@npmcli/run-script/lib/run-script-pkg.js | 13 +- .../@npmcli/run-script/package.json | 6 +- .../node_modules/cacache/lib/content/read.js | 10 +- deps/npm/node_modules/cacache/package.json | 6 +- deps/npm/node_modules/libnpmdiff/package.json | 4 +- deps/npm/node_modules/libnpmexec/package.json | 6 +- deps/npm/node_modules/libnpmpack/package.json | 6 +- .../node_modules/libnpmversion/package.json | 4 +- .../make-fetch-happen/lib/agent.js | 5 +- .../make-fetch-happen/package.json | 4 +- .../npm/node_modules/npm-profile/lib/index.js | 23 +- .../npm/node_modules/npm-profile/package.json | 6 +- deps/npm/node_modules/pacote/package.json | 4 +- .../socks-proxy-agent/package.json | 48 ++-- deps/npm/package.json | 12 +- .../test/lib/load-all-commands.js.test.cjs | 83 ++---- .../tap-snapshots/test/lib/npm.js.test.cjs | 83 ++---- .../lib/utils/config/definitions.js.test.cjs | 2 +- .../lib/utils/config/describe-all.js.test.cjs | 2 +- .../lib/utils/open-url-prompt.js.test.cjs | 25 ++ deps/npm/test/lib/auth/legacy.js | 2 +- deps/npm/test/lib/commands/edit.js | 31 ++- deps/npm/test/lib/commands/restart.js | 12 +- deps/npm/test/lib/commands/start.js | 13 +- deps/npm/test/lib/commands/stop.js | 12 +- deps/npm/test/lib/commands/test.js | 12 +- deps/npm/test/lib/commands/view.js | 9 + deps/npm/test/lib/utils/open-url-prompt.js | 150 +++++++++++ 141 files changed, 1566 insertions(+), 612 deletions(-) create mode 100644 deps/npm/docs/content/using-npm/package-spec.md create mode 100644 deps/npm/docs/output/using-npm/package-spec.html create mode 100644 deps/npm/lib/utils/open-url-prompt.js create mode 100644 deps/npm/man/man7/package-spec.7 create mode 100644 deps/npm/node_modules/@npmcli/run-script/lib/escape.js create mode 100644 deps/npm/tap-snapshots/test/lib/utils/open-url-prompt.js.test.cjs create mode 100644 deps/npm/test/lib/utils/open-url-prompt.js diff --git a/deps/npm/docs/content/commands/npm-cache.md b/deps/npm/docs/content/commands/npm-cache.md index 091e26e8a71828..b5eddd46c05a7d 100644 --- a/deps/npm/docs/content/commands/npm-cache.md +++ b/deps/npm/docs/content/commands/npm-cache.md @@ -11,11 +11,7 @@ description: Manipulates packages cache ```bash -npm cache add -npm cache add -npm cache add -npm cache add -npm cache add @ +npm cache add npm cache clean [] npm cache ls [@] npm cache verify @@ -101,6 +97,7 @@ cache`](/commands/npm-cache) ### See Also +* [package spec](/using-npm/package-spec) * [npm folders](/configuring-npm/folders) * [npm config](/commands/npm-config) * [npmrc](/configuring-npm/npmrc) diff --git a/deps/npm/docs/content/commands/npm-ci.md b/deps/npm/docs/content/commands/npm-ci.md index 3374bf1e25136b..9b8238d05a3b91 100644 --- a/deps/npm/docs/content/commands/npm-ci.md +++ b/deps/npm/docs/content/commands/npm-ci.md @@ -133,7 +133,7 @@ will *not* run any pre- or post-scripts. * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/commands/npm-deprecate.md b/deps/npm/docs/content/commands/npm-deprecate.md index 4345120d3744b3..20f65140fc735f 100644 --- a/deps/npm/docs/content/commands/npm-deprecate.md +++ b/deps/npm/docs/content/commands/npm-deprecate.md @@ -11,7 +11,7 @@ description: Deprecate a version of a package ```bash -npm deprecate [@] +npm deprecate ``` @@ -45,8 +45,8 @@ In this case, a version `my-thing@1.0.0-beta.0` will also be deprecated. You must be the package owner to deprecate something. See the `owner` and `adduser` help topics. -To un-deprecate a package, specify an empty string (`""`) for the `message` -argument. Note that you must use double quotes with no space between them to +To un-deprecate a package, specify an empty string (`""`) for the `message` +argument. Note that you must use double quotes with no space between them to format an empty string. ### Configuration @@ -82,6 +82,7 @@ password, npm will prompt on the command line for one. ### See Also +* [package spec](/using-npm/package-spec) * [npm publish](/commands/npm-publish) * [npm registry](/using-npm/registry) * [npm owner](/commands/npm-owner) diff --git a/deps/npm/docs/content/commands/npm-dist-tag.md b/deps/npm/docs/content/commands/npm-dist-tag.md index b9caf1fbe7fa9c..123e67dbf3b235 100644 --- a/deps/npm/docs/content/commands/npm-dist-tag.md +++ b/deps/npm/docs/content/commands/npm-dist-tag.md @@ -11,9 +11,9 @@ description: Modify package distribution tags ```bash -npm dist-tag add @ [] -npm dist-tag rm -npm dist-tag ls [] +npm dist-tag add [] +npm dist-tag rm +npm dist-tag ls [] alias: dist-tags ``` @@ -27,11 +27,11 @@ alias: dist-tags Add, remove, and enumerate distribution tags on a package: -* add: Tags the specified version of the package with the specified tag, or - the `--tag` config if not specified. If you have two-factor - authentication on auth-and-writes then you’ll need to include a one-time - password on the command line with `--otp `, or at the - OTP prompt. +* add: Tags the specified version of the package with the specified tag, + or the `--tag` config if not specified. If you have two-factor + authentication on auth-and-writes then you’ll need to include a + one-time password on the command line with + `--otp `, or at the OTP prompt. * rm: Clear a tag that is no longer in use from the package. If you have two-factor authentication on auth-and-writes then you’ll need to include @@ -168,6 +168,7 @@ This value is not exported to the environment for child processes. ### See Also +* [package spec](/using-npm/package-spec) * [npm publish](/commands/npm-publish) * [npm install](/commands/npm-install) * [npm dedupe](/commands/npm-dedupe) diff --git a/deps/npm/docs/content/commands/npm-explain.md b/deps/npm/docs/content/commands/npm-explain.md index 765221056585d9..5ba2fe8206ba16 100644 --- a/deps/npm/docs/content/commands/npm-explain.md +++ b/deps/npm/docs/content/commands/npm-explain.md @@ -11,7 +11,7 @@ description: Explain installed packages ```bash -npm explain +npm explain alias: why ``` @@ -26,9 +26,10 @@ alias: why This command will print the chain of dependencies causing a given package to be installed in the current project. -Positional arguments can be either folders within `node_modules`, or -`name@version-range` specifiers, which will select the dependency -relationships to explain. +If one or more package specs are provided, then only packages matching +one of the specifiers will have their relationships explained. + +The package spec can also refer to a folder within `./node_modules` For example, running `npm explain glob` within npm's source tree will show: @@ -110,6 +111,7 @@ This value is not exported to the environment for child processes. ### See Also +* [package spec](/using-npm/package-spec) * [npm config](/commands/npm-config) * [npmrc](/configuring-npm/npmrc) * [npm folders](/configuring-npm/folders) diff --git a/deps/npm/docs/content/commands/npm-fund.md b/deps/npm/docs/content/commands/npm-fund.md index 5b96e91ab8ccb9..8db0ce910de967 100644 --- a/deps/npm/docs/content/commands/npm-fund.md +++ b/deps/npm/docs/content/commands/npm-fund.md @@ -11,7 +11,7 @@ description: Retrieve funding information ```bash -npm fund [[<@scope>/]] +npm fund [] ``` @@ -23,22 +23,22 @@ npm fund [[<@scope>/]] This command retrieves information on how to fund the dependencies of a given project. If no package name is provided, it will list all -dependencies that are looking for funding in a tree structure, listing the -type of funding and the url to visit. If a package name is provided then it -tries to open its funding url using the `--browser` config param; if there -are multiple funding sources for the package, the user will be instructed -to pass the `--which` option to disambiguate. +dependencies that are looking for funding in a tree structure, listing +the type of funding and the url to visit. If a package name is provided +then it tries to open its funding url using the `--browser` config +param; if there are multiple funding sources for the package, the user +will be instructed to pass the `--which` option to disambiguate. The list will avoid duplicated entries and will stack all packages that -share the same url as a single entry. Thus, the list does not have the same -shape of the output from `npm ls`. +share the same url as a single entry. Thus, the list does not have the +same shape of the output from `npm ls`. #### Example ### Workspaces support -It's possible to filter the results to only include a single workspace and its -dependencies using the `workspace` config option. +It's possible to filter the results to only include a single workspace +and its dependencies using the `workspace` config option. #### Example: @@ -58,8 +58,8 @@ test-workspaces-fund@1.0.0 `-- bar@2.0.0 ``` -And here is an example of the expected result when filtering only by -a specific workspace `a` in the same project: +And here is an example of the expected result when filtering only by a +specific workspace `a` in the same project: ```bash $ npm fund -w a @@ -156,6 +156,7 @@ If there are multiple funding sources, which 1-indexed source URL to open. ## See Also +* [package spec](/using-npm/package-spec) * [npm install](/commands/npm-install) * [npm docs](/commands/npm-docs) * [npm ls](/commands/npm-ls) diff --git a/deps/npm/docs/content/commands/npm-init.md b/deps/npm/docs/content/commands/npm-init.md index 35343cceb4aa13..cd0be4643e0ead 100644 --- a/deps/npm/docs/content/commands/npm-init.md +++ b/deps/npm/docs/content/commands/npm-init.md @@ -11,9 +11,8 @@ description: Create a package.json file ```bash -npm init [--force|-f|--yes|-y|--scope] +npm init (same as `npx ) npm init <@scope> (same as `npx <@scope>/create`) -npm init [<@scope>/] (same as `npx [<@scope>/]create-`) aliases: create, innit ``` @@ -204,6 +203,39 @@ mistakes, unnecessary performance degradation, and malicious input. If you don't have a clear idea of what you want to do, it is strongly recommended that you do not use this option! + + + +#### `scope` + +* Default: the scope of the current project, if any, or "" +* Type: String + +Associate an operation with a scope for a scoped registry. + +Useful when logging in to or out of a private registry: + +``` +# log in, linking the scope to the custom registry +npm login --scope=@mycorp --registry=https://registry.mycorp.com + +# log out, removing the link and the auth token +npm logout --scope=@mycorp +``` + +This will cause `@mycorp` to be mapped to the registry for future +installation of packages specified according to the pattern +`@mycorp/package`. + +This will also cause `npm init` to create a scoped package. + +``` +# accept all defaults, and create a package named "@foo/whatever", +# instead of just named "whatever" +npm init --scope=@foo --yes +``` + + @@ -284,6 +316,7 @@ This value is not exported to the environment for child processes. ### See Also +* [package spec](/using-npm/package-spec) * [init-package-json module](http://npm.im/init-package-json) * [package.json](/configuring-npm/package-json) * [npm version](/commands/npm-version) diff --git a/deps/npm/docs/content/commands/npm-install-ci-test.md b/deps/npm/docs/content/commands/npm-install-ci-test.md index 0d9470acf58b3d..74ed4667e81bfe 100644 --- a/deps/npm/docs/content/commands/npm-install-ci-test.md +++ b/deps/npm/docs/content/commands/npm-install-ci-test.md @@ -79,7 +79,7 @@ will *not* run any pre- or post-scripts. * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/commands/npm-install-test.md b/deps/npm/docs/content/commands/npm-install-test.md index 3dd860ea5c6f68..d27686e731ce16 100644 --- a/deps/npm/docs/content/commands/npm-install-test.md +++ b/deps/npm/docs/content/commands/npm-install-test.md @@ -11,16 +11,7 @@ description: Install package(s) and run tests ```bash -npm install-test [<@scope>/] -npm install-test [<@scope>/]@ -npm install-test [<@scope>/]@ -npm install-test [<@scope>/]@ -npm install-test @npm: -npm install-test -npm install-test -npm install-test -npm install-test -npm install-test / +npm install-test [ ...] alias: it ``` diff --git a/deps/npm/docs/content/commands/npm-install.md b/deps/npm/docs/content/commands/npm-install.md index d6668a2c2bd0fb..7e5544f85e3dda 100644 --- a/deps/npm/docs/content/commands/npm-install.md +++ b/deps/npm/docs/content/commands/npm-install.md @@ -11,16 +11,7 @@ description: Install a package ```bash -npm install [<@scope>/] -npm install [<@scope>/]@ -npm install [<@scope>/]@ -npm install [<@scope>/]@ -npm install @npm: -npm install -npm install -npm install -npm install -npm install / +npm install [ ...] aliases: add, i, in, ins, inst, insta, instal, isnt, isnta, isntal, isntall ``` diff --git a/deps/npm/docs/content/commands/npm-link.md b/deps/npm/docs/content/commands/npm-link.md index 975c807c38b348..8c1b422493bd57 100644 --- a/deps/npm/docs/content/commands/npm-link.md +++ b/deps/npm/docs/content/commands/npm-link.md @@ -11,8 +11,7 @@ description: Symlink a package folder ```bash -npm link (in package dir) -npm link [<@scope>/][@] +npm link [] alias: ln ``` @@ -29,11 +28,11 @@ test iteratively without having to continually rebuild. Package linking is a two-step process. -First, `npm link` in a package folder will create a symlink in the global -folder `{prefix}/lib/node_modules/` that links to the package -where the `npm link` command was executed. It will also link any bins in -the package to `{prefix}/bin/{name}`. Note that `npm link` uses the global -prefix (see `npm prefix -g` for its value). +First, `npm link` in a package folder with no arguments will create a +symlink in the global folder `{prefix}/lib/node_modules/` that +links to the package where the `npm link` command was executed. It will +also link any bins in the package to `{prefix}/bin/{name}`. Note that +`npm link` uses the global prefix (see `npm prefix -g` for its value). Next, in some other location, `npm link package-name` will create a symbolic link from globally-installed `package-name` to `node_modules/` of @@ -399,6 +398,7 @@ symlink. This option has no effect on workspaces. ### See Also +* [package spec](/using-npm/package-spec) * [npm developers](/using-npm/developers) * [package.json](/configuring-npm/package-json) * [npm install](/commands/npm-install) diff --git a/deps/npm/docs/content/commands/npm-ls.md b/deps/npm/docs/content/commands/npm-ls.md index ded8c0c0d26ef1..a97c5168e6e0b4 100644 --- a/deps/npm/docs/content/commands/npm-ls.md +++ b/deps/npm/docs/content/commands/npm-ls.md @@ -11,7 +11,7 @@ description: List installed packages ```bash -npm ls [[<@scope>/] ...] +npm ls alias: list ``` @@ -301,6 +301,7 @@ symlink. This option has no effect on workspaces. ### See Also +* [package spec](/using-npm/package-spec) * [npm explain](/commands/npm-explain) * [npm config](/commands/npm-config) * [npmrc](/configuring-npm/npmrc) diff --git a/deps/npm/docs/content/commands/npm-outdated.md b/deps/npm/docs/content/commands/npm-outdated.md index 6fa026550e7477..c4e07a0cd36f02 100644 --- a/deps/npm/docs/content/commands/npm-outdated.md +++ b/deps/npm/docs/content/commands/npm-outdated.md @@ -11,7 +11,7 @@ description: Check for outdated packages ```bash -npm outdated [[<@scope>/] ...] +npm outdated [ ...] ``` @@ -192,6 +192,7 @@ This value is not exported to the environment for child processes. ### See Also +* [package spec](/using-npm/package-spec) * [npm update](/commands/npm-update) * [npm dist-tag](/commands/npm-dist-tag) * [npm registry](/using-npm/registry) diff --git a/deps/npm/docs/content/commands/npm-owner.md b/deps/npm/docs/content/commands/npm-owner.md index 72dfe6a22d01b0..ebc29ef6939392 100644 --- a/deps/npm/docs/content/commands/npm-owner.md +++ b/deps/npm/docs/content/commands/npm-owner.md @@ -11,9 +11,9 @@ description: Manage package owners ```bash -npm owner add [<@scope>/] -npm owner rm [<@scope>/] -npm owner ls [<@scope>/] +npm owner add +npm owner rm +npm owner ls alias: author ``` @@ -123,6 +123,7 @@ This value is not exported to the environment for child processes. ### See Also +* [package spec](/using-npm/package-spec) * [npm profile](/commands/npm-profile) * [npm publish](/commands/npm-publish) * [npm registry](/using-npm/registry) diff --git a/deps/npm/docs/content/commands/npm-pack.md b/deps/npm/docs/content/commands/npm-pack.md index fa6c005e9d2287..7921042eae8fe0 100644 --- a/deps/npm/docs/content/commands/npm-pack.md +++ b/deps/npm/docs/content/commands/npm-pack.md @@ -11,7 +11,7 @@ description: Create a tarball from a package ```bash -npm pack [[<@scope>/]...] +npm pack ``` @@ -144,6 +144,7 @@ If no arguments are supplied, then npm packs the current package folder. ### See Also +* [package spec](/using-npm/package-spec) * [npm-packlist package](http://npm.im/npm-packlist) * [npm cache](/commands/npm-cache) * [npm publish](/commands/npm-publish) diff --git a/deps/npm/docs/content/commands/npm-publish.md b/deps/npm/docs/content/commands/npm-publish.md index 2995f6bc81551e..536d04988e6849 100644 --- a/deps/npm/docs/content/commands/npm-publish.md +++ b/deps/npm/docs/content/commands/npm-publish.md @@ -11,7 +11,7 @@ description: Publish a package ```bash -npm publish [] +npm publish ``` @@ -23,42 +23,26 @@ npm publish [] Publishes a package to the registry so that it can be installed by name. -By default npm will publish to the public registry. This can be overridden -by specifying a different default registry or using a -[`scope`](/using-npm/scope) in the name (see +By default npm will publish to the public registry. This can be +overridden by specifying a different default registry or using a +[`scope`](/using-npm/scope) in the name, combined with a +scope-configured registry (see [`package.json`](/configuring-npm/package-json)). -* ``: A folder containing a package.json file -* ``: A url or file path to a gzipped tar archive containing a - single folder with a package.json file inside. +A `package` is interpreted the same way as other commands (like +`npm install` and can be: -* `[--tag ]`: Registers the published package with the given tag, such - that `npm install @` will install this version. By default, - `npm publish` updates and `npm install` installs the `latest` tag. See - [`npm-dist-tag`](npm-dist-tag) for details about tags. - -* `[--access ]`: Tells the registry whether this package - should be published as public or restricted. Only applies to scoped - packages, which default to `restricted`. If you don't have a paid - account, you must publish with `--access public` to publish scoped - packages. - -* `[--otp ]`: If you have two-factor authentication enabled in - `auth-and-writes` mode then you can provide a code from your - authenticator with this. If you don't include this and you're running - from a TTY then you'll be prompted. - -* `[--dry-run]`: As of `npm@6`, does everything publish would do except - actually publishing to the registry. Reports the details of what would - have been published. - -* `[--workspaces]`: Enables workspace context while publishing. All - workspace packages will be published. - -* `[--workspace]`: Enables workspaces context and limits results to only - those specified by this config item. Only the packages in the - workspaces given will be published. +* a) a folder containing a program described by a + [`package.json`](/configuring-npm/package-json) file +* b) a gzipped tarball containing (a) +* c) a url that resolves to (b) +* d) a `@` that is published on the registry (see + [`registry`](/using-npm/registry)) with (c) +* e) a `@` (see [`npm dist-tag`](/commands/npm-dist-tag)) that + points to (d) +* f) a `` that has a "latest" tag satisfying (e) +* g) a `` that resolves to (a) The publish will fail if the package name and version combination already exists in the specified registry. @@ -247,6 +231,7 @@ This value is not exported to the environment for child processes. ### See Also +* [package spec](/using-npm/package-spec) * [npm-packlist package](http://npm.im/npm-packlist) * [npm registry](/using-npm/registry) * [npm scope](/using-npm/scope) diff --git a/deps/npm/docs/content/commands/npm-rebuild.md b/deps/npm/docs/content/commands/npm-rebuild.md index 52c368c8c513b9..6a396421213d3d 100644 --- a/deps/npm/docs/content/commands/npm-rebuild.md +++ b/deps/npm/docs/content/commands/npm-rebuild.md @@ -11,7 +11,7 @@ description: Rebuild a package ```bash -npm rebuild [[<@scope>/][@] ...] +npm rebuild [] ...] alias: rb ``` @@ -29,9 +29,8 @@ C++ addons with the new binary. It is also useful when installing with `--ignore-scripts` and `--no-bin-links`, to explicitly choose which packages to build and/or link bins. -If one or more package names (and optionally version ranges) are provided, -then only packages with a name and version matching one of the specifiers -will be rebuilt. +If one or more package specs are provided, then only packages with a +name and version matching one of the specifiers will be rebuilt. ### Configuration @@ -178,4 +177,5 @@ symlink. This option has no effect on workspaces. ### See Also +* [package spec](/using-npm/package-spec) * [npm install](/commands/npm-install) diff --git a/deps/npm/docs/content/commands/npm-restart.md b/deps/npm/docs/content/commands/npm-restart.md index f01cd014e74357..048bebb1659bd3 100644 --- a/deps/npm/docs/content/commands/npm-restart.md +++ b/deps/npm/docs/content/commands/npm-restart.md @@ -69,7 +69,7 @@ will *not* run any pre- or post-scripts. * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/commands/npm-run-script.md b/deps/npm/docs/content/commands/npm-run-script.md index 73c4b1c7a748a7..d94040f1a215d1 100644 --- a/deps/npm/docs/content/commands/npm-run-script.md +++ b/deps/npm/docs/content/commands/npm-run-script.md @@ -246,7 +246,7 @@ will *not* run any pre- or post-scripts. * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/commands/npm-star.md b/deps/npm/docs/content/commands/npm-star.md index 00ef17a816b4ae..3e81c6a55bbb05 100644 --- a/deps/npm/docs/content/commands/npm-star.md +++ b/deps/npm/docs/content/commands/npm-star.md @@ -11,7 +11,7 @@ description: Mark your favorite packages ```bash -npm star [...] +npm star [...] ``` @@ -87,6 +87,7 @@ password, npm will prompt on the command line for one. ### See Also +* [package spec](/using-npm/package-spec) * [npm unstar](/commands/npm-unstar) * [npm stars](/commands/npm-stars) * [npm view](/commands/npm-view) diff --git a/deps/npm/docs/content/commands/npm-start.md b/deps/npm/docs/content/commands/npm-start.md index 8dd874b3c7d291..148f92606d83fb 100644 --- a/deps/npm/docs/content/commands/npm-start.md +++ b/deps/npm/docs/content/commands/npm-start.md @@ -80,7 +80,7 @@ will *not* run any pre- or post-scripts. * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/commands/npm-stop.md b/deps/npm/docs/content/commands/npm-stop.md index 9a3a55cf3f20e6..a3084e8432ba77 100644 --- a/deps/npm/docs/content/commands/npm-stop.md +++ b/deps/npm/docs/content/commands/npm-stop.md @@ -73,7 +73,7 @@ will *not* run any pre- or post-scripts. * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/commands/npm-test.md b/deps/npm/docs/content/commands/npm-test.md index 8a343ab299b34c..72bb899d0b9165 100644 --- a/deps/npm/docs/content/commands/npm-test.md +++ b/deps/npm/docs/content/commands/npm-test.md @@ -70,7 +70,7 @@ will *not* run any pre- or post-scripts. * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/commands/npm-unpublish.md b/deps/npm/docs/content/commands/npm-unpublish.md index a4c481ea5af7f7..9ad99e72a5a8e0 100644 --- a/deps/npm/docs/content/commands/npm-unpublish.md +++ b/deps/npm/docs/content/commands/npm-unpublish.md @@ -11,7 +11,7 @@ description: Remove a package from the registry ```bash -npm unpublish [<@scope>/][@] +npm unpublish [] ``` @@ -146,6 +146,7 @@ This value is not exported to the environment for child processes. ### See Also +* [package spec](/using-npm/package-spec) * [npm deprecate](/commands/npm-deprecate) * [npm publish](/commands/npm-publish) * [npm registry](/using-npm/registry) diff --git a/deps/npm/docs/content/commands/npm-unstar.md b/deps/npm/docs/content/commands/npm-unstar.md index 76202190da8c35..636e1b6ac0a947 100644 --- a/deps/npm/docs/content/commands/npm-unstar.md +++ b/deps/npm/docs/content/commands/npm-unstar.md @@ -11,7 +11,7 @@ description: Remove an item from your favorite packages ```bash -npm unstar [...] +npm unstar [...] ``` diff --git a/deps/npm/docs/content/commands/npm-view.md b/deps/npm/docs/content/commands/npm-view.md index 0ef17d8adfb39b..d9d1daac0cda7d 100644 --- a/deps/npm/docs/content/commands/npm-view.md +++ b/deps/npm/docs/content/commands/npm-view.md @@ -11,7 +11,7 @@ description: View registry info ```bash -npm view [<@scope>/][@] [[.subfield]...] +npm view [] [[.subfield]...] aliases: info, show, v ``` @@ -203,6 +203,7 @@ the field name. ### See Also +* [package spec](/using-npm/package-spec) * [npm search](/commands/npm-search) * [npm registry](/using-npm/registry) * [npm config](/commands/npm-config) diff --git a/deps/npm/docs/content/configuring-npm/package-json.md b/deps/npm/docs/content/configuring-npm/package-json.md index 8b188cfb0b9380..64081350af271f 100644 --- a/deps/npm/docs/content/configuring-npm/package-json.md +++ b/deps/npm/docs/content/configuring-npm/package-json.md @@ -222,7 +222,7 @@ npm also sets a top-level "maintainers" field with your npm user info. ### funding -You can specify an object containing an URL that provides up-to-date +You can specify an object containing a URL that provides up-to-date information about ways to help fund development of your package, or a string URL, or an array of these: diff --git a/deps/npm/docs/content/using-npm/config.md b/deps/npm/docs/content/using-npm/config.md index 6ef854eb6e0ff4..3fb431402669f5 100644 --- a/deps/npm/docs/content/using-npm/config.md +++ b/deps/npm/docs/content/using-npm/config.md @@ -1518,7 +1518,7 @@ npm init --scope=@foo --yes * Type: null or String The shell to use for scripts run with the `npm exec`, `npm run` and `npm -init ` commands. +init ` commands. diff --git a/deps/npm/docs/content/using-npm/package-spec.md b/deps/npm/docs/content/using-npm/package-spec.md new file mode 100644 index 00000000000000..0d3741018f036f --- /dev/null +++ b/deps/npm/docs/content/using-npm/package-spec.md @@ -0,0 +1,106 @@ +--- +title: package-spec +section: 7 +description: Package name specifier +--- + + +### Description + +Commands like `npm install` and the dependency sections in the +`package.json` use a package name specifier. This can be many different +things that all refer to a "package". Examples include a package name, +git url, tarball, or local directory. These will generally be referred +to as `` in the help output for the npm commands that use +this package name specifier. + +### Package name + +* `[<@scope>/]` +* `[<@scope>/]@` +* `[<@scope>/]@` +* `[<@scope>/]@` + +Refers to a package by name, with or without a scope, and optionally +tag, version, or version range. This is typically used in combination +with the [registry](/using-npm/config#registry) config to refer to a +package in a registry. + +Examples: +* `npm` +* `@npmcli/arborist` +* `@npmcli/arborist@latest` +* `npm@6.13.1` +* `npm@^4.0.0` + +### Aliases + +* `@npm:` + +Primarily used by commands like `npm install` and in the dependency +sections in the `package.json`, this refers to a package by an alias. +The `` is the name of the package as it is reified in the +`node_modules` folder, and the `` refers to a package name as +found in the configured registry. + +See `Package name` above for more info on referring to a package by +name, and [registry](/using-npm/config#registry) for configuring which +registry is used when referring to a package by name. + +Examples: +* `semver:@npm:@npmcli/semver-with-patch` +* `semver:@npm:semver@7.2.2` +* `semver:@npm:semver@legacy` + +### Folders + +* `` + +This refers to a package on the local filesystem. Specifically this is +a folder with a `package.json` file in it. This *should* always be +prefixed with a `/` or `./` (or your OS equivalent) to reduce confusion. +npm currently will parse a string with more than one `/` in it as a +folder, but this is legacy behavior that may be removed in a future +version. + +Examples: + +* `./my-package` +* `/opt/npm/my-package` + +### Tarballs + +* `` +* `` + +Examples: + +* `./my-package.tgz` +* `https://registry.npmjs.org/semver/-/semver-1.0.0.tgz` + +Refers to a package in a tarball format, either on the local filesystem +or remotely via url. This is the format that packages exist in when +uploaded to a registry. + +### git urls + +* `` +* `/` + +Refers to a package in a git repo. This can be a full git url, git +shorthand, or a username/package on GitHub. You can specify a +git tag, branch, or other git ref by appending `#ref`. + +Examples: + +* `https://github.com/npm/cli.git` +* `git@github.com:npm/cli.git` +* `git+ssh://git@github.com/npm/cli#v6.0.0` +* `github:npm/cli#HEAD` +* `npm/cli#c12ea07` + +### See also + +[npm-package-arg](https://npm.im/npm-package-arg) +[scope](/using-npm/scope) +[config](/using-npm/config) diff --git a/deps/npm/docs/output/commands/npm-cache.html b/deps/npm/docs/output/commands/npm-cache.html index c5d6869b343be2..ad29cc73819d58 100644 --- a/deps/npm/docs/output/commands/npm-cache.html +++ b/deps/npm/docs/output/commands/npm-cache.html @@ -149,11 +149,7 @@

Table of contents

-
npm cache add <tarball file>
-npm cache add <folder>
-npm cache add <tarball url>
-npm cache add <git url>
-npm cache add <name>@<version>
+
npm cache add <package-spec>
 npm cache clean [<key>]
 npm cache ls [<name>@<version>]
 npm cache verify
@@ -224,6 +220,7 @@ 

cache

See Also

    +
  • package spec
  • npm folders
  • npm config
  • npmrc
  • diff --git a/deps/npm/docs/output/commands/npm-ci.html b/deps/npm/docs/output/commands/npm-ci.html index 4f9a194ae57e54..abc8ce6deb0e31 100644 --- a/deps/npm/docs/output/commands/npm-ci.html +++ b/deps/npm/docs/output/commands/npm-ci.html @@ -245,7 +245,7 @@

    script-shell

  • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
  • Type: null or String
-

The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

+

The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

diff --git a/deps/npm/docs/output/commands/npm-deprecate.html b/deps/npm/docs/output/commands/npm-deprecate.html index 52a9ef82c30e24..5b1d3489ca6157 100644 --- a/deps/npm/docs/output/commands/npm-deprecate.html +++ b/deps/npm/docs/output/commands/npm-deprecate.html @@ -149,7 +149,7 @@

Table of contents

-
npm deprecate <pkg>[@<version>] <message>
+
npm deprecate <package-spec> <message>
 
@@ -198,6 +198,7 @@

otp

See Also

    +
  • package spec
  • npm publish
  • npm registry
  • npm owner
  • diff --git a/deps/npm/docs/output/commands/npm-dist-tag.html b/deps/npm/docs/output/commands/npm-dist-tag.html index 8615aec686f79d..a6cdc6230b2057 100644 --- a/deps/npm/docs/output/commands/npm-dist-tag.html +++ b/deps/npm/docs/output/commands/npm-dist-tag.html @@ -149,9 +149,9 @@

    Table of contents

    -
    npm dist-tag add <pkg>@<version> [<tag>]
    -npm dist-tag rm <pkg> <tag>
    -npm dist-tag ls [<pkg>]
    +
    npm dist-tag add <package-spec (with version)> [<tag>]
    +npm dist-tag rm <package-spec> <tag>
    +npm dist-tag ls [<package-spec>]
     
     alias: dist-tags
     
    @@ -162,11 +162,11 @@

    Description

    Add, remove, and enumerate distribution tags on a package:

    • -

      add: Tags the specified version of the package with the specified tag, or -the --tag config if not specified. If you have two-factor -authentication on auth-and-writes then you’ll need to include a one-time -password on the command line with --otp <one-time password>, or at the -OTP prompt.

      +

      add: Tags the specified version of the package with the specified tag, +or the --tag config if not specified. If you have two-factor +authentication on auth-and-writes then you’ll need to include a +one-time password on the command line with +--otp <one-time password>, or at the OTP prompt.

    • rm: Clear a tag that is no longer in use from the package. If you have @@ -273,6 +273,7 @@

      include-workspace-root

      See Also

        +
      • package spec
      • npm publish
      • npm install
      • npm dedupe
      • diff --git a/deps/npm/docs/output/commands/npm-explain.html b/deps/npm/docs/output/commands/npm-explain.html index caf5ab1506fcc9..612e18676b418d 100644 --- a/deps/npm/docs/output/commands/npm-explain.html +++ b/deps/npm/docs/output/commands/npm-explain.html @@ -149,7 +149,7 @@

        Table of contents

        -
        npm explain <folder | specifier>
        +
        npm explain <package-spec>
         
         alias: why
         
        @@ -159,9 +159,9 @@

        Table of contents

        Description

        This command will print the chain of dependencies causing a given package to be installed in the current project.

        -

        Positional arguments can be either folders within node_modules, or -name@version-range specifiers, which will select the dependency -relationships to explain.

        +

        If one or more package specs are provided, then only packages matching +one of the specifiers will have their relationships explained.

        +

        The package spec can also refer to a folder within ./node_modules

        For example, running npm explain glob within npm's source tree will show:

        glob@7.1.6
         node_modules/glob
        @@ -229,6 +229,7 @@ 

        workspace

        See Also

          +
        • package spec
        • npm config
        • npmrc
        • npm folders
        • diff --git a/deps/npm/docs/output/commands/npm-fund.html b/deps/npm/docs/output/commands/npm-fund.html index ba88e461c60988..08389cb45ba6c0 100644 --- a/deps/npm/docs/output/commands/npm-fund.html +++ b/deps/npm/docs/output/commands/npm-fund.html @@ -149,7 +149,7 @@

          Table of contents

          -
          npm fund [[<@scope>/]<pkg>]
          +
          npm fund [<package-spec>]
           
          @@ -157,18 +157,18 @@

          Table of contents

          Description

          This command retrieves information on how to fund the dependencies of a given project. If no package name is provided, it will list all -dependencies that are looking for funding in a tree structure, listing the -type of funding and the url to visit. If a package name is provided then it -tries to open its funding url using the --browser config param; if there -are multiple funding sources for the package, the user will be instructed -to pass the --which option to disambiguate.

          +dependencies that are looking for funding in a tree structure, listing +the type of funding and the url to visit. If a package name is provided +then it tries to open its funding url using the --browser config +param; if there are multiple funding sources for the package, the user +will be instructed to pass the --which option to disambiguate.

          The list will avoid duplicated entries and will stack all packages that -share the same url as a single entry. Thus, the list does not have the same -shape of the output from npm ls.

          +share the same url as a single entry. Thus, the list does not have the +same shape of the output from npm ls.

          Example

          Workspaces support

          -

          It's possible to filter the results to only include a single workspace and its -dependencies using the workspace config option.

          +

          It's possible to filter the results to only include a single workspace +and its dependencies using the workspace config option.

          Example:

          Here's an example running npm fund in a project with a configured workspace a:

          @@ -183,8 +183,8 @@

          Example:

          `-- https://example.com/org `-- bar@2.0.0
          -

          And here is an example of the expected result when filtering only by -a specific workspace a in the same project:

          +

          And here is an example of the expected result when filtering only by a +specific workspace a in the same project:

          $ npm fund -w a
           test-workspaces-fund@1.0.0
           `-- https://example.com/a
          @@ -262,6 +262,7 @@ 

          which

          See Also

            +
          • package spec
          • npm install
          • npm docs
          • npm ls
          • diff --git a/deps/npm/docs/output/commands/npm-init.html b/deps/npm/docs/output/commands/npm-init.html index b25bfec2d4ffe4..c7c00b3531becf 100644 --- a/deps/npm/docs/output/commands/npm-init.html +++ b/deps/npm/docs/output/commands/npm-init.html @@ -142,16 +142,15 @@

            npm-init

            Table of contents

            - +

            Synopsis

            -
            npm init [--force|-f|--yes|-y|--scope]
            +
            npm init <package-spec> (same as `npx <package-spec>)
             npm init <@scope> (same as `npx <@scope>/create`)
            -npm init [<@scope>/]<name> (same as `npx [<@scope>/]create-<name>`)
             
             aliases: create, innit
             
            @@ -300,6 +299,29 @@

            force

            recommended that you do not use this option!

            +

            scope

            +
              +
            • Default: the scope of the current project, if any, or ""
            • +
            • Type: String
            • +
            +

            Associate an operation with a scope for a scoped registry.

            +

            Useful when logging in to or out of a private registry:

            +
            # log in, linking the scope to the custom registry
            +npm login --scope=@mycorp --registry=https://registry.mycorp.com
            +
            +# log out, removing the link and the auth token
            +npm logout --scope=@mycorp
            +
            +

            This will cause @mycorp to be mapped to the registry for future +installation of packages specified according to the pattern +@mycorp/package.

            +

            This will also cause npm init to create a scoped package.

            +
            # accept all defaults, and create a package named "@foo/whatever",
            +# instead of just named "whatever"
            +npm init --scope=@foo --yes
            +
            + +

            workspace

            • Default:
            • @@ -363,6 +385,7 @@

              include-workspace-root

              See Also

                +
              • package spec
              • init-package-json module
              • package.json
              • npm version
              • diff --git a/deps/npm/docs/output/commands/npm-install-ci-test.html b/deps/npm/docs/output/commands/npm-install-ci-test.html index b414f090278283..8d3d9541421fe0 100644 --- a/deps/npm/docs/output/commands/npm-install-ci-test.html +++ b/deps/npm/docs/output/commands/npm-install-ci-test.html @@ -202,7 +202,7 @@

                script-shell

              • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
              • Type: null or String
              -

              The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

              +

              The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

              diff --git a/deps/npm/docs/output/commands/npm-install-test.html b/deps/npm/docs/output/commands/npm-install-test.html index 6306ceb5938558..bf2ad29400f570 100644 --- a/deps/npm/docs/output/commands/npm-install-test.html +++ b/deps/npm/docs/output/commands/npm-install-test.html @@ -149,16 +149,7 @@

              Table of contents

              -
              npm install-test [<@scope>/]<pkg>
              -npm install-test [<@scope>/]<pkg>@<tag>
              -npm install-test [<@scope>/]<pkg>@<version>
              -npm install-test [<@scope>/]<pkg>@<version range>
              -npm install-test <alias>@npm:<name>
              -npm install-test <folder>
              -npm install-test <tarball file>
              -npm install-test <tarball url>
              -npm install-test <git:// url>
              -npm install-test <github username>/<github project>
              +
              npm install-test [<package-spec> ...]
               
               alias: it
               
              diff --git a/deps/npm/docs/output/commands/npm-install.html b/deps/npm/docs/output/commands/npm-install.html index 509702b5bd4ead..48f62f9e4822c7 100644 --- a/deps/npm/docs/output/commands/npm-install.html +++ b/deps/npm/docs/output/commands/npm-install.html @@ -149,16 +149,7 @@

              Table of contents

              -
              npm install [<@scope>/]<pkg>
              -npm install [<@scope>/]<pkg>@<tag>
              -npm install [<@scope>/]<pkg>@<version>
              -npm install [<@scope>/]<pkg>@<version range>
              -npm install <alias>@npm:<name>
              -npm install <folder>
              -npm install <tarball file>
              -npm install <tarball url>
              -npm install <git:// url>
              -npm install <github username>/<github project>
              +
              npm install [<package-spec> ...]
               
               aliases: add, i, in, ins, inst, insta, instal, isnt, isnta, isntal, isntall
               
              diff --git a/deps/npm/docs/output/commands/npm-link.html b/deps/npm/docs/output/commands/npm-link.html index f7d5f66a9e2bd2..cd31a3ee0dfd25 100644 --- a/deps/npm/docs/output/commands/npm-link.html +++ b/deps/npm/docs/output/commands/npm-link.html @@ -149,8 +149,7 @@

              Table of contents

              -
              npm link (in package dir)
              -npm link [<@scope>/]<pkg>[@<version>]
              +
              npm link [<package-spec>]
               
               alias: ln
               
              @@ -161,11 +160,11 @@

              Description

              This is handy for installing your own stuff, so that you can work on it and test iteratively without having to continually rebuild.

              Package linking is a two-step process.

              -

              First, npm link in a package folder will create a symlink in the global -folder {prefix}/lib/node_modules/<package> that links to the package -where the npm link command was executed. It will also link any bins in -the package to {prefix}/bin/{name}. Note that npm link uses the global -prefix (see npm prefix -g for its value).

              +

              First, npm link in a package folder with no arguments will create a +symlink in the global folder {prefix}/lib/node_modules/<package> that +links to the package where the npm link command was executed. It will +also link any bins in the package to {prefix}/bin/{name}. Note that +npm link uses the global prefix (see npm prefix -g for its value).

              Next, in some other location, npm link package-name will create a symbolic link from globally-installed package-name to node_modules/ of the current folder.

              @@ -452,6 +451,7 @@

              See Also

                +
              • package spec
              • npm developers
              • package.json
              • npm install
              • diff --git a/deps/npm/docs/output/commands/npm-ls.html b/deps/npm/docs/output/commands/npm-ls.html index 7b1c29f9a80639..4363442ef3dab0 100644 --- a/deps/npm/docs/output/commands/npm-ls.html +++ b/deps/npm/docs/output/commands/npm-ls.html @@ -149,7 +149,7 @@

                Table of contents

                -
                npm ls [[<@scope>/]<pkg> ...]
                +
                npm ls <package-spec>
                 
                 alias: list
                 
                @@ -166,7 +166,7 @@

                Description

                the results to only the paths to the packages named. Note that nested packages will also show the paths to the specified packages. For example, running npm ls promzard in npm's source tree will show:

                -
                npm@8.12.1 /path/to/npm
                +
                npm@8.13.1 /path/to/npm
                 └─┬ init-package-json@0.0.4
                   └── promzard@0.1.5
                 
                @@ -379,6 +379,7 @@

                See Also

                  +
                • package spec
                • npm explain
                • npm config
                • npmrc
                • diff --git a/deps/npm/docs/output/commands/npm-outdated.html b/deps/npm/docs/output/commands/npm-outdated.html index 0bdb9f9a66a14a..57740228c48ab6 100644 --- a/deps/npm/docs/output/commands/npm-outdated.html +++ b/deps/npm/docs/output/commands/npm-outdated.html @@ -149,7 +149,7 @@

                  Table of contents

                  -
                  npm outdated [[<@scope>/]<pkg> ...]
                  +
                  npm outdated [<package-spec> ...]
                   
                  @@ -304,6 +304,7 @@

                  workspace

                  See Also

                    +
                  • package spec
                  • npm update
                  • npm dist-tag
                  • npm registry
                  • diff --git a/deps/npm/docs/output/commands/npm-owner.html b/deps/npm/docs/output/commands/npm-owner.html index 744f7821408fd5..bf47a0ce04f93d 100644 --- a/deps/npm/docs/output/commands/npm-owner.html +++ b/deps/npm/docs/output/commands/npm-owner.html @@ -149,9 +149,9 @@

                    Table of contents

                    -
                    npm owner add <user> [<@scope>/]<pkg>
                    -npm owner rm <user> [<@scope>/]<pkg>
                    -npm owner ls [<@scope>/]<pkg>
                    +
                    npm owner add <user> <package-spec>
                    +npm owner rm <user> <package-spec>
                    +npm owner ls <package-spec>
                     
                     alias: author
                     
                    @@ -240,6 +240,7 @@

                    workspaces

                    See Also

                      +
                    • package spec
                    • npm profile
                    • npm publish
                    • npm registry
                    • diff --git a/deps/npm/docs/output/commands/npm-pack.html b/deps/npm/docs/output/commands/npm-pack.html index 86e45cb303ae36..387becd8c1f8ca 100644 --- a/deps/npm/docs/output/commands/npm-pack.html +++ b/deps/npm/docs/output/commands/npm-pack.html @@ -149,7 +149,7 @@

                      Table of contents

                      -
                      npm pack [[<@scope>/]<pkg>...]
                      +
                      npm pack <package-spec>
                       
                      @@ -255,6 +255,7 @@

                      Description

                      If no arguments are supplied, then npm packs the current package folder.

                      See Also

                        +
                      • package spec
                      • npm-packlist package
                      • npm cache
                      • npm publish
                      • diff --git a/deps/npm/docs/output/commands/npm-publish.html b/deps/npm/docs/output/commands/npm-publish.html index 23e5f11ea0e927..019295ab1f0c66 100644 --- a/deps/npm/docs/output/commands/npm-publish.html +++ b/deps/npm/docs/output/commands/npm-publish.html @@ -149,58 +149,31 @@

                        Table of contents

                        -
                        npm publish [<folder>]
                        +
                        npm publish <package-spec>
                         

                        Description

                        Publishes a package to the registry so that it can be installed by name.

                        -

                        By default npm will publish to the public registry. This can be overridden -by specifying a different default registry or using a -scope in the name (see +

                        By default npm will publish to the public registry. This can be +overridden by specifying a different default registry or using a +scope in the name, combined with a +scope-configured registry (see package.json).

                        +

                        A package is interpreted the same way as other commands (like +npm install and can be:

                          -
                        • -

                          <folder>: A folder containing a package.json file

                          -
                        • -
                        • -

                          <tarball>: A url or file path to a gzipped tar archive containing a -single folder with a package.json file inside.

                          -
                        • -
                        • -

                          [--tag <tag>]: Registers the published package with the given tag, such -that npm install <name>@<tag> will install this version. By default, -npm publish updates and npm install installs the latest tag. See -npm-dist-tag for details about tags.

                          -
                        • -
                        • -

                          [--access <public|restricted>]: Tells the registry whether this package -should be published as public or restricted. Only applies to scoped -packages, which default to restricted. If you don't have a paid -account, you must publish with --access public to publish scoped -packages.

                          -
                        • -
                        • -

                          [--otp <otpcode>]: If you have two-factor authentication enabled in -auth-and-writes mode then you can provide a code from your -authenticator with this. If you don't include this and you're running -from a TTY then you'll be prompted.

                          -
                        • -
                        • -

                          [--dry-run]: As of npm@6, does everything publish would do except -actually publishing to the registry. Reports the details of what would -have been published.

                          -
                        • -
                        • -

                          [--workspaces]: Enables workspace context while publishing. All -workspace packages will be published.

                          -
                        • -
                        • -

                          [--workspace]: Enables workspaces context and limits results to only -those specified by this config item. Only the packages in the -workspaces given will be published.

                          -
                        • +
                        • a) a folder containing a program described by a +package.json file
                        • +
                        • b) a gzipped tarball containing (a)
                        • +
                        • c) a url that resolves to (b)
                        • +
                        • d) a <name>@<version> that is published on the registry (see +registry) with (c)
                        • +
                        • e) a <name>@<tag> (see npm dist-tag) that +points to (d)
                        • +
                        • f) a <name> that has a "latest" tag satisfying (e)
                        • +
                        • g) a <git remote url> that resolves to (a)

                        The publish will fail if the package name and version combination already exists in the specified registry.

                        @@ -361,6 +334,7 @@

                        include-workspace-root

                        See Also

                          +
                        • package spec
                        • npm-packlist package
                        • npm registry
                        • npm scope
                        • diff --git a/deps/npm/docs/output/commands/npm-rebuild.html b/deps/npm/docs/output/commands/npm-rebuild.html index f4524f1a4f0baa..2fdd821d592d13 100644 --- a/deps/npm/docs/output/commands/npm-rebuild.html +++ b/deps/npm/docs/output/commands/npm-rebuild.html @@ -149,7 +149,7 @@

                          Table of contents

                          -
                          npm rebuild [[<@scope>/]<name>[@<version>] ...]
                          +
                          npm rebuild [<package-spec>] ...]
                           
                           alias: rb
                           
                          @@ -162,9 +162,8 @@

                          Description

                          C++ addons with the new binary. It is also useful when installing with --ignore-scripts and --no-bin-links, to explicitly choose which packages to build and/or link bins.

                          -

                          If one or more package names (and optionally version ranges) are provided, -then only packages with a name and version matching one of the specifiers -will be rebuilt.

                          +

                          If one or more package specs are provided, then only packages with a +name and version matching one of the specifiers will be rebuilt.

                          Configuration

                          @@ -285,6 +284,7 @@

                          See Also

            diff --git a/deps/npm/docs/output/commands/npm-restart.html b/deps/npm/docs/output/commands/npm-restart.html index f65a170d53838b..0e39072664a1d7 100644 --- a/deps/npm/docs/output/commands/npm-restart.html +++ b/deps/npm/docs/output/commands/npm-restart.html @@ -196,7 +196,7 @@

            script-shell

          • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
          • Type: null or String
          -

          The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

          +

          The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

          diff --git a/deps/npm/docs/output/commands/npm-run-script.html b/deps/npm/docs/output/commands/npm-run-script.html index 6211c2b55efcfc..d74acb05644c68 100644 --- a/deps/npm/docs/output/commands/npm-run-script.html +++ b/deps/npm/docs/output/commands/npm-run-script.html @@ -324,7 +324,7 @@

          script-shell

        • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
        • Type: null or String
        -

        The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

        +

        The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

        diff --git a/deps/npm/docs/output/commands/npm-star.html b/deps/npm/docs/output/commands/npm-star.html index bc1f7ae76992dd..d442e391108d37 100644 --- a/deps/npm/docs/output/commands/npm-star.html +++ b/deps/npm/docs/output/commands/npm-star.html @@ -149,7 +149,7 @@

        Table of contents

        -
        npm star [<pkg>...]
        +
        npm star [<package-spec>...]
         
        @@ -202,6 +202,7 @@

        otp

        See Also

          +
        • package spec
        • npm unstar
        • npm stars
        • npm view
        • diff --git a/deps/npm/docs/output/commands/npm-start.html b/deps/npm/docs/output/commands/npm-start.html index 8cedd9855d88c4..4f300f37adee2f 100644 --- a/deps/npm/docs/output/commands/npm-start.html +++ b/deps/npm/docs/output/commands/npm-start.html @@ -200,7 +200,7 @@

          script-shell

        • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
        • Type: null or String
        -

        The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

        +

        The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

        diff --git a/deps/npm/docs/output/commands/npm-stop.html b/deps/npm/docs/output/commands/npm-stop.html index 87b7d30fd8f3cd..8c91c7321a5ed3 100644 --- a/deps/npm/docs/output/commands/npm-stop.html +++ b/deps/npm/docs/output/commands/npm-stop.html @@ -195,7 +195,7 @@

        script-shell

      • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
      • Type: null or String
      -

      The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

      +

      The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

      diff --git a/deps/npm/docs/output/commands/npm-test.html b/deps/npm/docs/output/commands/npm-test.html index 5c403b94eb99a8..c4d71b30f514cd 100644 --- a/deps/npm/docs/output/commands/npm-test.html +++ b/deps/npm/docs/output/commands/npm-test.html @@ -193,7 +193,7 @@

      script-shell

    • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
    • Type: null or String
    -

    The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

    +

    The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

    diff --git a/deps/npm/docs/output/commands/npm-unpublish.html b/deps/npm/docs/output/commands/npm-unpublish.html index 21fafc89ebaacf..ab5858f2666fd5 100644 --- a/deps/npm/docs/output/commands/npm-unpublish.html +++ b/deps/npm/docs/output/commands/npm-unpublish.html @@ -149,7 +149,7 @@

    Table of contents

    -
    npm unpublish [<@scope>/]<pkg>[@<version>]
    +
    npm unpublish [<package-spec>]
     
    @@ -257,6 +257,7 @@

    workspaces

    See Also

      +
    • package spec
    • npm deprecate
    • npm publish
    • npm registry
    • diff --git a/deps/npm/docs/output/commands/npm-unstar.html b/deps/npm/docs/output/commands/npm-unstar.html index a332f857e6b7ea..c8b057f8e2d163 100644 --- a/deps/npm/docs/output/commands/npm-unstar.html +++ b/deps/npm/docs/output/commands/npm-unstar.html @@ -149,7 +149,7 @@

      Table of contents

      -
      npm unstar [<pkg>...]
      +
      npm unstar [<package-spec>...]
       
      diff --git a/deps/npm/docs/output/commands/npm-view.html b/deps/npm/docs/output/commands/npm-view.html index 0eb17026a77b39..2b74e28f3b9256 100644 --- a/deps/npm/docs/output/commands/npm-view.html +++ b/deps/npm/docs/output/commands/npm-view.html @@ -149,7 +149,7 @@

      Table of contents

      -
      npm view [<@scope>/]<pkg>[@<version>] [<field>[.subfield]...]
      +
      npm view [<package-spec>] [<field>[.subfield]...]
       
       aliases: info, show, v
       
      @@ -285,6 +285,7 @@

      Output

      the field name.

      See Also

        +
      • package spec
      • npm search
      • npm registry
      • npm config
      • diff --git a/deps/npm/docs/output/commands/npm.html b/deps/npm/docs/output/commands/npm.html index 040166af65cabb..c7b7dd5dc7a046 100644 --- a/deps/npm/docs/output/commands/npm.html +++ b/deps/npm/docs/output/commands/npm.html @@ -149,7 +149,7 @@

        Table of contents

        Version

        -

        8.12.1

        +

        8.13.1

        Description

        npm is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency diff --git a/deps/npm/docs/output/configuring-npm/package-json.html b/deps/npm/docs/output/configuring-npm/package-json.html index d5860ee6e299a1..a3bcd299c5bbe6 100644 --- a/deps/npm/docs/output/configuring-npm/package-json.html +++ b/deps/npm/docs/output/configuring-npm/package-json.html @@ -304,7 +304,7 @@

        people fields: author, contributorsBoth email and url are optional either way.

        npm also sets a top-level "maintainers" field with your npm user info.

        funding

        -

        You can specify an object containing an URL that provides up-to-date +

        You can specify an object containing a URL that provides up-to-date information about ways to help fund development of your package, or a string URL, or an array of these:

        {
        diff --git a/deps/npm/docs/output/using-npm/config.html b/deps/npm/docs/output/using-npm/config.html
        index 4ec52124ffe563..42789d96b7922e 100644
        --- a/deps/npm/docs/output/using-npm/config.html
        +++ b/deps/npm/docs/output/using-npm/config.html
        @@ -1360,7 +1360,7 @@ 

        script-shell

      • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
      • Type: null or String
      -

      The shell to use for scripts run with the npm exec, npm run and npm init <pkg> commands.

      +

      The shell to use for scripts run with the npm exec, npm run and npm init <package-spec> commands.

      searchexclude

      diff --git a/deps/npm/docs/output/using-npm/package-spec.html b/deps/npm/docs/output/using-npm/package-spec.html new file mode 100644 index 00000000000000..2b0855737bc269 --- /dev/null +++ b/deps/npm/docs/output/using-npm/package-spec.html @@ -0,0 +1,254 @@ + + +package-spec + + + + + +
      +
      +

      package-spec

      +Package name specifier +
      + +
      +

      Table of contents

      + +
      + +

      Description

      +

      Commands like npm install and the dependency sections in the +package.json use a package name specifier. This can be many different +things that all refer to a "package". Examples include a package name, +git url, tarball, or local directory. These will generally be referred +to as <package-spec> in the help output for the npm commands that use +this package name specifier.

      +

      Package name

      +
        +
      • [<@scope>/]<pkg>
      • +
      • [<@scope>/]<pkg>@<tag>
      • +
      • [<@scope>/]<pkg>@<version>
      • +
      • [<@scope>/]<pkg>@<version range>
      • +
      +

      Refers to a package by name, with or without a scope, and optionally +tag, version, or version range. This is typically used in combination +with the registry config to refer to a +package in a registry.

      +

      Examples:

      +
        +
      • npm
      • +
      • @npmcli/arborist
      • +
      • @npmcli/arborist@latest
      • +
      • npm@6.13.1
      • +
      • npm@^4.0.0
      • +
      +

      Aliases

      +
        +
      • <alias>@npm:<name>
      • +
      +

      Primarily used by commands like npm install and in the dependency +sections in the package.json, this refers to a package by an alias. +The <alias> is the name of the package as it is reified in the +node_modules folder, and the <name> refers to a package name as +found in the configured registry.

      +

      See Package name above for more info on referring to a package by +name, and registry for configuring which +registry is used when referring to a package by name.

      +

      Examples:

      +
        +
      • semver:@npm:@npmcli/semver-with-patch
      • +
      • semver:@npm:semver@7.2.2
      • +
      • semver:@npm:semver@legacy
      • +
      +

      Folders

      +
        +
      • <folder>
      • +
      +

      This refers to a package on the local filesystem. Specifically this is +a folder with a package.json file in it. This should always be +prefixed with a / or ./ (or your OS equivalent) to reduce confusion. +npm currently will parse a string with more than one / in it as a +folder, but this is legacy behavior that may be removed in a future +version.

      +

      Examples:

      +
        +
      • ./my-package
      • +
      • /opt/npm/my-package
      • +
      +

      Tarballs

      +
        +
      • <tarball file>
      • +
      • <tarball url>
      • +
      +

      Examples:

      +
        +
      • ./my-package.tgz
      • +
      • https://registry.npmjs.org/semver/-/semver-1.0.0.tgz
      • +
      +

      Refers to a package in a tarball format, either on the local filesystem +or remotely via url. This is the format that packages exist in when +uploaded to a registry.

      +

      git urls

      +
        +
      • <git:// url>
      • +
      • <github username>/<github project>
      • +
      +

      Refers to a package in a git repo. This can be a full git url, git +shorthand, or a username/package on GitHub. You can specify a +git tag, branch, or other git ref by appending #ref.

      +

      Examples:

      +
        +
      • https://github.com/npm/cli.git
      • +
      • git@github.com:npm/cli.git
      • +
      • git+ssh://git@github.com/npm/cli#v6.0.0
      • +
      • github:npm/cli#HEAD
      • +
      • npm/cli#c12ea07
      • +
      +

      See also

      +

      npm-package-arg +scope +config

      +
      + + +
      + + + + \ No newline at end of file diff --git a/deps/npm/lib/auth/legacy.js b/deps/npm/lib/auth/legacy.js index d1401ce14b9ef1..9aed12f3926fbe 100644 --- a/deps/npm/lib/auth/legacy.js +++ b/deps/npm/lib/auth/legacy.js @@ -1,6 +1,6 @@ const profile = require('npm-profile') const log = require('../utils/log-shim') -const openUrl = require('../utils/open-url.js') +const openUrlPrompt = require('../utils/open-url-prompt.js') const read = require('../utils/read-user-info.js') const loginPrompter = async (creds) => { @@ -47,7 +47,15 @@ const login = async (npm, opts) => { return newUser } - const openerPromise = (url) => openUrl(npm, url, 'to complete your login please visit') + const openerPromise = (url, emitter) => + openUrlPrompt( + npm, + url, + 'Authenticate your account at', + 'Press ENTER to open in the browser...', + emitter + ) + try { res = await profile.login(openerPromise, loginPrompter, opts) } catch (err) { diff --git a/deps/npm/lib/commands/cache.js b/deps/npm/lib/commands/cache.js index 862f346adb4369..bc52889c0006fb 100644 --- a/deps/npm/lib/commands/cache.js +++ b/deps/npm/lib/commands/cache.js @@ -68,11 +68,7 @@ class Cache extends BaseCommand { static name = 'cache' static params = ['cache'] static usage = [ - 'add ', - 'add ', - 'add ', - 'add ', - 'add @', + 'add ', 'clean []', 'ls [@]', 'verify', diff --git a/deps/npm/lib/commands/deprecate.js b/deps/npm/lib/commands/deprecate.js index 0ae88f1921f566..862c214dbe592f 100644 --- a/deps/npm/lib/commands/deprecate.js +++ b/deps/npm/lib/commands/deprecate.js @@ -9,7 +9,7 @@ const BaseCommand = require('../base-command.js') class Deprecate extends BaseCommand { static description = 'Deprecate a version of a package' static name = 'deprecate' - static usage = ['[@] '] + static usage = [' '] static params = [ 'registry', 'otp', diff --git a/deps/npm/lib/commands/dist-tag.js b/deps/npm/lib/commands/dist-tag.js index a207e422cb53c1..e74a3f1d435c9b 100644 --- a/deps/npm/lib/commands/dist-tag.js +++ b/deps/npm/lib/commands/dist-tag.js @@ -12,9 +12,9 @@ class DistTag extends BaseCommand { static params = ['workspace', 'workspaces', 'include-workspace-root'] static name = 'dist-tag' static usage = [ - 'add @ []', - 'rm ', - 'ls []', + 'add []', + 'rm ', + 'ls []', ] static ignoreImplicitWorkspace = false @@ -90,7 +90,7 @@ class DistTag extends BaseCommand { log.verbose('dist-tag add', defaultTag, 'to', spec.name + '@' + version) if (!spec.name || !version || !defaultTag) { - throw this.usageError() + throw this.usageError('must provide a spec with a name and version, and a tag to add') } const t = defaultTag.trim() diff --git a/deps/npm/lib/commands/explain.js b/deps/npm/lib/commands/explain.js index ca6ee7540bc916..c0ef04548a4ed3 100644 --- a/deps/npm/lib/commands/explain.js +++ b/deps/npm/lib/commands/explain.js @@ -10,7 +10,7 @@ const ArboristWorkspaceCmd = require('../arborist-cmd.js') class Explain extends ArboristWorkspaceCmd { static description = 'Explain installed packages' static name = 'explain' - static usage = [''] + static usage = [''] static params = [ 'json', 'workspace', diff --git a/deps/npm/lib/commands/fund.js b/deps/npm/lib/commands/fund.js index 09ca81653b0eb3..9690cbc32e0792 100644 --- a/deps/npm/lib/commands/fund.js +++ b/deps/npm/lib/commands/fund.js @@ -20,7 +20,7 @@ class Fund extends ArboristWorkspaceCmd { static description = 'Retrieve funding information' static name = 'fund' static params = ['json', 'browser', 'unicode', 'workspace', 'which'] - static usage = ['[[<@scope>/]]'] + static usage = ['[]'] // TODO /* istanbul ignore next */ diff --git a/deps/npm/lib/commands/init.js b/deps/npm/lib/commands/init.js index 4c299e65137bed..b8b6bd5d53e088 100644 --- a/deps/npm/lib/commands/init.js +++ b/deps/npm/lib/commands/init.js @@ -18,6 +18,7 @@ class Init extends BaseCommand { static params = [ 'yes', 'force', + 'scope', 'workspace', 'workspaces', 'workspaces-update', @@ -26,9 +27,8 @@ class Init extends BaseCommand { static name = 'init' static usage = [ - '[--force|-f|--yes|-y|--scope]', + ' (same as `npx )', '<@scope> (same as `npx <@scope>/create`)', - '[<@scope>/] (same as `npx [<@scope>/]create-`)', ] static ignoreImplicitWorkspace = false diff --git a/deps/npm/lib/commands/install.js b/deps/npm/lib/commands/install.js index 4cda36448317fe..ecc0727a2ef7c4 100644 --- a/deps/npm/lib/commands/install.js +++ b/deps/npm/lib/commands/install.js @@ -34,18 +34,7 @@ class Install extends ArboristWorkspaceCmd { ...super.params, ] - static usage = [ - '[<@scope>/]', - '[<@scope>/]@', - '[<@scope>/]@', - '[<@scope>/]@', - '@npm:', - '', - '', - '', - '', - '/', - ] + static usage = ['[ ...]'] async completion (opts) { const { partialWord } = opts diff --git a/deps/npm/lib/commands/link.js b/deps/npm/lib/commands/link.js index 80a60d36e324e9..b0b889ea787fd5 100644 --- a/deps/npm/lib/commands/link.js +++ b/deps/npm/lib/commands/link.js @@ -15,8 +15,7 @@ class Link extends ArboristWorkspaceCmd { static description = 'Symlink a package folder' static name = 'link' static usage = [ - '(in package dir)', - '[<@scope>/][@]', + '[]', ] static params = [ diff --git a/deps/npm/lib/commands/ls.js b/deps/npm/lib/commands/ls.js index cfd9cb5a5051ca..d3932072b7d348 100644 --- a/deps/npm/lib/commands/ls.js +++ b/deps/npm/lib/commands/ls.js @@ -27,7 +27,7 @@ const localeCompare = require('@isaacs/string-locale-compare')('en') class LS extends ArboristWorkspaceCmd { static description = 'List installed packages' static name = 'ls' - static usage = ['[[<@scope>/] ...]'] + static usage = [''] static params = [ 'all', 'json', diff --git a/deps/npm/lib/commands/outdated.js b/deps/npm/lib/commands/outdated.js index 081e75a2c61d36..042b776f71e0d8 100644 --- a/deps/npm/lib/commands/outdated.js +++ b/deps/npm/lib/commands/outdated.js @@ -15,7 +15,7 @@ const ArboristWorkspaceCmd = require('../arborist-cmd.js') class Outdated extends ArboristWorkspaceCmd { static description = 'Check for outdated packages' static name = 'outdated' - static usage = ['[[<@scope>/] ...]'] + static usage = ['[ ...]'] static params = [ 'all', 'json', diff --git a/deps/npm/lib/commands/owner.js b/deps/npm/lib/commands/owner.js index 4797e9c7ec84b4..732bb40a300502 100644 --- a/deps/npm/lib/commands/owner.js +++ b/deps/npm/lib/commands/owner.js @@ -27,9 +27,9 @@ class Owner extends BaseCommand { ] static usage = [ - 'add [<@scope>/]', - 'rm [<@scope>/]', - 'ls [<@scope>/]', + 'add ', + 'rm ', + 'ls ', ] static ignoreImplicitWorkspace = false diff --git a/deps/npm/lib/commands/pack.js b/deps/npm/lib/commands/pack.js index 8190ceecaf94bc..c6a74804642f66 100644 --- a/deps/npm/lib/commands/pack.js +++ b/deps/npm/lib/commands/pack.js @@ -17,7 +17,7 @@ class Pack extends BaseCommand { 'include-workspace-root', ] - static usage = ['[[<@scope>/]...]'] + static usage = [''] static ignoreImplicitWorkspace = false async exec (args) { diff --git a/deps/npm/lib/commands/publish.js b/deps/npm/lib/commands/publish.js index da6437fa9c58fc..579f5d6e74e67c 100644 --- a/deps/npm/lib/commands/publish.js +++ b/deps/npm/lib/commands/publish.js @@ -37,7 +37,7 @@ class Publish extends BaseCommand { 'include-workspace-root', ] - static usage = ['[]'] + static usage = [''] static ignoreImplicitWorkspace = false async exec (args) { diff --git a/deps/npm/lib/commands/rebuild.js b/deps/npm/lib/commands/rebuild.js index 3e6046d8df22b0..d06313ce483a95 100644 --- a/deps/npm/lib/commands/rebuild.js +++ b/deps/npm/lib/commands/rebuild.js @@ -16,7 +16,7 @@ class Rebuild extends ArboristWorkspaceCmd { ...super.params, ] - static usage = ['[[<@scope>/][@] ...]'] + static usage = ['[] ...]'] // TODO /* istanbul ignore next */ diff --git a/deps/npm/lib/commands/star.js b/deps/npm/lib/commands/star.js index 7b76be3c1632d5..20039bf8938116 100644 --- a/deps/npm/lib/commands/star.js +++ b/deps/npm/lib/commands/star.js @@ -7,7 +7,7 @@ const BaseCommand = require('../base-command.js') class Star extends BaseCommand { static description = 'Mark your favorite packages' static name = 'star' - static usage = ['[...]'] + static usage = ['[...]'] static params = [ 'registry', 'unicode', diff --git a/deps/npm/lib/commands/unpublish.js b/deps/npm/lib/commands/unpublish.js index f27be2e41c1078..ab929d98cadfa3 100644 --- a/deps/npm/lib/commands/unpublish.js +++ b/deps/npm/lib/commands/unpublish.js @@ -20,7 +20,7 @@ class Unpublish extends BaseCommand { static description = 'Remove a package from the registry' static name = 'unpublish' static params = ['dry-run', 'force', 'workspace', 'workspaces'] - static usage = ['[<@scope>/][@]'] + static usage = ['[]'] static ignoreImplicitWorkspace = false async getKeysOfVersions (name, opts) { diff --git a/deps/npm/lib/commands/view.js b/deps/npm/lib/commands/view.js index efb298a03bc359..3b8524ad3fc0d5 100644 --- a/deps/npm/lib/commands/view.js +++ b/deps/npm/lib/commands/view.js @@ -33,7 +33,7 @@ class View extends BaseCommand { static ignoreImplicitWorkspace = false - static usage = ['[<@scope>/][@] [[.subfield]...]'] + static usage = ['[] [[.subfield]...]'] async completion (opts) { if (opts.conf.argv.remain.length <= 2) { @@ -236,6 +236,15 @@ class View extends BaseCommand { } }) + // No data has been pushed because no data is matching the specified version + if (data.length === 0 && version !== 'latest') { + const er = new Error(`No match found for version ${version}`) + er.statusCode = 404 + er.code = 'E404' + er.pkgid = `${pckmnt._id}@${version}` + throw er + } + if ( !this.npm.config.get('json') && args.length === 1 && diff --git a/deps/npm/lib/utils/config/definitions.js b/deps/npm/lib/utils/config/definitions.js index 4c77e375c5ccf3..6b35e7d4d05b4c 100644 --- a/deps/npm/lib/utils/config/definitions.js +++ b/deps/npm/lib/utils/config/definitions.js @@ -535,7 +535,7 @@ define('dev', { define('diff', { default: [], - hint: '', + hint: '', type: [String, Array], description: ` Define arguments to compare in \`npm diff\`. @@ -1458,7 +1458,7 @@ define('otp', { define('package', { default: [], - hint: '[@]', + hint: '', type: [String, Array], description: ` The package to install for [\`npm exec\`](/commands/npm-exec) @@ -1867,7 +1867,7 @@ define('script-shell', { type: [null, String], description: ` The shell to use for scripts run with the \`npm exec\`, - \`npm run\` and \`npm init \` commands. + \`npm run\` and \`npm init \` commands. `, flatten (key, obj, flatOptions) { flatOptions.scriptShell = obj[key] || undefined diff --git a/deps/npm/lib/utils/open-url-prompt.js b/deps/npm/lib/utils/open-url-prompt.js new file mode 100644 index 00000000000000..3eb3ac288c0355 --- /dev/null +++ b/deps/npm/lib/utils/open-url-prompt.js @@ -0,0 +1,69 @@ +const readline = require('readline') +const opener = require('opener') + +function print (npm, title, url) { + const json = npm.config.get('json') + + const message = json ? JSON.stringify({ title, url }) : `${title}:\n${url}` + + npm.output(message) +} + +// Prompt to open URL in browser if possible +const promptOpen = async (npm, url, title, prompt, emitter) => { + const browser = npm.config.get('browser') + const isInteractive = process.stdin.isTTY === true && process.stdout.isTTY === true + + try { + if (!/^https?:$/.test(new URL(url).protocol)) { + throw new Error() + } + } catch (_) { + throw new Error('Invalid URL: ' + url) + } + + print(npm, title, url) + + if (browser === false || !isInteractive) { + return + } + + const rl = readline.createInterface({ + input: process.stdin, + output: process.stdout, + }) + + const tryOpen = await new Promise(resolve => { + rl.question(prompt, () => { + resolve(true) + }) + + if (emitter && emitter.addListener) { + emitter.addListener('abort', () => { + rl.close() + + // clear the prompt line + npm.output('') + + resolve(false) + }) + } + }) + + if (!tryOpen) { + return + } + + const command = browser === true ? null : browser + await new Promise((resolve, reject) => { + opener(url, { command }, err => { + if (err) { + return reject(err) + } + + return resolve() + }) + }) +} + +module.exports = promptOpen diff --git a/deps/npm/man/man1/npm-cache.1 b/deps/npm/man/man1/npm-cache.1 index 42e1998371c0e4..30b4947bd0b24b 100644 --- a/deps/npm/man/man1/npm-cache.1 +++ b/deps/npm/man/man1/npm-cache.1 @@ -5,11 +5,7 @@ .P .RS 2 .nf -npm cache add -npm cache add -npm cache add -npm cache add -npm cache add @ +npm cache add npm cache clean [] npm cache ls [@] npm cache verify @@ -85,6 +81,8 @@ cache\fP .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help folders .IP \(bu 2 npm help config diff --git a/deps/npm/man/man1/npm-ci.1 b/deps/npm/man/man1/npm-ci.1 index 533ec91005862d..5c92d5d9ba7059 100644 --- a/deps/npm/man/man1/npm-ci.1 +++ b/deps/npm/man/man1/npm-ci.1 @@ -133,7 +133,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS See Also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm-deprecate.1 b/deps/npm/man/man1/npm-deprecate.1 index e9ab9bae71a6fb..7f9fe808f5013c 100644 --- a/deps/npm/man/man1/npm-deprecate.1 +++ b/deps/npm/man/man1/npm-deprecate.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm deprecate [@] +npm deprecate .fi .RE .P @@ -38,8 +38,8 @@ In this case, a version \fBmy\-thing@1\.0\.0\-beta\.0\fP will also be deprecated You must be the package owner to deprecate something\. See the \fBowner\fP and \fBadduser\fP help topics\. .P -To un\-deprecate a package, specify an empty string (\fB""\fP) for the \fBmessage\fP -argument\. Note that you must use double quotes with no space between them to +To un\-deprecate a package, specify an empty string (\fB""\fP) for the \fBmessage\fP +argument\. Note that you must use double quotes with no space between them to format an empty string\. .SS Configuration .SS \fBregistry\fP @@ -69,6 +69,8 @@ password, npm will prompt on the command line for one\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help publish .IP \(bu 2 npm help registry diff --git a/deps/npm/man/man1/npm-dist-tag.1 b/deps/npm/man/man1/npm-dist-tag.1 index 7e1c14539540d7..7334c059d4d7f5 100644 --- a/deps/npm/man/man1/npm-dist-tag.1 +++ b/deps/npm/man/man1/npm-dist-tag.1 @@ -5,9 +5,9 @@ .P .RS 2 .nf -npm dist\-tag add @ [] -npm dist\-tag rm -npm dist\-tag ls [] +npm dist\-tag add [] +npm dist\-tag rm +npm dist\-tag ls [] alias: dist\-tags .fi @@ -17,11 +17,11 @@ alias: dist\-tags Add, remove, and enumerate distribution tags on a package: .RS 0 .IP \(bu 2 -add: Tags the specified version of the package with the specified tag, or -the \fB\-\-tag\fP config if not specified\. If you have two\-factor -authentication on auth\-and\-writes then you’ll need to include a one\-time -password on the command line with \fB\-\-otp \fP, or at the -OTP prompt\. +add: Tags the specified version of the package with the specified tag, +or the \fB\-\-tag\fP config if not specified\. If you have two\-factor +authentication on auth\-and\-writes then you’ll need to include a +one\-time password on the command line with +\fB\-\-otp \fP, or at the OTP prompt\. .IP \(bu 2 rm: Clear a tag that is no longer in use from the package\. If you have two\-factor authentication on auth\-and\-writes then you’ll need to include @@ -164,6 +164,8 @@ This value is not exported to the environment for child processes\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help publish .IP \(bu 2 npm help install diff --git a/deps/npm/man/man1/npm-explain.1 b/deps/npm/man/man1/npm-explain.1 index 9a3eec6756ddd8..fc7c2f2343b3d0 100644 --- a/deps/npm/man/man1/npm-explain.1 +++ b/deps/npm/man/man1/npm-explain.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm explain +npm explain alias: why .fi @@ -15,9 +15,10 @@ alias: why This command will print the chain of dependencies causing a given package to be installed in the current project\. .P -Positional arguments can be either folders within \fBnode_modules\fP, or -\fBname@version\-range\fP specifiers, which will select the dependency -relationships to explain\. +If one or more package specs are provided, then only packages matching +one of the specifiers will have their relationships explained\. +.P +The package spec can also refer to a folder within \fB\|\./node_modules\fP .P For example, running \fBnpm explain glob\fP within npm's source tree will show: .P @@ -106,6 +107,8 @@ This value is not exported to the environment for child processes\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help config .IP \(bu 2 npm help npmrc diff --git a/deps/npm/man/man1/npm-fund.1 b/deps/npm/man/man1/npm-fund.1 index ef77df60ce83d5..3f48fda912c551 100644 --- a/deps/npm/man/man1/npm-fund.1 +++ b/deps/npm/man/man1/npm-fund.1 @@ -5,27 +5,27 @@ .P .RS 2 .nf -npm fund [[<@scope>/]] +npm fund [] .fi .RE .SS Description .P This command retrieves information on how to fund the dependencies of a given project\. If no package name is provided, it will list all -dependencies that are looking for funding in a tree structure, listing the -type of funding and the url to visit\. If a package name is provided then it -tries to open its funding url using the \fB\-\-browser\fP config param; if there -are multiple funding sources for the package, the user will be instructed -to pass the \fB\-\-which\fP option to disambiguate\. +dependencies that are looking for funding in a tree structure, listing +the type of funding and the url to visit\. If a package name is provided +then it tries to open its funding url using the \fB\-\-browser\fP config +param; if there are multiple funding sources for the package, the user +will be instructed to pass the \fB\-\-which\fP option to disambiguate\. .P The list will avoid duplicated entries and will stack all packages that -share the same url as a single entry\. Thus, the list does not have the same -shape of the output from \fBnpm ls\fP\|\. +share the same url as a single entry\. Thus, the list does not have the +same shape of the output from \fBnpm ls\fP\|\. .SS Example .SS Workspaces support .P -It's possible to filter the results to only include a single workspace and its -dependencies using the \fBworkspace\fP config option\. +It's possible to filter the results to only include a single workspace +and its dependencies using the \fBworkspace\fP config option\. .SS Example: .P Here's an example running \fBnpm fund\fP in a project with a configured @@ -46,8 +46,8 @@ test\-workspaces\-fund@1\.0\.0 .fi .RE .P -And here is an example of the expected result when filtering only by -a specific workspace \fBa\fP in the same project: +And here is an example of the expected result when filtering only by a +specific workspace \fBa\fP in the same project: .P .RS 2 .nf @@ -148,6 +148,8 @@ If there are multiple funding sources, which 1\-indexed source URL to open\. .SH See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help install .IP \(bu 2 npm help docs diff --git a/deps/npm/man/man1/npm-init.1 b/deps/npm/man/man1/npm-init.1 index 51e9f42f824c75..c49b0c7ac4cd47 100644 --- a/deps/npm/man/man1/npm-init.1 +++ b/deps/npm/man/man1/npm-init.1 @@ -5,9 +5,8 @@ .P .RS 2 .nf -npm init [\-\-force|\-f|\-\-yes|\-y|\-\-scope] +npm init (same as `npx ) npm init <@scope> (same as `npx <@scope>/create`) -npm init [<@scope>/] (same as `npx [<@scope>/]create\-`) aliases: create, innit .fi @@ -232,6 +231,42 @@ Allow unpublishing of entire packages (not just a single version)\. .P If you don't have a clear idea of what you want to do, it is strongly recommended that you do not use this option! +.SS \fBscope\fP +.RS 0 +.IP \(bu 2 +Default: the scope of the current project, if any, or "" +.IP \(bu 2 +Type: String + +.RE +.P +Associate an operation with a scope for a scoped registry\. +.P +Useful when logging in to or out of a private registry: +.P +.RS 2 +.nf +# log in, linking the scope to the custom registry +npm login \-\-scope=@mycorp \-\-registry=https://registry\.mycorp\.com + +# log out, removing the link and the auth token +npm logout \-\-scope=@mycorp +.fi +.RE +.P +This will cause \fB@mycorp\fP to be mapped to the registry for future +installation of packages specified according to the pattern +\fB@mycorp/package\fP\|\. +.P +This will also cause \fBnpm init\fP to create a scoped package\. +.P +.RS 2 +.nf +# accept all defaults, and create a package named "@foo/whatever", +# instead of just named "whatever" +npm init \-\-scope=@foo \-\-yes +.fi +.RE .SS \fBworkspace\fP .RS 0 .IP \(bu 2 @@ -316,6 +351,8 @@ This value is not exported to the environment for child processes\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 init\-package\-json module \fIhttp://npm\.im/init\-package\-json\fR .IP \(bu 2 npm help package\.json diff --git a/deps/npm/man/man1/npm-install-ci-test.1 b/deps/npm/man/man1/npm-install-ci-test.1 index e50f7e90aec027..8f153e1366e240 100644 --- a/deps/npm/man/man1/npm-install-ci-test.1 +++ b/deps/npm/man/man1/npm-install-ci-test.1 @@ -67,7 +67,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS See Also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm-install-test.1 b/deps/npm/man/man1/npm-install-test.1 index 1e6ece0f47b616..02f9603e2597f8 100644 --- a/deps/npm/man/man1/npm-install-test.1 +++ b/deps/npm/man/man1/npm-install-test.1 @@ -5,16 +5,7 @@ .P .RS 2 .nf -npm install\-test [<@scope>/] -npm install\-test [<@scope>/]@ -npm install\-test [<@scope>/]@ -npm install\-test [<@scope>/]@ -npm install\-test @npm: -npm install\-test -npm install\-test -npm install\-test -npm install\-test -npm install\-test / +npm install\-test [ \.\.\.] alias: it .fi diff --git a/deps/npm/man/man1/npm-install.1 b/deps/npm/man/man1/npm-install.1 index 9d720117819769..f99ad884255373 100644 --- a/deps/npm/man/man1/npm-install.1 +++ b/deps/npm/man/man1/npm-install.1 @@ -5,16 +5,7 @@ .P .RS 2 .nf -npm install [<@scope>/] -npm install [<@scope>/]@ -npm install [<@scope>/]@ -npm install [<@scope>/]@ -npm install @npm: -npm install -npm install -npm install -npm install -npm install / +npm install [ \.\.\.] aliases: add, i, in, ins, inst, insta, instal, isnt, isnta, isntal, isntall .fi diff --git a/deps/npm/man/man1/npm-link.1 b/deps/npm/man/man1/npm-link.1 index d748d168451826..e138490e1b3301 100644 --- a/deps/npm/man/man1/npm-link.1 +++ b/deps/npm/man/man1/npm-link.1 @@ -5,8 +5,7 @@ .P .RS 2 .nf -npm link (in package dir) -npm link [<@scope>/][@] +npm link [] alias: ln .fi @@ -18,11 +17,11 @@ test iteratively without having to continually rebuild\. .P Package linking is a two\-step process\. .P -First, \fBnpm link\fP in a package folder will create a symlink in the global -folder \fB{prefix}/lib/node_modules/\fP that links to the package -where the \fBnpm link\fP command was executed\. It will also link any bins in -the package to \fB{prefix}/bin/{name}\fP\|\. Note that \fBnpm link\fP uses the global -prefix (see \fBnpm prefix \-g\fP for its value)\. +First, \fBnpm link\fP in a package folder with no arguments will create a +symlink in the global folder \fB{prefix}/lib/node_modules/\fP that +links to the package where the \fBnpm link\fP command was executed\. It will +also link any bins in the package to \fB{prefix}/bin/{name}\fP\|\. Note that +\fBnpm link\fP uses the global prefix (see \fBnpm prefix \-g\fP for its value)\. .P Next, in some other location, \fBnpm link package\-name\fP will create a symbolic link from globally\-installed \fBpackage\-name\fP to \fBnode_modules/\fP of @@ -401,6 +400,8 @@ symlink\. This option has no effect on workspaces\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help developers .IP \(bu 2 npm help package\.json diff --git a/deps/npm/man/man1/npm-ls.1 b/deps/npm/man/man1/npm-ls.1 index 2308cc16016a62..a24c524909f9ff 100644 --- a/deps/npm/man/man1/npm-ls.1 +++ b/deps/npm/man/man1/npm-ls.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm ls [[<@scope>/] \.\.\.] +npm ls alias: list .fi @@ -26,7 +26,7 @@ example, running \fBnpm ls promzard\fP in npm's source tree will show: .P .RS 2 .nf -npm@8\.12\.1 /path/to/npm +npm@8\.13\.1 /path/to/npm └─┬ init\-package\-json@0\.0\.4 └── promzard@0\.1\.5 .fi @@ -301,6 +301,8 @@ symlink\. This option has no effect on workspaces\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help explain .IP \(bu 2 npm help config diff --git a/deps/npm/man/man1/npm-outdated.1 b/deps/npm/man/man1/npm-outdated.1 index 3d5025e0e04335..80ec0928a2baa4 100644 --- a/deps/npm/man/man1/npm-outdated.1 +++ b/deps/npm/man/man1/npm-outdated.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm outdated [[<@scope>/] \.\.\.] +npm outdated [ \.\.\.] .fi .RE .SS Description @@ -208,6 +208,8 @@ This value is not exported to the environment for child processes\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help update .IP \(bu 2 npm help dist\-tag diff --git a/deps/npm/man/man1/npm-owner.1 b/deps/npm/man/man1/npm-owner.1 index 312bf22942d6c6..85ab4077b21bce 100644 --- a/deps/npm/man/man1/npm-owner.1 +++ b/deps/npm/man/man1/npm-owner.1 @@ -5,9 +5,9 @@ .P .RS 2 .nf -npm owner add [<@scope>/] -npm owner rm [<@scope>/] -npm owner ls [<@scope>/] +npm owner add +npm owner rm +npm owner ls alias: author .fi @@ -119,6 +119,8 @@ This value is not exported to the environment for child processes\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help profile .IP \(bu 2 npm help publish diff --git a/deps/npm/man/man1/npm-pack.1 b/deps/npm/man/man1/npm-pack.1 index 028fab69b1af14..a46bf5c752648f 100644 --- a/deps/npm/man/man1/npm-pack.1 +++ b/deps/npm/man/man1/npm-pack.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm pack [[<@scope>/]\.\.\.] +npm pack .fi .RE .SS Configuration @@ -138,6 +138,8 @@ If no arguments are supplied, then npm packs the current package folder\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm\-packlist package \fIhttp://npm\.im/npm\-packlist\fR .IP \(bu 2 npm help cache diff --git a/deps/npm/man/man1/npm-publish.1 b/deps/npm/man/man1/npm-publish.1 index dc914cf75cc4c2..d64a144447f7b2 100644 --- a/deps/npm/man/man1/npm-publish.1 +++ b/deps/npm/man/man1/npm-publish.1 @@ -5,50 +5,39 @@ .P .RS 2 .nf -npm publish [] +npm publish .fi .RE .SS Description .P Publishes a package to the registry so that it can be installed by name\. .P -By default npm will publish to the public registry\. This can be overridden -by specifying a different default registry or using a -npm help \fBscope\fP in the name (see +By default npm will publish to the public registry\. This can be +overridden by specifying a different default registry or using a +npm help \fBscope\fP in the name, combined with a +scope\-configured registry (see npm help \fBpackage\.json\fP)\. +.P +A \fBpackage\fP is interpreted the same way as other commands (like +\fBnpm install\fP and can be: .RS 0 .IP \(bu 2 -\fB\fP: A folder containing a package\.json file -.IP \(bu 2 -\fB\fP: A url or file path to a gzipped tar archive containing a -single folder with a package\.json file inside\. +a) a folder containing a program described by a +npm help \fBpackage\.json\fP file .IP \(bu 2 -\fB[\-\-tag ]\fP: Registers the published package with the given tag, such -that \fBnpm install @\fP will install this version\. By default, -\fBnpm publish\fP updates and \fBnpm install\fP installs the \fBlatest\fP tag\. See -\fBnpm\-dist\-tag\fP \fInpm\-dist\-tag\fR for details about tags\. +b) a gzipped tarball containing (a) .IP \(bu 2 -\fB[\-\-access ]\fP: Tells the registry whether this package -should be published as public or restricted\. Only applies to scoped -packages, which default to \fBrestricted\fP\|\. If you don't have a paid -account, you must publish with \fB\-\-access public\fP to publish scoped -packages\. +c) a url that resolves to (b) .IP \(bu 2 -\fB[\-\-otp ]\fP: If you have two\-factor authentication enabled in -\fBauth\-and\-writes\fP mode then you can provide a code from your -authenticator with this\. If you don't include this and you're running -from a TTY then you'll be prompted\. +d) a \fB@\fP that is published on the registry (see +npm help \fBregistry\fP) with (c) .IP \(bu 2 -\fB[\-\-dry\-run]\fP: As of \fBnpm@6\fP, does everything publish would do except -actually publishing to the registry\. Reports the details of what would -have been published\. +e) a \fB@\fP (see npm help \fBdist\-tag\fP) that +points to (d) .IP \(bu 2 -\fB[\-\-workspaces]\fP: Enables workspace context while publishing\. All -workspace packages will be published\. +f) a \fB\fP that has a "latest" tag satisfying (e) .IP \(bu 2 -\fB[\-\-workspace]\fP: Enables workspaces context and limits results to only -those specified by this config item\. Only the packages in the -workspaces given will be published\. +g) a \fB\fP that resolves to (a) .RE .P @@ -241,6 +230,8 @@ This value is not exported to the environment for child processes\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm\-packlist package \fIhttp://npm\.im/npm\-packlist\fR .IP \(bu 2 npm help registry diff --git a/deps/npm/man/man1/npm-rebuild.1 b/deps/npm/man/man1/npm-rebuild.1 index 8d6d90b10f0871..f4e4c56118d292 100644 --- a/deps/npm/man/man1/npm-rebuild.1 +++ b/deps/npm/man/man1/npm-rebuild.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm rebuild [[<@scope>/][@] \.\.\.] +npm rebuild [] \.\.\.] alias: rb .fi @@ -18,9 +18,8 @@ C++ addons with the new binary\. It is also useful when installing with \fB\-\-ignore\-scripts\fP and \fB\-\-no\-bin\-links\fP, to explicitly choose which packages to build and/or link bins\. .P -If one or more package names (and optionally version ranges) are provided, -then only packages with a name and version matching one of the specifiers -will be rebuilt\. +If one or more package specs are provided, then only packages with a +name and version matching one of the specifiers will be rebuilt\. .SS Configuration .SS \fBglobal\fP .RS 0 @@ -174,6 +173,8 @@ symlink\. This option has no effect on workspaces\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help install .RE diff --git a/deps/npm/man/man1/npm-restart.1 b/deps/npm/man/man1/npm-restart.1 index 2f99ee51ed4fc1..460a94350f1bd9 100644 --- a/deps/npm/man/man1/npm-restart.1 +++ b/deps/npm/man/man1/npm-restart.1 @@ -72,7 +72,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS See Also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm-run-script.1 b/deps/npm/man/man1/npm-run-script.1 index fc26c71e0310f9..c9dc22f4eb6bd4 100644 --- a/deps/npm/man/man1/npm-run-script.1 +++ b/deps/npm/man/man1/npm-run-script.1 @@ -256,7 +256,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS See Also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm-star.1 b/deps/npm/man/man1/npm-star.1 index 2ccd4046e42d7e..2e91f78bdc9ca8 100644 --- a/deps/npm/man/man1/npm-star.1 +++ b/deps/npm/man/man1/npm-star.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm star [\.\.\.] +npm star [\.\.\.] .fi .RE .P @@ -67,6 +67,8 @@ password, npm will prompt on the command line for one\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help unstar .IP \(bu 2 npm help stars diff --git a/deps/npm/man/man1/npm-start.1 b/deps/npm/man/man1/npm-start.1 index 589ecea4a240a7..af45de89f3f5d3 100644 --- a/deps/npm/man/man1/npm-start.1 +++ b/deps/npm/man/man1/npm-start.1 @@ -71,7 +71,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS See Also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm-stop.1 b/deps/npm/man/man1/npm-stop.1 index 19695cc0e04174..f1159699a3bbca 100644 --- a/deps/npm/man/man1/npm-stop.1 +++ b/deps/npm/man/man1/npm-stop.1 @@ -64,7 +64,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS See Also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm-test.1 b/deps/npm/man/man1/npm-test.1 index fbbe80d2638e40..8dd0f2f6828b00 100644 --- a/deps/npm/man/man1/npm-test.1 +++ b/deps/npm/man/man1/npm-test.1 @@ -61,7 +61,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS See Also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm-unpublish.1 b/deps/npm/man/man1/npm-unpublish.1 index ff538299e7c355..57ba85fb432522 100644 --- a/deps/npm/man/man1/npm-unpublish.1 +++ b/deps/npm/man/man1/npm-unpublish.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm unpublish [<@scope>/][@] +npm unpublish [] .fi .RE .P @@ -149,6 +149,8 @@ This value is not exported to the environment for child processes\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help deprecate .IP \(bu 2 npm help publish diff --git a/deps/npm/man/man1/npm-unstar.1 b/deps/npm/man/man1/npm-unstar.1 index d71bfff266b312..b3ece049f9bb53 100644 --- a/deps/npm/man/man1/npm-unstar.1 +++ b/deps/npm/man/man1/npm-unstar.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm unstar [\.\.\.] +npm unstar [\.\.\.] .fi .RE .P diff --git a/deps/npm/man/man1/npm-view.1 b/deps/npm/man/man1/npm-view.1 index efba9ebd6bd696..7f83d89bf67b74 100644 --- a/deps/npm/man/man1/npm-view.1 +++ b/deps/npm/man/man1/npm-view.1 @@ -5,7 +5,7 @@ .P .RS 2 .nf -npm view [<@scope>/][@] [[\.subfield]\.\.\.] +npm view [] [[\.subfield]\.\.\.] aliases: info, show, v .fi @@ -216,6 +216,8 @@ the field name\. .SS See Also .RS 0 .IP \(bu 2 +npm help package spec +.IP \(bu 2 npm help search .IP \(bu 2 npm help registry diff --git a/deps/npm/man/man1/npm.1 b/deps/npm/man/man1/npm.1 index 45db3c9e53776e..a26c713a11000f 100644 --- a/deps/npm/man/man1/npm.1 +++ b/deps/npm/man/man1/npm.1 @@ -4,7 +4,7 @@ .SS Synopsis .SS Version .P -8\.12\.1 +8\.13\.1 .SS Description .P npm is the package manager for the Node JavaScript platform\. It puts diff --git a/deps/npm/man/man5/package-json.5 b/deps/npm/man/man5/package-json.5 index 17c4c1e322c6b1..f6477ebc015c05 100644 --- a/deps/npm/man/man5/package-json.5 +++ b/deps/npm/man/man5/package-json.5 @@ -246,7 +246,7 @@ Both email and url are optional either way\. npm also sets a top\-level "maintainers" field with your npm user info\. .SS funding .P -You can specify an object containing an URL that provides up\-to\-date +You can specify an object containing a URL that provides up\-to\-date information about ways to help fund development of your package, or a string URL, or an array of these: .P diff --git a/deps/npm/man/man7/config.7 b/deps/npm/man/man7/config.7 index 70f6742b10ada1..a64db0ae281ea8 100644 --- a/deps/npm/man/man7/config.7 +++ b/deps/npm/man/man7/config.7 @@ -1592,7 +1592,7 @@ Type: null or String .RE .P The shell to use for scripts run with the \fBnpm exec\fP, \fBnpm run\fP and \fBnpm -init \fP commands\. +init \fP commands\. .SS \fBsearchexclude\fP .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man7/package-spec.7 b/deps/npm/man/man7/package-spec.7 new file mode 100644 index 00000000000000..f86a00686b0c3f --- /dev/null +++ b/deps/npm/man/man7/package-spec.7 @@ -0,0 +1,145 @@ +.TH "PACKAGE\-SPEC" "7" "June 2022" "" "" +.SH "NAME" +\fBpackage-spec\fR \- Package name specifier +.SS Description +.P +Commands like \fBnpm install\fP and the dependency sections in the +\fBpackage\.json\fP use a package name specifier\. This can be many different +things that all refer to a "package"\. Examples include a package name, +git url, tarball, or local directory\. These will generally be referred +to as \fB\fP in the help output for the npm commands that use +this package name specifier\. +.SS Package name +.RS 0 +.IP \(bu 2 +\fB[<@scope>/]\fP +.IP \(bu 2 +\fB[<@scope>/]@\fP +.IP \(bu 2 +\fB[<@scope>/]@\fP +.IP \(bu 2 +\fB[<@scope>/]@\fP + +.RE +.P +Refers to a package by name, with or without a scope, and optionally +tag, version, or version range\. This is typically used in combination +with the npm help registry config to refer to a +package in a registry\. +.P +Examples: +.RS 0 +.IP \(bu 2 +\fBnpm\fP +.IP \(bu 2 +\fB@npmcli/arborist\fP +.IP \(bu 2 +\fB@npmcli/arborist@latest\fP +.IP \(bu 2 +\fBnpm@6\.13\.1\fP +.IP \(bu 2 +\fBnpm@^4\.0\.0\fP + +.RE +.SS Aliases +.RS 0 +.IP \(bu 2 +\fB@npm:\fP + +.RE +.P +Primarily used by commands like \fBnpm install\fP and in the dependency +sections in the \fBpackage\.json\fP, this refers to a package by an alias\. +The \fB\fP is the name of the package as it is reified in the +\fBnode_modules\fP folder, and the \fB\fP refers to a package name as +found in the configured registry\. +.P +See \fBPackage name\fP above for more info on referring to a package by +name, and npm help registry for configuring which +registry is used when referring to a package by name\. +.P +Examples: +.RS 0 +.IP \(bu 2 +\fBsemver:@npm:@npmcli/semver\-with\-patch\fP +.IP \(bu 2 +\fBsemver:@npm:semver@7\.2\.2\fP +.IP \(bu 2 +\fBsemver:@npm:semver@legacy\fP + +.RE +.SS Folders +.RS 0 +.IP \(bu 2 +\fB\fP + +.RE +.P +This refers to a package on the local filesystem\. Specifically this is +a folder with a \fBpackage\.json\fP file in it\. This \fIshould\fR always be +prefixed with a \fB/\fP or \fB\|\./\fP (or your OS equivalent) to reduce confusion\. +npm currently will parse a string with more than one \fB/\fP in it as a +folder, but this is legacy behavior that may be removed in a future +version\. +.P +Examples: +.RS 0 +.IP \(bu 2 +\fB\|\./my\-package\fP +.IP \(bu 2 +\fB/opt/npm/my\-package\fP + +.RE +.SS Tarballs +.RS 0 +.IP \(bu 2 +\fB\fP +.IP \(bu 2 +\fB\fP + +.RE +.P +Examples: +.RS 0 +.IP \(bu 2 +\fB\|\./my\-package\.tgz\fP +.IP \(bu 2 +\fBhttps://registry\.npmjs\.org/semver/\-/semver\-1\.0\.0\.tgz\fP + +.RE +.P +Refers to a package in a tarball format, either on the local filesystem +or remotely via url\. This is the format that packages exist in when +uploaded to a registry\. +.SS git urls +.RS 0 +.IP \(bu 2 +\fB\fP +.IP \(bu 2 +\fB/\fP + +.RE +.P +Refers to a package in a git repo\. This can be a full git url, git +shorthand, or a username/package on GitHub\. You can specify a +git tag, branch, or other git ref by appending \fB#ref\fP\|\. +.P +Examples: +.RS 0 +.IP \(bu 2 +\fBhttps://github\.com/npm/cli\.git\fP +.IP \(bu 2 +\fBgit@github\.com:npm/cli\.git\fP +.IP \(bu 2 +\fBgit+ssh://git@github\.com/npm/cli#v6\.0\.0\fP +.IP \(bu 2 +\fBgithub:npm/cli#HEAD\fP +.IP \(bu 2 +\fBnpm/cli#c12ea07\fP + +.RE +.SS See also +.P +npm\-package\-arg \fIhttps://npm\.im/npm\-package\-arg\fR +npm help scope +npm help config diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js index e6c9fe68fab97d..da2652c449a1cd 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js @@ -673,7 +673,7 @@ Try using the package name instead, e.g: const breakingMessage = isSemVerMajor ? 'a SemVer major change' : 'outside your stated dependency range' - log.warn('audit', `Updating ${name} to ${version},` + + log.warn('audit', `Updating ${name} to ${version}, ` + `which is ${breakingMessage}.`) await this[_add](node, { add: [`${name}@${version}`] }) diff --git a/deps/npm/node_modules/@npmcli/arborist/package.json b/deps/npm/node_modules/@npmcli/arborist/package.json index baae74e25ac7b8..bfb9b4273e8834 100644 --- a/deps/npm/node_modules/@npmcli/arborist/package.json +++ b/deps/npm/node_modules/@npmcli/arborist/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/arborist", - "version": "5.2.1", + "version": "5.2.3", "description": "Manage node_modules trees", "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", @@ -11,7 +11,7 @@ "@npmcli/name-from-folder": "^1.0.1", "@npmcli/node-gyp": "^2.0.0", "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^3.0.0", + "@npmcli/run-script": "^4.1.3", "bin-links": "^3.0.0", "cacache": "^16.0.6", "common-ancestor-path": "^1.0.1", @@ -25,7 +25,7 @@ "npm-pick-manifest": "^7.0.0", "npm-registry-fetch": "^13.0.0", "npmlog": "^6.0.2", - "pacote": "^13.0.5", + "pacote": "^13.6.1", "parse-conflict-json": "^2.0.1", "proc-log": "^2.0.0", "promise-all-reject-late": "^1.0.0", diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/escape.js b/deps/npm/node_modules/@npmcli/run-script/lib/escape.js new file mode 100644 index 00000000000000..5254be24bf7ab8 --- /dev/null +++ b/deps/npm/node_modules/@npmcli/run-script/lib/escape.js @@ -0,0 +1,71 @@ +'use strict' + +// eslint-disable-next-line max-len +// this code adapted from: https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/ +const cmd = (input, doubleEscape) => { + if (!input.length) { + return '""' + } + + let result + if (!/[ \t\n\v"]/.test(input)) { + result = input + } else { + result = '"' + for (let i = 0; i <= input.length; ++i) { + let slashCount = 0 + while (input[i] === '\\') { + ++i + ++slashCount + } + + if (i === input.length) { + result += '\\'.repeat(slashCount * 2) + break + } + + if (input[i] === '"') { + result += '\\'.repeat(slashCount * 2 + 1) + result += input[i] + } else { + result += '\\'.repeat(slashCount) + result += input[i] + } + } + result += '"' + } + + // and finally, prefix shell meta chars with a ^ + result = result.replace(/[ !^&()<>|"]/g, '^$&') + if (doubleEscape) { + result = result.replace(/[ !^&()<>|"]/g, '^$&') + } + + // except for % which is escaped with another %, and only once + result = result.replace(/%/g, '%%') + + return result +} + +const sh = (input) => { + if (!input.length) { + return `''` + } + + if (!/[\t\n\r "#$&'()*;<>?\\`|~]/.test(input)) { + return input + } + + // replace single quotes with '\'' and wrap the whole result in a fresh set of quotes + const result = `'${input.replace(/'/g, `'\\''`)}'` + // if the input string already had single quotes around it, clean those up + .replace(/^(?:'')+(?!$)/, '') + .replace(/\\'''/g, `\\'`) + + return result +} + +module.exports = { + cmd, + sh, +} diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js b/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js index 9cfc84b0e0de11..660588e3ee9aa6 100644 --- a/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +++ b/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js @@ -1,8 +1,12 @@ /* eslint camelcase: "off" */ const isWindows = require('./is-windows.js') const setPATH = require('./set-path.js') -const { resolve } = require('path') +const { chmodSync: chmod, unlinkSync: unlink, writeFileSync: writeFile } = require('fs') +const { tmpdir } = require('os') +const { isAbsolute, resolve } = require('path') +const which = require('which') const npm_config_node_gyp = require.resolve('node-gyp/bin/node-gyp.js') +const escape = require('./escape.js') const makeSpawnArgs = options => { const { @@ -12,29 +16,93 @@ const makeSpawnArgs = options => { env = {}, stdio, cmd, + args = [], stdioString = false, } = options + const spawnEnv = setPATH(path, { + // we need to at least save the PATH environment var + ...process.env, + ...env, + npm_package_json: resolve(path, 'package.json'), + npm_lifecycle_event: event, + npm_lifecycle_script: cmd, + npm_config_node_gyp, + }) + + let scriptFile + let script = '' + const isCmd = /(?:^|\\)cmd(?:\.exe)?$/i.test(scriptShell) - const args = isCmd ? ['/d', '/s', '/c', cmd] : ['-c', cmd] + if (isCmd) { + let initialCmd = '' + let insideQuotes = false + for (let i = 0; i < cmd.length; ++i) { + const char = cmd.charAt(i) + if (char === ' ' && !insideQuotes) { + break + } + + initialCmd += char + if (char === '"' || char === "'") { + insideQuotes = !insideQuotes + } + } + + let pathToInitial + try { + pathToInitial = which.sync(initialCmd, { + path: spawnEnv.path, + pathext: spawnEnv.pathext, + }).toLowerCase() + } catch (err) { + pathToInitial = initialCmd.toLowerCase() + } + + const doubleEscape = pathToInitial.endsWith('.cmd') || pathToInitial.endsWith('.bat') + + scriptFile = resolve(tmpdir(), `${event}-${Date.now()}.cmd`) + script += '@echo off\n' + script += cmd + if (args.length) { + script += ` ${args.map((arg) => escape.cmd(arg, doubleEscape)).join(' ')}` + } + } else { + const shebang = isAbsolute(scriptShell) + ? `#!${scriptShell}` + : `#!/usr/bin/env ${scriptShell}` + scriptFile = resolve(tmpdir(), `${event}-${Date.now()}.sh`) + script += `${shebang}\n` + script += cmd + if (args.length) { + script += ` ${args.map((arg) => escape.sh(arg)).join(' ')}` + } + } + + writeFile(scriptFile, script) + if (!isCmd) { + chmod(scriptFile, '0775') + } + const spawnArgs = isCmd + ? ['/d', '/s', '/c', escape.cmd(scriptFile)] + : ['-c', escape.sh(scriptFile)] const spawnOpts = { - env: setPATH(path, { - // we need to at least save the PATH environment var - ...process.env, - ...env, - npm_package_json: resolve(path, 'package.json'), - npm_lifecycle_event: event, - npm_lifecycle_script: cmd, - npm_config_node_gyp, - }), + env: spawnEnv, stdioString, stdio, cwd: path, ...(isCmd ? { windowsVerbatimArguments: true } : {}), } - return [scriptShell, args, spawnOpts] + const cleanup = () => { + // delete the script, this is just a best effort + try { + unlink(scriptFile) + } catch (err) {} + } + + return [scriptShell, spawnArgs, spawnOpts, cleanup] } module.exports = makeSpawnArgs diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js b/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js index a6fa4d2b389485..84c5e2bfe0c521 100644 --- a/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +++ b/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js @@ -31,7 +31,7 @@ const runScriptPkg = async options => { if (options.cmd) { cmd = options.cmd } else if (pkg.scripts && pkg.scripts[event]) { - cmd = pkg.scripts[event] + args.map(a => ` ${JSON.stringify(a)}`).join('') + cmd = pkg.scripts[event] } else if ( // If there is no preinstall or install script, default to rebuilding node-gyp packages. event === 'install' && @@ -42,7 +42,7 @@ const runScriptPkg = async options => { ) { cmd = defaultGypInstallScript } else if (event === 'start' && await isServerPackage(path)) { - cmd = 'node server.js' + args.map(a => ` ${JSON.stringify(a)}`).join('') + cmd = 'node server.js' } if (!cmd) { @@ -54,15 +54,18 @@ const runScriptPkg = async options => { console.log(bruce(pkg._id, event, cmd)) } - const p = promiseSpawn(...makeSpawnArgs({ + const [spawnShell, spawnArgs, spawnOpts, cleanup] = makeSpawnArgs({ event, path, scriptShell, env: packageEnvs(env, pkg), stdio, cmd, + args, stdioString, - }), { + }) + + const p = promiseSpawn(spawnShell, spawnArgs, spawnOpts, { event, script: cmd, pkgid: pkg._id, @@ -88,7 +91,7 @@ const runScriptPkg = async options => { } else { throw er } - }) + }).finally(cleanup) } module.exports = runScriptPkg diff --git a/deps/npm/node_modules/@npmcli/run-script/package.json b/deps/npm/node_modules/@npmcli/run-script/package.json index 733b27e44a1b8b..ef8b43f772de1b 100644 --- a/deps/npm/node_modules/@npmcli/run-script/package.json +++ b/deps/npm/node_modules/@npmcli/run-script/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/run-script", - "version": "3.0.2", + "version": "4.1.3", "description": "Run a lifecycle script for a package (descendant of npm-lifecycle)", "author": "GitHub Inc.", "license": "ISC", @@ -23,7 +23,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.2.2", + "@npmcli/template-oss": "3.5.0", "minipass": "^3.1.6", "require-inject": "^1.4.4", "tap": "^16.0.1" @@ -48,6 +48,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.2.2" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/cacache/lib/content/read.js b/deps/npm/node_modules/cacache/lib/content/read.js index f5128fe185d0f4..8367ccb205d0b0 100644 --- a/deps/npm/node_modules/cacache/lib/content/read.js +++ b/deps/npm/node_modules/cacache/lib/content/read.js @@ -13,7 +13,7 @@ async function read (cache, integrity, opts = {}) { const { size } = opts const { stat, cpath, sri } = await withContentSri(cache, integrity, async (cpath, sri) => { // get size - const stat = await fs.lstat(cpath) + const stat = await fs.stat(cpath) return { stat, cpath, sri } }) if (typeof size === 'number' && stat.size !== size) { @@ -73,8 +73,8 @@ function readStream (cache, integrity, opts = {}) { // Set all this up to run on the stream and then just return the stream Promise.resolve().then(async () => { const { stat, cpath, sri } = await withContentSri(cache, integrity, async (cpath, sri) => { - // just lstat to ensure it exists - const stat = await fs.lstat(cpath) + // just stat to ensure it exists + const stat = await fs.stat(cpath) return { stat, cpath, sri } }) if (typeof size === 'number' && size !== stat.size) { @@ -111,7 +111,7 @@ async function hasContent (cache, integrity) { try { return await withContentSri(cache, integrity, async (cpath, sri) => { - const stat = await fs.lstat(cpath) + const stat = await fs.stat(cpath) return { size: stat.size, sri, stat } }) } catch (err) { @@ -139,7 +139,7 @@ function hasContentSync (cache, integrity) { return withContentSriSync(cache, integrity, (cpath, sri) => { try { - const stat = fs.lstatSync(cpath) + const stat = fs.statSync(cpath) return { size: stat.size, sri, stat } } catch (err) { if (err.code === 'ENOENT') { diff --git a/deps/npm/node_modules/cacache/package.json b/deps/npm/node_modules/cacache/package.json index 8e54901b4562a0..bb5674dafca81b 100644 --- a/deps/npm/node_modules/cacache/package.json +++ b/deps/npm/node_modules/cacache/package.json @@ -1,6 +1,6 @@ { "name": "cacache", - "version": "16.1.0", + "version": "16.1.1", "cache-version": { "content": "2", "index": "5" @@ -69,7 +69,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.4.3", + "@npmcli/template-oss": "3.5.0", "tap": "^16.0.0" }, "engines": { @@ -78,7 +78,7 @@ "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "windowsCI": false, - "version": "3.4.3" + "version": "3.5.0" }, "author": "GitHub Inc." } diff --git a/deps/npm/node_modules/libnpmdiff/package.json b/deps/npm/node_modules/libnpmdiff/package.json index 3630980ccb30b2..814629dd2e2957 100644 --- a/deps/npm/node_modules/libnpmdiff/package.json +++ b/deps/npm/node_modules/libnpmdiff/package.json @@ -1,6 +1,6 @@ { "name": "libnpmdiff", - "version": "4.0.3", + "version": "4.0.4", "description": "The registry diff", "repository": { "type": "git", @@ -56,7 +56,7 @@ "diff": "^5.0.0", "minimatch": "^5.0.1", "npm-package-arg": "^9.0.1", - "pacote": "^13.0.5", + "pacote": "^13.6.1", "tar": "^6.1.0" }, "templateOSS": { diff --git a/deps/npm/node_modules/libnpmexec/package.json b/deps/npm/node_modules/libnpmexec/package.json index dfe40b0d9f7ad0..d163103ea2b0bf 100644 --- a/deps/npm/node_modules/libnpmexec/package.json +++ b/deps/npm/node_modules/libnpmexec/package.json @@ -1,6 +1,6 @@ { "name": "libnpmexec", - "version": "4.0.6", + "version": "4.0.8", "files": [ "bin/", "lib/" @@ -57,12 +57,12 @@ "dependencies": { "@npmcli/arborist": "^5.0.0", "@npmcli/ci-detect": "^2.0.0", - "@npmcli/run-script": "^3.0.0", + "@npmcli/run-script": "^4.1.3", "chalk": "^4.1.0", "mkdirp-infer-owner": "^2.0.0", "npm-package-arg": "^9.0.1", "npmlog": "^6.0.2", - "pacote": "^13.0.5", + "pacote": "^13.6.1", "proc-log": "^2.0.0", "read": "^1.0.7", "read-package-json-fast": "^2.0.2", diff --git a/deps/npm/node_modules/libnpmpack/package.json b/deps/npm/node_modules/libnpmpack/package.json index 02f06a8bbfa3c1..86bec9ff1d618d 100644 --- a/deps/npm/node_modules/libnpmpack/package.json +++ b/deps/npm/node_modules/libnpmpack/package.json @@ -1,6 +1,6 @@ { "name": "libnpmpack", - "version": "4.1.0", + "version": "4.1.2", "description": "Programmatic API for the bits behind npm pack", "author": "GitHub Inc.", "main": "lib/index.js", @@ -38,9 +38,9 @@ "bugs": "https://github.com/npm/libnpmpack/issues", "homepage": "https://npmjs.com/package/libnpmpack", "dependencies": { - "@npmcli/run-script": "^3.0.0", + "@npmcli/run-script": "^4.1.3", "npm-package-arg": "^9.0.1", - "pacote": "^13.5.0" + "pacote": "^13.6.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" diff --git a/deps/npm/node_modules/libnpmversion/package.json b/deps/npm/node_modules/libnpmversion/package.json index 86f97378128375..c5c1a0398bb169 100644 --- a/deps/npm/node_modules/libnpmversion/package.json +++ b/deps/npm/node_modules/libnpmversion/package.json @@ -1,6 +1,6 @@ { "name": "libnpmversion", - "version": "3.0.4", + "version": "3.0.6", "main": "lib/index.js", "files": [ "bin/", @@ -37,7 +37,7 @@ }, "dependencies": { "@npmcli/git": "^3.0.0", - "@npmcli/run-script": "^3.0.0", + "@npmcli/run-script": "^4.1.3", "json-parse-even-better-errors": "^2.3.1", "proc-log": "^2.0.0", "semver": "^7.3.7" diff --git a/deps/npm/node_modules/make-fetch-happen/lib/agent.js b/deps/npm/node_modules/make-fetch-happen/lib/agent.js index f64644ff611a57..dd68492ed7ea7b 100644 --- a/deps/npm/node_modules/make-fetch-happen/lib/agent.js +++ b/deps/npm/node_modules/make-fetch-happen/lib/agent.js @@ -171,7 +171,7 @@ const getPath = u => u.pathname + u.search + u.hash const HttpProxyAgent = require('http-proxy-agent') const HttpsProxyAgent = require('https-proxy-agent') -const SocksProxyAgent = require('socks-proxy-agent') +const { SocksProxyAgent } = require('socks-proxy-agent') module.exports.getProxy = getProxy function getProxy (proxyUrl, opts, isHttps) { // our current proxy agents do not support an overridden dns lookup method, so will not @@ -198,6 +198,9 @@ function getProxy (proxyUrl, opts, isHttps) { return new HttpsProxyAgent(popts) } } else if (proxyUrl.protocol.startsWith('socks')) { + // socks-proxy-agent uses hostname not host + popts.hostname = popts.host + delete popts.host return new SocksProxyAgent(popts) } else { throw Object.assign( diff --git a/deps/npm/node_modules/make-fetch-happen/package.json b/deps/npm/node_modules/make-fetch-happen/package.json index e3d42bb2110d1f..e04c7645c4f2a1 100644 --- a/deps/npm/node_modules/make-fetch-happen/package.json +++ b/deps/npm/node_modules/make-fetch-happen/package.json @@ -1,6 +1,6 @@ { "name": "make-fetch-happen", - "version": "10.1.6", + "version": "10.1.8", "description": "Opinionated, caching, retrying fetch client", "main": "lib/index.js", "files": [ @@ -50,7 +50,7 @@ "minipass-pipeline": "^1.2.4", "negotiator": "^0.6.3", "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.1.1", + "socks-proxy-agent": "^7.0.0", "ssri": "^9.0.0" }, "devDependencies": { diff --git a/deps/npm/node_modules/npm-profile/lib/index.js b/deps/npm/node_modules/npm-profile/lib/index.js index 74a8084292a6c5..eb97c621dd18dc 100644 --- a/deps/npm/node_modules/npm-profile/lib/index.js +++ b/deps/npm/node_modules/npm-profile/lib/index.js @@ -2,6 +2,7 @@ const fetch = require('npm-registry-fetch') const { HttpErrorBase } = require('npm-registry-fetch/lib/errors') +const EventEmitter = require('events') const os = require('os') const { URL } = require('url') const log = require('proc-log') @@ -59,6 +60,9 @@ const webAuth = (opener, opts, body) => { ...opts, method: 'POST', body, + headers: { + 'npm-use-webauthn': opts.authType === 'webauthn', + }, }).then(res => { return Promise.all([res, res.json()]) }).then(([res, content]) => { @@ -70,8 +74,23 @@ const webAuth = (opener, opts, body) => { return content }).then(({ doneUrl, loginUrl }) => { log.verbose('web auth', 'opening url pair') - return opener(loginUrl).then( - () => webAuthCheckLogin(doneUrl, { ...opts, cache: false }) + + const doneEmitter = new EventEmitter() + + const openPromise = opener(loginUrl, doneEmitter) + const webAuthCheckPromise = webAuthCheckLogin(doneUrl, { ...opts, cache: false }) + .then(authResult => { + log.verbose('web auth', 'done-check finished') + + // cancel open prompt if it's present + doneEmitter.emit('abort') + + return authResult + }) + + return Promise.all([openPromise, webAuthCheckPromise]).then( + // pick the auth result and pass it along + ([, authResult]) => authResult ) }).catch(er => { if ((er.statusCode >= 400 && er.statusCode <= 499) || er.statusCode === 500) { diff --git a/deps/npm/node_modules/npm-profile/package.json b/deps/npm/node_modules/npm-profile/package.json index 5e8f2d2391abd6..4f9da95d73fe81 100644 --- a/deps/npm/node_modules/npm-profile/package.json +++ b/deps/npm/node_modules/npm-profile/package.json @@ -1,6 +1,6 @@ { "name": "npm-profile", - "version": "6.0.3", + "version": "6.1.0", "description": "Library for updating an npmjs.com profile", "keywords": [], "author": "GitHub Inc.", @@ -20,7 +20,7 @@ ], "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.4.1", + "@npmcli/template-oss": "3.4.2", "nock": "^13.2.4", "tap": "^16.0.1" }, @@ -44,6 +44,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.4.1" + "version": "3.4.2" } } diff --git a/deps/npm/node_modules/pacote/package.json b/deps/npm/node_modules/pacote/package.json index af100fa8d6bfa2..696c925d353208 100644 --- a/deps/npm/node_modules/pacote/package.json +++ b/deps/npm/node_modules/pacote/package.json @@ -1,6 +1,6 @@ { "name": "pacote", - "version": "13.6.0", + "version": "13.6.1", "description": "JavaScript package downloader", "author": "GitHub Inc.", "bin": { @@ -45,7 +45,7 @@ "@npmcli/git": "^3.0.0", "@npmcli/installed-package-contents": "^1.0.7", "@npmcli/promise-spawn": "^3.0.0", - "@npmcli/run-script": "^3.0.1", + "@npmcli/run-script": "^4.1.0", "cacache": "^16.0.0", "chownr": "^2.0.0", "fs-minipass": "^2.1.0", diff --git a/deps/npm/node_modules/socks-proxy-agent/package.json b/deps/npm/node_modules/socks-proxy-agent/package.json index 268b8a5b187441..aa2999969c1743 100644 --- a/deps/npm/node_modules/socks-proxy-agent/package.json +++ b/deps/npm/node_modules/socks-proxy-agent/package.json @@ -2,7 +2,7 @@ "name": "socks-proxy-agent", "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS", "homepage": "https://github.com/TooTallNate/node-socks-proxy-agent#readme", - "version": "6.2.0", + "version": "7.0.0", "main": "dist/index.js", "author": { "email": "nathan@tootallnate.net", @@ -38,6 +38,10 @@ "name": "Matheus Fernandes", "email": "matheus.frndes@gmail.com" }, + { + "name": "Ricky Miller", + "email": "richardkazuomiller@gmail.com" + }, { "name": "Shantanu Sharma", "email": "shantanu34@outlook.com" @@ -111,12 +115,12 @@ "@commitlint/config-conventional": "latest", "@types/debug": "latest", "@types/node": "latest", - "cacheable-lookup": "^6.0.4", + "cacheable-lookup": "latest", "conventional-github-releaser": "latest", - "dns2": "^2.0.1", + "dns2": "latest", "finepack": "latest", "git-authors-cli": "latest", - "mocha": "latest", + "mocha": "9", "nano-staged": "latest", "npm-check-updates": "latest", "prettier-standard": "latest", @@ -136,6 +140,22 @@ "files": [ "dist" ], + "scripts": { + "build": "tsc", + "clean": "rimraf node_modules", + "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true", + "lint": "ts-standard", + "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)", + "prebuild": "rimraf dist", + "prepublishOnly": "npm run build", + "prerelease": "npm run update:check && npm run contributors", + "release": "standard-version -a", + "release:github": "conventional-github-releaser -p angular", + "release:tags": "git push --follow-tags origin HEAD:master", + "test": "mocha --reporter spec", + "update": "ncu -u", + "update:check": "ncu -- --error-level 2" + }, "license": "MIT", "commitlint": { "extends": [ @@ -157,21 +177,5 @@ "commit-msg": "npx commitlint --edit", "pre-commit": "npx nano-staged" }, - "typings": "dist/index.d.ts", - "scripts": { - "build": "tsc", - "clean": "rimraf node_modules", - "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true", - "lint": "ts-standard", - "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)", - "prebuild": "rimraf dist", - "prerelease": "npm run update:check && npm run contributors", - "release": "standard-version -a", - "release:github": "conventional-github-releaser -p angular", - "release:tags": "git push --follow-tags origin HEAD:master", - "test": "mocha --reporter spec", - "update": "ncu -u", - "update:check": "ncu -- --error-level 2" - }, - "readme": "socks-proxy-agent\n================\n### A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS\n[![Build Status](https://github.com/TooTallNate/node-socks-proxy-agent/workflows/Node%20CI/badge.svg)](https://github.com/TooTallNate/node-socks-proxy-agent/actions?workflow=Node+CI)\n\nThis module provides an `http.Agent` implementation that connects to a\nspecified SOCKS proxy server, and can be used with the built-in `http`\nand `https` modules.\n\nIt can also be used in conjunction with the `ws` module to establish a WebSocket\nconnection over a SOCKS proxy. See the \"Examples\" section below.\n\nInstallation\n------------\n\nInstall with `npm`:\n\n``` bash\nnpm install socks-proxy-agent\n```\n\n\nExamples\n--------\n\n#### TypeScript example\n\n```ts\nimport https from 'https';\nimport { SocksProxyAgent } from 'socks-proxy-agent';\n\nconst info = {\n\thostname: 'br41.nordvpn.com',\n\tuserId: 'your-name@gmail.com',\n\tpassword: 'abcdef12345124'\n};\nconst agent = new SocksProxyAgent(info);\n\nhttps.get('https://ipinfo.io', { agent }, (res) => {\n\tconsole.log(res.headers);\n\tres.pipe(process.stdout);\n});\n```\n\n#### `http` module example\n\n```js\nvar url = require('url');\nvar http = require('http');\nvar { SocksProxyAgent } = require('socks-proxy-agent');\n\n// SOCKS proxy to connect to\nvar proxy = process.env.socks_proxy || 'socks://127.0.0.1:1080';\nconsole.log('using proxy server %j', proxy);\n\n// HTTP endpoint for the proxy to connect to\nvar endpoint = process.argv[2] || 'http://nodejs.org/api/';\nconsole.log('attempting to GET %j', endpoint);\nvar opts = url.parse(endpoint);\n\n// create an instance of the `SocksProxyAgent` class with the proxy server information\nvar agent = new SocksProxyAgent(proxy);\nopts.agent = agent;\n\nhttp.get(opts, function (res) {\n\tconsole.log('\"response\" event!', res.headers);\n\tres.pipe(process.stdout);\n});\n```\n\n#### `https` module example\n\n```js\nvar url = require('url');\nvar https = require('https');\nvar { SocksProxyAgent } = require('socks-proxy-agent');\n\n// SOCKS proxy to connect to\nvar proxy = process.env.socks_proxy || 'socks://127.0.0.1:1080';\nconsole.log('using proxy server %j', proxy);\n\n// HTTP endpoint for the proxy to connect to\nvar endpoint = process.argv[2] || 'https://encrypted.google.com/';\nconsole.log('attempting to GET %j', endpoint);\nvar opts = url.parse(endpoint);\n\n// create an instance of the `SocksProxyAgent` class with the proxy server information\nvar agent = new SocksProxyAgent(proxy);\nopts.agent = agent;\n\nhttps.get(opts, function (res) {\n\tconsole.log('\"response\" event!', res.headers);\n\tres.pipe(process.stdout);\n});\n```\n\n#### `ws` WebSocket connection example\n\n``` js\nvar WebSocket = require('ws');\nvar { SocksProxyAgent } = require('socks-proxy-agent');\n\n// SOCKS proxy to connect to\nvar proxy = process.env.socks_proxy || 'socks://127.0.0.1:1080';\nconsole.log('using proxy server %j', proxy);\n\n// WebSocket endpoint for the proxy to connect to\nvar endpoint = process.argv[2] || 'ws://echo.websocket.org';\nconsole.log('attempting to connect to WebSocket %j', endpoint);\n\n// create an instance of the `SocksProxyAgent` class with the proxy server information\nvar agent = new SocksProxyAgent(proxy);\n\n// initiate the WebSocket connection\nvar socket = new WebSocket(endpoint, { agent: agent });\n\nsocket.on('open', function () {\n\tconsole.log('\"open\" event!');\n\tsocket.send('hello world');\n});\n\nsocket.on('message', function (data, flags) {\n\tconsole.log('\"message\" event! %j %j', data, flags);\n\tsocket.close();\n});\n```\n\nLicense\n-------\n\n(The MIT License)\n\nCopyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" -} \ No newline at end of file + "typings": "dist/index.d.ts" +} diff --git a/deps/npm/package.json b/deps/npm/package.json index fbfabe9365cd03..a9d84ab62ce15a 100644 --- a/deps/npm/package.json +++ b/deps/npm/package.json @@ -1,5 +1,5 @@ { - "version": "8.12.1", + "version": "8.13.1", "name": "npm", "description": "a package manager for JavaScript", "workspaces": [ @@ -62,10 +62,10 @@ "@npmcli/fs": "^2.1.0", "@npmcli/map-workspaces": "^2.0.3", "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^3.0.1", + "@npmcli/run-script": "^4.1.3", "abbrev": "~1.1.1", "archy": "~1.0.0", - "cacache": "^16.1.0", + "cacache": "^16.1.1", "chalk": "^4.1.2", "chownr": "^2.0.0", "cli-columns": "^4.0.0", @@ -90,7 +90,7 @@ "libnpmsearch": "^5.0.2", "libnpmteam": "^4.0.2", "libnpmversion": "^3.0.1", - "make-fetch-happen": "^10.1.6", + "make-fetch-happen": "^10.1.8", "minipass": "^3.1.6", "minipass-pipeline": "^1.2.4", "mkdirp": "^1.0.4", @@ -102,12 +102,12 @@ "npm-install-checks": "^5.0.0", "npm-package-arg": "^9.0.2", "npm-pick-manifest": "^7.0.1", - "npm-profile": "^6.0.3", + "npm-profile": "^6.1.0", "npm-registry-fetch": "^13.1.1", "npm-user-validate": "^1.0.1", "npmlog": "^6.0.2", "opener": "^1.5.2", - "pacote": "^13.6.0", + "pacote": "^13.6.1", "parse-conflict-json": "^2.0.2", "proc-log": "^2.0.1", "qrcode-terminal": "^0.12.0", diff --git a/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs b/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs index 802fa8de935166..13a3b06fe33d65 100644 --- a/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs @@ -98,11 +98,7 @@ exports[`test/lib/load-all-commands.js TAP load each command cache > must match Manipulates packages cache Usage: -npm cache add -npm cache add -npm cache add -npm cache add -npm cache add @ +npm cache add npm cache clean [] npm cache ls [@] npm cache verify @@ -178,7 +174,7 @@ exports[`test/lib/load-all-commands.js TAP load each command deprecate > must ma Deprecate a version of a package Usage: -npm deprecate [@] +npm deprecate Options: [--registry ] [--otp ] @@ -193,10 +189,10 @@ Usage: npm diff [...] Options: -[--diff [--diff ...]] -[--diff-name-only] [--diff-unified ] [--diff-ignore-all-space] -[--diff-no-prefix] [--diff-src-prefix ] [--diff-dst-prefix ] -[--diff-text] [-g|--global] [--tag ] +[--diff [--diff ...]] [--diff-name-only] +[--diff-unified ] [--diff-ignore-all-space] [--diff-no-prefix] +[--diff-src-prefix ] [--diff-dst-prefix ] [--diff-text] [-g|--global] +[--tag ] [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--include-workspace-root] @@ -207,9 +203,9 @@ exports[`test/lib/load-all-commands.js TAP load each command dist-tag > must mat Modify package distribution tags Usage: -npm dist-tag add @ [] -npm dist-tag rm -npm dist-tag ls [] +npm dist-tag add [] +npm dist-tag rm +npm dist-tag ls [] Options: [-w|--workspace [-w|--workspace ...]] @@ -270,8 +266,7 @@ npm exec -c ' [args...]' npm exec --package=foo -c ' [args...]' Options: -[--package [@] [--package [@] ...]] -[-c|--call ] +[--package [--package ...]] [-c|--call ] [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--include-workspace-root] @@ -284,7 +279,7 @@ exports[`test/lib/load-all-commands.js TAP load each command explain > must matc Explain installed packages Usage: -npm explain +npm explain Options: [--json] [-w|--workspace [-w|--workspace ...]] @@ -326,7 +321,7 @@ exports[`test/lib/load-all-commands.js TAP load each command fund > must match s Retrieve funding information Usage: -npm fund [[<@scope>/]] +npm fund [] Options: [--json] [--no-browser|--browser ] [--unicode] @@ -390,12 +385,11 @@ exports[`test/lib/load-all-commands.js TAP load each command init > must match s Create a package.json file Usage: -npm init [--force|-f|--yes|-y|--scope] +npm init (same as \`npx ) npm init <@scope> (same as \`npx <@scope>/create\`) -npm init [<@scope>/] (same as \`npx [<@scope>/]create-\`) Options: -[-y|--yes] [-f|--force] +[-y|--yes] [-f|--force] [--scope <@scope>] [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--no-workspaces-update] [--include-workspace-root] @@ -408,16 +402,7 @@ exports[`test/lib/load-all-commands.js TAP load each command install > must matc Install a package Usage: -npm install [<@scope>/] -npm install [<@scope>/]@ -npm install [<@scope>/]@ -npm install [<@scope>/]@ -npm install @npm: -npm install -npm install -npm install -npm install -npm install / +npm install [ ...] Options: [-S|--save|--no-save|--save-prod|--save-dev|--save-optional|--save-peer|--save-bundle] @@ -452,16 +437,7 @@ exports[`test/lib/load-all-commands.js TAP load each command install-test > must Install package(s) and run tests Usage: -npm install-test [<@scope>/] -npm install-test [<@scope>/]@ -npm install-test [<@scope>/]@ -npm install-test [<@scope>/]@ -npm install-test @npm: -npm install-test -npm install-test -npm install-test -npm install-test -npm install-test / +npm install-test [ ...] Options: [-S|--save|--no-save|--save-prod|--save-dev|--save-optional|--save-peer|--save-bundle] @@ -481,8 +457,7 @@ exports[`test/lib/load-all-commands.js TAP load each command link > must match s Symlink a package folder Usage: -npm link (in package dir) -npm link [<@scope>/][@] +npm link [] Options: [-S|--save|--no-save|--save-prod|--save-dev|--save-optional|--save-peer|--save-bundle] @@ -547,7 +522,7 @@ exports[`test/lib/load-all-commands.js TAP load each command ls > must match sna List installed packages Usage: -npm ls [[<@scope>/] ...] +npm ls Options: [-a|--all] [--json] [-l|--long] [-p|--parseable] [-g|--global] [--depth ] @@ -581,7 +556,7 @@ exports[`test/lib/load-all-commands.js TAP load each command outdated > must mat Check for outdated packages Usage: -npm outdated [[<@scope>/] ...] +npm outdated [ ...] Options: [-a|--all] [--json] [-l|--long] [-p|--parseable] [-g|--global] @@ -594,9 +569,9 @@ exports[`test/lib/load-all-commands.js TAP load each command owner > must match Manage package owners Usage: -npm owner add [<@scope>/] -npm owner rm [<@scope>/] -npm owner ls [<@scope>/] +npm owner add +npm owner rm +npm owner ls Options: [--registry ] [--otp ] @@ -612,7 +587,7 @@ exports[`test/lib/load-all-commands.js TAP load each command pack > must match s Create a tarball from a package Usage: -npm pack [[<@scope>/]...] +npm pack Options: [--dry-run] [--json] [--pack-destination ] @@ -698,7 +673,7 @@ exports[`test/lib/load-all-commands.js TAP load each command publish > must matc Publish a package Usage: -npm publish [] +npm publish Options: [--tag ] [--access ] [--dry-run] [--otp ] @@ -712,7 +687,7 @@ exports[`test/lib/load-all-commands.js TAP load each command rebuild > must matc Rebuild a package Usage: -npm rebuild [[<@scope>/][@] ...] +npm rebuild [] ...] Options: [-g|--global] [--no-bin-links] [--foreground-scripts] [--ignore-scripts] @@ -829,7 +804,7 @@ exports[`test/lib/load-all-commands.js TAP load each command star > must match s Mark your favorite packages Usage: -npm star [...] +npm star [...] Options: [--registry ] [--unicode] [--otp ] @@ -938,7 +913,7 @@ exports[`test/lib/load-all-commands.js TAP load each command unpublish > must ma Remove a package from the registry Usage: -npm unpublish [<@scope>/][@] +npm unpublish [] Options: [--dry-run] [-f|--force] @@ -952,7 +927,7 @@ exports[`test/lib/load-all-commands.js TAP load each command unstar > must match Remove an item from your favorite packages Usage: -npm unstar [...] +npm unstar [...] Options: [--registry ] [--unicode] [--otp ] @@ -1001,7 +976,7 @@ exports[`test/lib/load-all-commands.js TAP load each command view > must match s View registry info Usage: -npm view [<@scope>/][@] [[.subfield]...] +npm view [] [[.subfield]...] Options: [--json] [-w|--workspace [-w|--workspace ...]] diff --git a/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs b/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs index d08935a14d1772..c59252f9e81a9e 100644 --- a/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs @@ -238,11 +238,7 @@ All commands: cache Manipulates packages cache Usage: - npm cache add - npm cache add - npm cache add - npm cache add - npm cache add @ + npm cache add npm cache clean [] npm cache ls [@] npm cache verify @@ -308,7 +304,7 @@ All commands: deprecate Deprecate a version of a package Usage: - npm deprecate [@] + npm deprecate Options: [--registry ] [--otp ] @@ -321,10 +317,10 @@ All commands: npm diff [...] Options: - [--diff [--diff ...]] - [--diff-name-only] [--diff-unified ] [--diff-ignore-all-space] - [--diff-no-prefix] [--diff-src-prefix ] [--diff-dst-prefix ] - [--diff-text] [-g|--global] [--tag ] + [--diff [--diff ...]] [--diff-name-only] + [--diff-unified ] [--diff-ignore-all-space] [--diff-no-prefix] + [--diff-src-prefix ] [--diff-dst-prefix ] [--diff-text] [-g|--global] + [--tag ] [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--include-workspace-root] @@ -333,9 +329,9 @@ All commands: dist-tag Modify package distribution tags Usage: - npm dist-tag add @ [] - npm dist-tag rm - npm dist-tag ls [] + npm dist-tag add [] + npm dist-tag rm + npm dist-tag ls [] Options: [-w|--workspace [-w|--workspace ...]] @@ -388,8 +384,7 @@ All commands: npm exec --package=foo -c ' [args...]' Options: - [--package [@] [--package [@] ...]] - [-c|--call ] + [--package [--package ...]] [-c|--call ] [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--include-workspace-root] @@ -400,7 +395,7 @@ All commands: explain Explain installed packages Usage: - npm explain + npm explain Options: [--json] [-w|--workspace [-w|--workspace ...]] @@ -436,7 +431,7 @@ All commands: fund Retrieve funding information Usage: - npm fund [[<@scope>/]] + npm fund [] Options: [--json] [--no-browser|--browser ] [--unicode] @@ -480,12 +475,11 @@ All commands: init Create a package.json file Usage: - npm init [--force|-f|--yes|-y|--scope] + npm init (same as \`npx ) npm init <@scope> (same as \`npx <@scope>/create\`) - npm init [<@scope>/] (same as \`npx [<@scope>/]create-\`) Options: - [-y|--yes] [-f|--force] + [-y|--yes] [-f|--force] [--scope <@scope>] [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--no-workspaces-update] [--include-workspace-root] @@ -496,16 +490,7 @@ All commands: install Install a package Usage: - npm install [<@scope>/] - npm install [<@scope>/]@ - npm install [<@scope>/]@ - npm install [<@scope>/]@ - npm install @npm: - npm install - npm install - npm install - npm install - npm install / + npm install [ ...] Options: [-S|--save|--no-save|--save-prod|--save-dev|--save-optional|--save-peer|--save-bundle] @@ -536,16 +521,7 @@ All commands: install-test Install package(s) and run tests Usage: - npm install-test [<@scope>/] - npm install-test [<@scope>/]@ - npm install-test [<@scope>/]@ - npm install-test [<@scope>/]@ - npm install-test @npm: - npm install-test - npm install-test - npm install-test - npm install-test - npm install-test / + npm install-test [ ...] Options: [-S|--save|--no-save|--save-prod|--save-dev|--save-optional|--save-peer|--save-bundle] @@ -563,8 +539,7 @@ All commands: link Symlink a package folder Usage: - npm link (in package dir) - npm link [<@scope>/][@] + npm link [] Options: [-S|--save|--no-save|--save-prod|--save-dev|--save-optional|--save-peer|--save-bundle] @@ -621,7 +596,7 @@ All commands: ls List installed packages Usage: - npm ls [[<@scope>/] ...] + npm ls Options: [-a|--all] [--json] [-l|--long] [-p|--parseable] [-g|--global] [--depth ] @@ -651,7 +626,7 @@ All commands: outdated Check for outdated packages Usage: - npm outdated [[<@scope>/] ...] + npm outdated [ ...] Options: [-a|--all] [--json] [-l|--long] [-p|--parseable] [-g|--global] @@ -662,9 +637,9 @@ All commands: owner Manage package owners Usage: - npm owner add [<@scope>/] - npm owner rm [<@scope>/] - npm owner ls [<@scope>/] + npm owner add + npm owner rm + npm owner ls Options: [--registry ] [--otp ] @@ -678,7 +653,7 @@ All commands: pack Create a tarball from a package Usage: - npm pack [[<@scope>/]...] + npm pack Options: [--dry-run] [--json] [--pack-destination ] @@ -752,7 +727,7 @@ All commands: publish Publish a package Usage: - npm publish [] + npm publish Options: [--tag ] [--access ] [--dry-run] [--otp ] @@ -764,7 +739,7 @@ All commands: rebuild Rebuild a package Usage: - npm rebuild [[<@scope>/][@] ...] + npm rebuild [] ...] Options: [-g|--global] [--no-bin-links] [--foreground-scripts] [--ignore-scripts] @@ -863,7 +838,7 @@ All commands: star Mark your favorite packages Usage: - npm star [...] + npm star [...] Options: [--registry ] [--unicode] [--otp ] @@ -956,7 +931,7 @@ All commands: unpublish Remove a package from the registry Usage: - npm unpublish [<@scope>/][@] + npm unpublish [] Options: [--dry-run] [-f|--force] @@ -968,7 +943,7 @@ All commands: unstar Remove an item from your favorite packages Usage: - npm unstar [...] + npm unstar [...] Options: [--registry ] [--unicode] [--otp ] @@ -1011,7 +986,7 @@ All commands: view View registry info Usage: - npm view [<@scope>/][@] [[.subfield]...] + npm view [] [[.subfield]...] Options: [--json] [-w|--workspace [-w|--workspace ...]] diff --git a/deps/npm/tap-snapshots/test/lib/utils/config/definitions.js.test.cjs b/deps/npm/tap-snapshots/test/lib/utils/config/definitions.js.test.cjs index 33d6e4fb7a00f7..19909d8c5b35d6 100644 --- a/deps/npm/tap-snapshots/test/lib/utils/config/definitions.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/utils/config/definitions.js.test.cjs @@ -1591,7 +1591,7 @@ exports[`test/lib/utils/config/definitions.js TAP > config description for scrip * Type: null or String The shell to use for scripts run with the \`npm exec\`, \`npm run\` and \`npm -init \` commands. +init \` commands. ` exports[`test/lib/utils/config/definitions.js TAP > config description for searchexclude 1`] = ` diff --git a/deps/npm/tap-snapshots/test/lib/utils/config/describe-all.js.test.cjs b/deps/npm/tap-snapshots/test/lib/utils/config/describe-all.js.test.cjs index 77f2c876841ede..9d95aa9528bd89 100644 --- a/deps/npm/tap-snapshots/test/lib/utils/config/describe-all.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/utils/config/describe-all.js.test.cjs @@ -1391,7 +1391,7 @@ npm init --scope=@foo --yes * Type: null or String The shell to use for scripts run with the \`npm exec\`, \`npm run\` and \`npm -init \` commands. +init \` commands. diff --git a/deps/npm/tap-snapshots/test/lib/utils/open-url-prompt.js.test.cjs b/deps/npm/tap-snapshots/test/lib/utils/open-url-prompt.js.test.cjs new file mode 100644 index 00000000000000..8af3c475c7720c --- /dev/null +++ b/deps/npm/tap-snapshots/test/lib/utils/open-url-prompt.js.test.cjs @@ -0,0 +1,25 @@ +/* IMPORTANT + * This snapshot file is auto-generated, but designed for humans. + * It should be checked into source control and tracked carefully. + * Re-generate by setting TAP_SNAPSHOT=1 and running tests. + * Make sure to inspect the output below. Do not ignore changes! + */ +'use strict' +exports[`test/lib/utils/open-url-prompt.js TAP opens a url > must match snapshot 1`] = ` +Array [ + Array [ + String( + npm home: + https://www.npmjs.com + ), + ], +] +` + +exports[`test/lib/utils/open-url-prompt.js TAP prints json output > must match snapshot 1`] = ` +Array [ + Array [ + "{\\"title\\":\\"npm home\\",\\"url\\":\\"https://www.npmjs.com\\"}", + ], +] +` diff --git a/deps/npm/test/lib/auth/legacy.js b/deps/npm/test/lib/auth/legacy.js index 0c23f8ba6b3356..39d977d436b5e2 100644 --- a/deps/npm/test/lib/auth/legacy.js +++ b/deps/npm/test/lib/auth/legacy.js @@ -12,7 +12,7 @@ const legacy = t.mock('../../../lib/auth/legacy.js', { }, }, 'npm-profile': profile, - '../../../lib/utils/open-url.js': (npm, url, msg) => { + '../../../lib/utils/open-url-prompt.js': (_npm, url) => { if (!url) { throw Object.assign(new Error('failed open url'), { code: 'ERROR' }) } diff --git a/deps/npm/test/lib/commands/edit.js b/deps/npm/test/lib/commands/edit.js index 1943e8c5fb4ae1..b2a10be135ad90 100644 --- a/deps/npm/test/lib/commands/edit.js +++ b/deps/npm/test/lib/commands/edit.js @@ -1,4 +1,5 @@ const t = require('tap') +const fs = require('fs') const path = require('path') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -41,11 +42,19 @@ t.test('npm edit', async t => { const [scriptShell] = makeSpawnArgs({ event: 'install', path: npm.prefix, + cmd: 'testinstall', }) spawk.spawn('testeditor', [semverPath]) spawk.spawn( scriptShell, - args => args.includes('testinstall'), + args => { + const lastArg = args[args.length - 1] + const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') + const rightFilename = path.basename(lastArg).startsWith('install') + const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) + .trim().endsWith('testinstall') + return rightExtension && rightFilename && rightContents + }, { cwd: semverPath } ) await npm.exec('edit', ['semver']) @@ -58,11 +67,19 @@ t.test('rebuild failure', async t => { const [scriptShell] = makeSpawnArgs({ event: 'install', path: npm.prefix, + cmd: 'testinstall', }) spawk.spawn('testeditor', [semverPath]) spawk.spawn( scriptShell, - args => args.includes('testinstall'), + args => { + const lastArg = args[args.length - 1] + const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') + const rightFilename = path.basename(lastArg).startsWith('install') + const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) + .trim().endsWith('testinstall') + return rightExtension && rightFilename && rightContents + }, { cwd: semverPath } ).exit(1).stdout('test error') await t.rejects( @@ -94,11 +111,19 @@ t.test('npm edit editor has flags', async t => { const [scriptShell] = makeSpawnArgs({ event: 'install', path: npm.prefix, + cmd: 'testinstall', }) spawk.spawn('testeditor', ['--flag', semverPath]) spawk.spawn( scriptShell, - args => args.includes('testinstall'), + args => { + const lastArg = args[args.length - 1] + const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') + const rightFilename = path.basename(lastArg).startsWith('install') + const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) + .trim().endsWith('testinstall') + return rightExtension && rightFilename && rightContents + }, { cwd: semverPath } ) await npm.exec('edit', ['semver']) diff --git a/deps/npm/test/lib/commands/restart.js b/deps/npm/test/lib/commands/restart.js index 84bd93d8c99ca9..bfbe715e8c688d 100644 --- a/deps/npm/test/lib/commands/restart.js +++ b/deps/npm/test/lib/commands/restart.js @@ -1,3 +1,5 @@ +const fs = require('fs') +const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -24,10 +26,14 @@ t.test('should run restart script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix }) + const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-restart.js' }) const script = spawk.spawn(scriptShell, (args) => { - t.ok(args.includes('node ./test-restart.js "foo"'), 'ran restart script with extra args') - return true + const lastArg = args[args.length - 1] + const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') + const rightFilename = path.basename(lastArg).startsWith('restart') + const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) + .trim().endsWith('foo') + return rightExtension && rightFilename && rightContents }) await npm.exec('restart', ['foo']) t.ok(script.called, 'script ran') diff --git a/deps/npm/test/lib/commands/start.js b/deps/npm/test/lib/commands/start.js index 8fc73493d20a9a..79c2133bc69fc4 100644 --- a/deps/npm/test/lib/commands/start.js +++ b/deps/npm/test/lib/commands/start.js @@ -1,3 +1,5 @@ +const fs = require('fs') +const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -10,7 +12,6 @@ const spawk = tspawk(t) const makeSpawnArgs = require('@npmcli/run-script/lib/make-spawn-args.js') t.test('should run start script from package.json', async t => { - t.plan(2) const { npm } = await loadMockNpm(t, { prefixDir: { 'package.json': JSON.stringify({ @@ -25,10 +26,14 @@ t.test('should run start script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix }) + const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-start.js' }) const script = spawk.spawn(scriptShell, (args) => { - t.ok(args.includes('node ./test-start.js "foo"'), 'ran start script with extra args') - return true + const lastArg = args[args.length - 1] + const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') + const rightFilename = path.basename(lastArg).startsWith('start') + const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) + .trim().endsWith('foo') + return rightExtension && rightFilename && rightContents }) await npm.exec('start', ['foo']) t.ok(script.called, 'script ran') diff --git a/deps/npm/test/lib/commands/stop.js b/deps/npm/test/lib/commands/stop.js index f2aef21899f6ce..1a4abd0b3abda7 100644 --- a/deps/npm/test/lib/commands/stop.js +++ b/deps/npm/test/lib/commands/stop.js @@ -1,3 +1,5 @@ +const fs = require('fs') +const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -24,10 +26,14 @@ t.test('should run stop script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix }) + const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-stop.js' }) const script = spawk.spawn(scriptShell, (args) => { - t.ok(args.includes('node ./test-stop.js "foo"'), 'ran stop script with extra args') - return true + const lastArg = args[args.length - 1] + const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') + const rightFilename = path.basename(lastArg).startsWith('stop') + const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) + .trim().endsWith('foo') + return rightExtension && rightFilename && rightContents }) await npm.exec('stop', ['foo']) t.ok(script.called, 'script ran') diff --git a/deps/npm/test/lib/commands/test.js b/deps/npm/test/lib/commands/test.js index e9ea0a3c834aa1..c6d3f530bb69e3 100644 --- a/deps/npm/test/lib/commands/test.js +++ b/deps/npm/test/lib/commands/test.js @@ -1,3 +1,5 @@ +const fs = require('fs') +const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -24,10 +26,14 @@ t.test('should run test script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix }) + const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-test.js' }) const script = spawk.spawn(scriptShell, (args) => { - t.ok(args.includes('node ./test-test.js "foo"'), 'ran test script with extra args') - return true + const lastArg = args[args.length - 1] + const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') + const rightFilename = path.basename(lastArg).startsWith('test') + const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) + .trim().endsWith('foo') + return rightExtension && rightFilename && rightContents }) await npm.exec('test', ['foo']) t.ok(script.called, 'script ran') diff --git a/deps/npm/test/lib/commands/view.js b/deps/npm/test/lib/commands/view.js index da823db5d75072..d347bc9230ec8a 100644 --- a/deps/npm/test/lib/commands/view.js +++ b/deps/npm/test/lib/commands/view.js @@ -33,6 +33,7 @@ const packument = (nv, opts) => { }, }, blue: { + _id: 'blue', name: 'blue', 'dist-tags': { latest: '1.0.0', @@ -464,6 +465,14 @@ t.test('throws when unpublished', async t => { ) }) +t.test('throws when version not matched', async t => { + const { npm } = await loadMockNpm(t) + await t.rejects( + npm.exec('view', ['blue@2.0.0']), + { code: 'E404', pkgid: 'blue@2.0.0', message: 'No match found for version 2.0.0' } + ) +}) + t.test('workspaces', async t => { const prefixDir = { 'package.json': JSON.stringify({ diff --git a/deps/npm/test/lib/utils/open-url-prompt.js b/deps/npm/test/lib/utils/open-url-prompt.js new file mode 100644 index 00000000000000..6908e36b7c81e3 --- /dev/null +++ b/deps/npm/test/lib/utils/open-url-prompt.js @@ -0,0 +1,150 @@ +const t = require('tap') +const mockGlobals = require('../../fixtures/mock-globals.js') +const EventEmitter = require('events') + +const OUTPUT = [] +const output = (...args) => OUTPUT.push(args) +const npm = { + _config: { + json: false, + browser: true, + }, + config: { + get: k => npm._config[k], + set: (k, v) => { + npm._config[k] = v + }, + }, + output, +} + +let openerUrl = null +let openerOpts = null +let openerResult = null +const opener = (url, opts, cb) => { + openerUrl = url + openerOpts = opts + return cb(openerResult) +} + +let questionShouldResolve = true +const readline = { + createInterface: () => ({ + question: (_q, cb) => { + if (questionShouldResolve === true) { + cb() + } + }, + close: () => {}, + }), +} + +const openUrlPrompt = t.mock('../../../lib/utils/open-url-prompt.js', { + opener, + readline, +}) + +mockGlobals(t, { + 'process.stdin.isTTY': true, + 'process.stdout.isTTY': true, +}) + +t.test('does not open a url in non-interactive environments', async t => { + t.teardown(() => { + openerUrl = null + openerOpts = null + OUTPUT.length = 0 + }) + + mockGlobals(t, { + 'process.stdin.isTTY': false, + 'process.stdout.isTTY': false, + }) + + await openUrlPrompt(npm, 'https://www.npmjs.com', 'npm home', 'prompt') + t.equal(openerUrl, null, 'did not open') + t.same(openerOpts, null, 'did not open') +}) + +t.test('opens a url', async t => { + t.teardown(() => { + openerUrl = null + openerOpts = null + OUTPUT.length = 0 + npm._config.browser = true + }) + + npm._config.browser = 'browser' + await openUrlPrompt(npm, 'https://www.npmjs.com', 'npm home', 'prompt') + t.equal(openerUrl, 'https://www.npmjs.com', 'opened the given url') + t.same(openerOpts, { command: 'browser' }, 'passed command as null (the default)') + t.matchSnapshot(OUTPUT) +}) + +t.test('prints json output', async t => { + t.teardown(() => { + openerUrl = null + openerOpts = null + OUTPUT.length = 0 + npm._config.json = false + }) + + npm._config.json = true + await openUrlPrompt(npm, 'https://www.npmjs.com', 'npm home', 'prompt') + t.matchSnapshot(OUTPUT) +}) + +t.test('returns error for non-https url', async t => { + t.teardown(() => { + openerUrl = null + openerOpts = null + OUTPUT.length = 0 + }) + await t.rejects( + openUrlPrompt(npm, 'ftp://www.npmjs.com', 'npm home', 'prompt'), + /Invalid URL/, + 'got the correct error' + ) + t.equal(openerUrl, null, 'did not open') + t.same(openerOpts, null, 'did not open') + t.same(OUTPUT, [], 'printed no output') +}) + +t.test('does not open url if canceled', async t => { + t.teardown(() => { + openerUrl = null + openerOpts = null + OUTPUT.length = 0 + questionShouldResolve = true + }) + + questionShouldResolve = false + const emitter = new EventEmitter() + + const open = openUrlPrompt(npm, 'https://www.npmjs.com', 'npm home', 'prompt', emitter) + + emitter.emit('abort') + + await open + + t.equal(openerUrl, null, 'did not open') + t.same(openerOpts, null, 'did not open') +}) + +t.test('returns error when opener errors', async t => { + t.teardown(() => { + openerUrl = null + openerOpts = null + openerResult = null + OUTPUT.length = 0 + }) + + openerResult = new Error('Opener failed') + + await t.rejects( + openUrlPrompt(npm, 'https://www.npmjs.com', 'npm home', 'prompt'), + /Opener failed/, + 'got the correct error' + ) + t.equal(openerUrl, 'https://www.npmjs.com', 'did not open') +}) From bb326f7ece04b7f953e05ed8185e7e38a3795d56 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Sat, 25 Jun 2022 08:22:35 +0300 Subject: [PATCH 064/175] crypto: handle webcrypto generateKey() usages edge case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43454 Reviewed-By: Tobias Nießen --- lib/internal/crypto/webcrypto.js | 40 +++++++++---- .../test-webcrypto-derivebits-ecdh.js | 2 +- .../parallel/test-webcrypto-derivekey-ecdh.js | 2 +- test/parallel/test-webcrypto-keygen.js | 59 +++++++++++-------- 4 files changed, 65 insertions(+), 38 deletions(-) diff --git a/lib/internal/crypto/webcrypto.js b/lib/internal/crypto/webcrypto.js index dc2e94aae7770e..b7760efaa234c8 100644 --- a/lib/internal/crypto/webcrypto.js +++ b/lib/internal/crypto/webcrypto.js @@ -89,19 +89,18 @@ async function generateKey( algorithm = normalizeAlgorithm(algorithm); validateBoolean(extractable, 'extractable'); validateArray(keyUsages, 'keyUsages'); - if (keyUsages.length === 0) { - throw lazyDOMException( - 'Usages cannot be empty when creating a key', - 'SyntaxError'); - } + let result; + let resultType; switch (algorithm.name) { case 'RSASSA-PKCS1-v1_5': // Fall through case 'RSA-PSS': // Fall through case 'RSA-OAEP': - return lazyRequire('internal/crypto/rsa') + resultType = 'CryptoKeyPair'; + result = await lazyRequire('internal/crypto/rsa') .rsaKeyGenerate(algorithm, extractable, keyUsages); + break; case 'Ed25519': // Fall through case 'Ed448': @@ -109,16 +108,22 @@ async function generateKey( case 'X25519': // Fall through case 'X448': - return lazyRequire('internal/crypto/cfrg') + resultType = 'CryptoKeyPair'; + result = await lazyRequire('internal/crypto/cfrg') .cfrgGenerateKey(algorithm, extractable, keyUsages); + break; case 'ECDSA': // Fall through case 'ECDH': - return lazyRequire('internal/crypto/ec') + resultType = 'CryptoKeyPair'; + result = await lazyRequire('internal/crypto/ec') .ecGenerateKey(algorithm, extractable, keyUsages); + break; case 'HMAC': - return lazyRequire('internal/crypto/mac') + resultType = 'CryptoKey'; + result = await lazyRequire('internal/crypto/mac') .hmacGenerateKey(algorithm, extractable, keyUsages); + break; case 'AES-CTR': // Fall through case 'AES-CBC': @@ -126,11 +131,26 @@ async function generateKey( case 'AES-GCM': // Fall through case 'AES-KW': - return lazyRequire('internal/crypto/aes') + resultType = 'CryptoKey'; + result = await lazyRequire('internal/crypto/aes') .aesGenerateKey(algorithm, extractable, keyUsages); + break; default: throw lazyDOMException('Unrecognized name.'); } + + if ( + (resultType === 'CryptoKey' && + (result.type === 'secret' || result.type === 'private') && + result.usages.length === 0) || + (resultType === 'CryptoKeyPair' && result.privateKey.usages.length === 0) + ) { + throw lazyDOMException( + 'Usages cannot be empty when creating a key.', + 'SyntaxError'); + } + + return result; } async function deriveBits(algorithm, baseKey, length) { diff --git a/test/parallel/test-webcrypto-derivebits-ecdh.js b/test/parallel/test-webcrypto-derivebits-ecdh.js index 826b591d37ca65..739155fba47818 100644 --- a/test/parallel/test-webcrypto-derivebits-ecdh.js +++ b/test/parallel/test-webcrypto-derivebits-ecdh.js @@ -201,7 +201,7 @@ async function prepareKeys() { { name: 'ECDSA', namedCurve: 'P-521' - }, false, ['verify']); + }, false, ['sign', 'verify']); await assert.rejects(subtle.deriveBits({ name: 'ECDH', diff --git a/test/parallel/test-webcrypto-derivekey-ecdh.js b/test/parallel/test-webcrypto-derivekey-ecdh.js index 203a0c5677fbc0..2ca54957a55304 100644 --- a/test/parallel/test-webcrypto-derivekey-ecdh.js +++ b/test/parallel/test-webcrypto-derivekey-ecdh.js @@ -165,7 +165,7 @@ async function prepareKeys() { namedCurve: 'P-521' }, false, - ['verify']); + ['sign', 'verify']); await assert.rejects( subtle.deriveKey( diff --git a/test/parallel/test-webcrypto-keygen.js b/test/parallel/test-webcrypto-keygen.js index 5d039fdf036344..e61d7c9b913abf 100644 --- a/test/parallel/test-webcrypto-keygen.js +++ b/test/parallel/test-webcrypto-keygen.js @@ -29,49 +29,49 @@ const allUsages = [ const vectors = { 'AES-CTR': { algorithm: { length: 256 }, + result: 'CryptoKey', usages: [ 'encrypt', 'decrypt', 'wrapKey', 'unwrapKey', ], - mandatoryUsages: [] }, 'AES-CBC': { algorithm: { length: 256 }, + result: 'CryptoKey', usages: [ 'encrypt', 'decrypt', 'wrapKey', 'unwrapKey', ], - mandatoryUsages: [] }, 'AES-GCM': { algorithm: { length: 256 }, + result: 'CryptoKey', usages: [ 'encrypt', 'decrypt', 'wrapKey', 'unwrapKey', ], - mandatoryUsages: [] }, 'AES-KW': { algorithm: { length: 256 }, + result: 'CryptoKey', usages: [ 'wrapKey', 'unwrapKey', ], - mandatoryUsages: [] }, 'HMAC': { algorithm: { length: 256, hash: 'SHA-256' }, + result: 'CryptoKey', usages: [ 'sign', 'verify', ], - mandatoryUsages: [] }, 'RSASSA-PKCS1-v1_5': { algorithm: { @@ -79,11 +79,11 @@ const vectors = { publicExponent: new Uint8Array([1, 0, 1]), hash: 'SHA-256' }, + result: 'CryptoKeyPair', usages: [ 'sign', 'verify', ], - mandatoryUsages: ['sign'], }, 'RSA-PSS': { algorithm: { @@ -91,11 +91,11 @@ const vectors = { publicExponent: new Uint8Array([1, 0, 1]), hash: 'SHA-256' }, + result: 'CryptoKeyPair', usages: [ 'sign', 'verify', ], - mandatoryUsages: ['sign'] }, 'RSA-OAEP': { algorithm: { @@ -103,69 +103,57 @@ const vectors = { publicExponent: new Uint8Array([1, 0, 1]), hash: 'SHA-256' }, + result: 'CryptoKeyPair', usages: [ 'encrypt', 'decrypt', 'wrapKey', 'unwrapKey', ], - mandatoryUsages: [ - 'decrypt', - 'unwrapKey', - ] }, 'ECDSA': { algorithm: { namedCurve: 'P-521' }, + result: 'CryptoKeyPair', usages: [ 'sign', 'verify', ], - mandatoryUsages: ['sign'] }, 'ECDH': { algorithm: { namedCurve: 'P-521' }, + result: 'CryptoKeyPair', usages: [ 'deriveKey', 'deriveBits', ], - mandatoryUsages: [ - 'deriveKey', - 'deriveBits', - ] }, 'Ed25519': { + result: 'CryptoKeyPair', usages: [ 'sign', 'verify', ], - mandatoryUsages: ['sign'] }, 'Ed448': { + result: 'CryptoKeyPair', usages: [ 'sign', 'verify', ], - mandatoryUsages: ['sign'] }, 'X25519': { + result: 'CryptoKeyPair', usages: [ 'deriveKey', 'deriveBits', ], - mandatoryUsages: [ - 'deriveKey', - 'deriveBits', - ] }, 'X448': { + result: 'CryptoKeyPair', usages: [ 'deriveKey', 'deriveBits', ], - mandatoryUsages: [ - 'deriveKey', - 'deriveBits', - ] }, }; @@ -219,6 +207,25 @@ const vectors = { []), { message: /Usages cannot be empty/ }); + // For CryptoKeyPair results the private key + // usages must not be empty. + // - ECDH(-like) algorithm key pairs only have private key usages + // - Signing algorithm key pairs may pass a non-empty array but + // with only a public key usage + if ( + vectors[name].result === 'CryptoKeyPair' && + vectors[name].usages.includes('verify') + ) { + await assert.rejects( + subtle.generateKey( + { + name, ...vectors[name].algorithm + }, + true, + ['verify']), + { message: /Usages cannot be empty/ }); + } + const invalidUsages = []; allUsages.forEach((usage) => { if (!vectors[name].usages.includes(usage)) From b27856d3d438ec790e60397d19ec3d397f7c51c5 Mon Sep 17 00:00:00 2001 From: theanarkh Date: Sat, 25 Jun 2022 18:37:20 +0800 Subject: [PATCH 065/175] http: add perf_hooks detail for http request and client PR-URL: https://github.com/nodejs/node/pull/43361 Reviewed-By: Paolo Insogna Reviewed-By: Matteo Collina --- doc/api/perf_hooks.md | 18 +++++++++++++++ lib/_http_client.js | 33 ++++++++++++++++++++------- lib/_http_server.js | 32 +++++++++++++++++++------- lib/internal/http.js | 23 ------------------- test/parallel/test-http-perf_hooks.js | 6 +++++ 5 files changed, 73 insertions(+), 39 deletions(-) diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md index 46c2b58eab7f9d..a56b1f232a1b06 100644 --- a/doc/api/perf_hooks.md +++ b/doc/api/perf_hooks.md @@ -521,6 +521,24 @@ property will be an {Object} with two properties: * `perf_hooks.constants.NODE_PERFORMANCE_GC_FLAGS_ALL_EXTERNAL_MEMORY` * `perf_hooks.constants.NODE_PERFORMANCE_GC_FLAGS_SCHEDULE_IDLE` +### HTTP ('http') Details + +When `performanceEntry.type` is equal to `'http'`, the `performanceEntry.detail` +property will be an {Object} containing additional information. + +If `performanceEntry.name` is equal to `HttpClient`, the `detail` +will contain the following properties: `req`, `res`. And the `req` property +will be an {Object} containing `method`, `url`, `headers`, the `res` property +will be an {Object} containing `statusCode`, `statusMessage`, `headers`. + +If `performanceEntry.name` is equal to `HttpRequest`, the `detail` +will contain the following properties: `req`, `res`. And the `req` property +will be an {Object} containing `method`, `url`, `headers`, the `res` property +will be an {Object} containing `statusCode`, `statusMessage`, `headers`. + +This could add additional memory overhead and should only be used for +diagnostic purposes, not left turned on in production by default. + ### HTTP/2 ('http2') Details When `performanceEntry.type` is equal to `'http2'`, the diff --git a/lib/_http_client.js b/lib/_http_client.js index 91906b85a38910..a06b3904247d73 100644 --- a/lib/_http_client.js +++ b/lib/_http_client.js @@ -64,7 +64,7 @@ const Agent = require('_http_agent'); const { Buffer } = require('buffer'); const { defaultTriggerAsyncIdScope } = require('internal/async_hooks'); const { URL, urlToHttpOptions, searchParamsSymbol } = require('internal/url'); -const { kOutHeaders, kNeedDrain, emitStatistics } = require('internal/http'); +const { kOutHeaders, kNeedDrain } = require('internal/http'); const { connResetException, codes } = require('internal/errors'); const { ERR_HTTP_HEADERS_SENT, @@ -84,10 +84,10 @@ const { const { hasObserver, + startPerf, + stopPerf, } = require('internal/perf/observe'); -const { now } = require('internal/perf/utils'); - const kClientRequestStatistics = Symbol('ClientRequestStatistics'); const { addAbortSignal, finished } = require('stream'); @@ -355,10 +355,17 @@ ClientRequest.prototype._finish = function _finish() { DTRACE_HTTP_CLIENT_REQUEST(this, this.socket); FunctionPrototypeCall(OutgoingMessage.prototype._finish, this); if (hasObserver('http')) { - this[kClientRequestStatistics] = { - startTime: now(), - type: 'HttpClient', - }; + startPerf(this, kClientRequestStatistics, { + type: 'http', + name: 'HttpClient', + detail: { + req: { + method: this.method, + url: `${this.protocol}//${this.host}${this.path}`, + headers: typeof this.getHeaders === 'function' ? this.getHeaders() : {}, + }, + }, + }); } }; @@ -627,7 +634,17 @@ function parserOnIncomingClient(res, shouldKeepAlive) { } DTRACE_HTTP_CLIENT_RESPONSE(socket, req); - emitStatistics(req[kClientRequestStatistics]); + if (req[kClientRequestStatistics] && hasObserver('http')) { + stopPerf(req, kClientRequestStatistics, { + detail: { + res: { + statusCode: res.statusCode, + statusMessage: res.statusMessage, + headers: res.headers, + }, + }, + }); + } req.res = res; res.req = req; diff --git a/lib/_http_server.js b/lib/_http_server.js index 48f825f15cb51d..938dd7aad75cee 100644 --- a/lib/_http_server.js +++ b/lib/_http_server.js @@ -55,7 +55,6 @@ const { const { kOutHeaders, kNeedDrain, - emitStatistics } = require('internal/http'); const { defaultTriggerAsyncIdScope, @@ -98,10 +97,10 @@ const kServerResponseStatistics = Symbol('ServerResponseStatistics'); const { hasObserver, + startPerf, + stopPerf, } = require('internal/perf/observe'); -const { now } = require('internal/perf/utils'); - const STATUS_CODES = { 100: 'Continue', // RFC 7231 6.2.1 101: 'Switching Protocols', // RFC 7231 6.2.2 @@ -199,10 +198,17 @@ function ServerResponse(req) { } if (hasObserver('http')) { - this[kServerResponseStatistics] = { - startTime: now(), - type: 'HttpRequest', - }; + startPerf(this, kServerResponseStatistics, { + type: 'http', + name: 'HttpRequest', + detail: { + req: { + method: req.method, + url: req.url, + headers: req.headers, + }, + }, + }); } } ObjectSetPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype); @@ -210,7 +216,17 @@ ObjectSetPrototypeOf(ServerResponse, OutgoingMessage); ServerResponse.prototype._finish = function _finish() { DTRACE_HTTP_SERVER_RESPONSE(this.socket); - emitStatistics(this[kServerResponseStatistics]); + if (this[kServerResponseStatistics] && hasObserver('http')) { + stopPerf(this, kServerResponseStatistics, { + detail: { + res: { + statusCode: this.statusCode, + statusMessage: this.statusMessage, + headers: typeof this.getHeaders === 'function' ? this.getHeaders() : {}, + }, + }, + }); + } OutgoingMessage.prototype._finish.call(this); }; diff --git a/lib/internal/http.js b/lib/internal/http.js index a92a985ffacccc..337d155340f7e6 100644 --- a/lib/internal/http.js +++ b/lib/internal/http.js @@ -9,15 +9,6 @@ const { const { setUnrefTimeout } = require('internal/timers'); -const { InternalPerformanceEntry } = require('internal/perf/performance_entry'); - -const { - enqueue, - hasObserver, -} = require('internal/perf/observe'); - -const { now } = require('internal/perf/utils'); - let utcCache; function utcDate() { @@ -35,22 +26,8 @@ function resetCache() { utcCache = undefined; } -function emitStatistics(statistics) { - if (!hasObserver('http') || statistics == null) return; - const startTime = statistics.startTime; - const entry = new InternalPerformanceEntry( - statistics.type, - 'http', - startTime, - now() - startTime, - undefined, - ); - enqueue(entry); -} - module.exports = { kOutHeaders: Symbol('kOutHeaders'), kNeedDrain: Symbol('kNeedDrain'), utcDate, - emitStatistics, }; diff --git a/test/parallel/test-http-perf_hooks.js b/test/parallel/test-http-perf_hooks.js index 0708a1e8c06f5a..de6ed0295a1152 100644 --- a/test/parallel/test-http-perf_hooks.js +++ b/test/parallel/test-http-perf_hooks.js @@ -66,6 +66,12 @@ process.on('exit', () => { } else if (entry.name === 'HttpRequest') { numberOfHttpRequests++; } + assert.strictEqual(typeof entry.detail.req.method, 'string'); + assert.strictEqual(typeof entry.detail.req.url, 'string'); + assert.strictEqual(typeof entry.detail.req.headers, 'object'); + assert.strictEqual(typeof entry.detail.res.statusCode, 'number'); + assert.strictEqual(typeof entry.detail.res.statusMessage, 'string'); + assert.strictEqual(typeof entry.detail.res.headers, 'object'); }); assert.strictEqual(numberOfHttpClients, 2); assert.strictEqual(numberOfHttpRequests, 2); From f8bdc53e4f10f10e3072022e33f1c6a08ca72e9a Mon Sep 17 00:00:00 2001 From: supriyo-biswas Date: Sat, 25 Jun 2022 18:17:27 +0530 Subject: [PATCH 066/175] net: prevent /32 ipv4 mask from matching all ips Fixes: https://github.com/nodejs/node/issues/43360 PR-URL: https://github.com/nodejs/node/pull/43381 Reviewed-By: Matteo Collina Reviewed-By: Luigi Pinca --- src/node_sockaddr.cc | 4 ++-- test/parallel/test-blocklist.js | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/node_sockaddr.cc b/src/node_sockaddr.cc index f6afaaac4f3d66..d29414302b7d28 100644 --- a/src/node_sockaddr.cc +++ b/src/node_sockaddr.cc @@ -215,7 +215,7 @@ bool in_network_ipv4( const SocketAddress& ip, const SocketAddress& net, int prefix) { - uint32_t mask = ((1 << prefix) - 1) << (32 - prefix); + uint32_t mask = ((1ull << prefix) - 1) << (32 - prefix); const sockaddr_in* ip_in = reinterpret_cast(ip.data()); @@ -293,7 +293,7 @@ bool in_network_ipv6_ipv4( if (prefix == 32) return compare_ipv4_ipv6(net, ip) == SocketAddress::CompareResult::SAME; - uint32_t m = ((1 << prefix) - 1) << (32 - prefix); + uint32_t m = ((1ull << prefix) - 1) << (32 - prefix); const sockaddr_in6* ip_in = reinterpret_cast(ip.data()); diff --git a/test/parallel/test-blocklist.js b/test/parallel/test-blocklist.js index 51f19e07bc649c..ddd9a4e4957279 100644 --- a/test/parallel/test-blocklist.js +++ b/test/parallel/test-blocklist.js @@ -272,3 +272,13 @@ const util = require('util'); const ret = util.inspect(blockList, { depth: null }); assert(ret.includes('rules: []')); } + +{ + // Test for https://github.com/nodejs/node/issues/43360 + const blocklist = new BlockList(); + blocklist.addSubnet('1.1.1.1', 32, 'ipv4'); + + assert(blocklist.check('1.1.1.1')); + assert(!blocklist.check('1.1.1.2')); + assert(!blocklist.check('2.3.4.5')); +} From ba9b2f021fa46bba16d04e1f4f0aba08cb4fd6b3 Mon Sep 17 00:00:00 2001 From: snek Date: Sat, 25 Jun 2022 11:01:55 -0700 Subject: [PATCH 067/175] wasi: use WasmMemoryObject handle for perf (#43544) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: #43544 Reviewed-By: Tobias Nießen Reviewed-By: Colin Ihrig Reviewed-By: Anna Henningsen --- lib/wasi.js | 16 ------ src/node_wasi.cc | 30 +++++------ src/node_wasi.h | 2 +- test/wasi/test-wasi-initialize-validation.js | 53 +++----------------- test/wasi/test-wasi-start-validation.js | 50 ++---------------- 5 files changed, 22 insertions(+), 129 deletions(-) diff --git a/lib/wasi.js b/lib/wasi.js index 7093953a00739a..2a0770bf6dbbb0 100644 --- a/lib/wasi.js +++ b/lib/wasi.js @@ -10,14 +10,12 @@ const { } = primordials; const { - ERR_INVALID_ARG_TYPE, ERR_WASI_ALREADY_STARTED } = require('internal/errors').codes; const { emitExperimentalWarning, kEmptyObject, } = require('internal/util'); -const { isArrayBuffer } = require('internal/util/types'); const { validateArray, validateBoolean, @@ -39,20 +37,6 @@ function setupInstance(self, instance) { validateObject(instance, 'instance'); validateObject(instance.exports, 'instance.exports'); - // WASI::_SetMemory() in src/node_wasi.cc only expects that |memory| is - // an object. It will try to look up the .buffer property when needed - // and fail with UVWASI_EINVAL when the property is missing or is not - // an ArrayBuffer. Long story short, we don't need much validation here - // but we type-check anyway because it helps catch bugs in the user's - // code early. - validateObject(instance.exports.memory, 'instance.exports.memory'); - if (!isArrayBuffer(instance.exports.memory.buffer)) { - throw new ERR_INVALID_ARG_TYPE( - 'instance.exports.memory.buffer', - ['WebAssembly.Memory'], - instance.exports.memory.buffer); - } - self[kInstance] = instance; self[kSetMemory](instance.exports.memory); } diff --git a/src/node_wasi.cc b/src/node_wasi.cc index 803edf0c91dda1..965a619c8d4acd 100644 --- a/src/node_wasi.cc +++ b/src/node_wasi.cc @@ -72,9 +72,7 @@ inline void Debug(WASI* wasi, Args&&... args) { } \ } while (0) - using v8::Array; -using v8::ArrayBuffer; using v8::BackingStore; using v8::BigInt; using v8::Context; @@ -89,7 +87,7 @@ using v8::Object; using v8::String; using v8::Uint32; using v8::Value; - +using v8::WasmMemoryObject; static MaybeLocal WASIException(Local context, int errorno, @@ -1642,26 +1640,22 @@ void WASI::SockShutdown(const FunctionCallbackInfo& args) { void WASI::_SetMemory(const FunctionCallbackInfo& args) { WASI* wasi; - CHECK_EQ(args.Length(), 1); - CHECK(args[0]->IsObject()); ASSIGN_OR_RETURN_UNWRAP(&wasi, args.This()); - wasi->memory_.Reset(wasi->env()->isolate(), args[0].As()); + CHECK_EQ(args.Length(), 1); + if (!args[0]->IsWasmMemoryObject()) { + return node::THROW_ERR_INVALID_ARG_TYPE( + wasi->env(), + "\"instance.exports.memory\" property must be a WebAssembly.Memory " + "object"); + } + wasi->memory_.Reset(wasi->env()->isolate(), args[0].As()); } uvwasi_errno_t WASI::backingStore(char** store, size_t* byte_length) { - Environment* env = this->env(); - Local memory = PersistentToLocal::Strong(this->memory_); - Local prop; - - if (!memory->Get(env->context(), env->buffer_string()).ToLocal(&prop)) - return UVWASI_EINVAL; - - if (!prop->IsArrayBuffer()) - return UVWASI_EINVAL; - - Local ab = prop.As(); - std::shared_ptr backing_store = ab->GetBackingStore(); + Local memory = PersistentToLocal::Strong(this->memory_); + std::shared_ptr backing_store = + memory->Buffer()->GetBackingStore(); *byte_length = backing_store->ByteLength(); *store = static_cast(backing_store->Data()); CHECK_NOT_NULL(*store); diff --git a/src/node_wasi.h b/src/node_wasi.h index 7a0be60aa645a7..b3814ddc31033a 100644 --- a/src/node_wasi.h +++ b/src/node_wasi.h @@ -94,7 +94,7 @@ class WASI : public BaseObject, inline void writeUInt64(char* memory, uint64_t value, uint32_t offset); uvwasi_errno_t backingStore(char** store, size_t* byte_length); uvwasi_t uvw_; - v8::Global memory_; + v8::Global memory_; uvwasi_mem_t alloc_info_; size_t current_uvwasi_memory_ = 0; }; diff --git a/test/wasi/test-wasi-initialize-validation.js b/test/wasi/test-wasi-initialize-validation.js index 40dfd864d1874e..6506e1ac4a79e3 100644 --- a/test/wasi/test-wasi-initialize-validation.js +++ b/test/wasi/test-wasi-initialize-validation.js @@ -47,7 +47,10 @@ const bufferSource = fixtures.readSync('simple.wasm'); Object.defineProperty(instance, 'exports', { get() { - return { _initialize: 5, memory: new Uint8Array() }; + return { + _initialize: 5, + memory: new WebAssembly.Memory({ initial: 1 }), + }; }, }); assert.throws( @@ -70,7 +73,7 @@ const bufferSource = fixtures.readSync('simple.wasm'); return { _start() {}, _initialize() {}, - memory: new Uint8Array(), + memory: new WebAssembly.Memory({ initial: 1 }), }; } }); @@ -97,55 +100,11 @@ const bufferSource = fixtures.readSync('simple.wasm'); () => { wasi.initialize(instance); }, { code: 'ERR_INVALID_ARG_TYPE', - message: /"instance\.exports\.memory" property must be of type object/ + message: /"instance\.exports\.memory" property must be a WebAssembly\.Memory object/ } ); } - { - // Verify that a non-ArrayBuffer memory.buffer is rejected. - const wasi = new WASI({}); - const wasm = await WebAssembly.compile(bufferSource); - const instance = await WebAssembly.instantiate(wasm); - - Object.defineProperty(instance, 'exports', { - get() { - return { - _initialize() {}, - memory: {}, - }; - } - }); - // The error message is a little white lie because any object - // with a .buffer property of type ArrayBuffer is accepted, - // but 99% of the time a WebAssembly.Memory object is used. - assert.throws( - () => { wasi.initialize(instance); }, - { - code: 'ERR_INVALID_ARG_TYPE', - message: /"instance\.exports\.memory\.buffer" property must be an WebAssembly\.Memory/ - } - ); - } - - { - // Verify that an argument that duck-types as a WebAssembly.Instance - // is accepted. - const wasi = new WASI({}); - const wasm = await WebAssembly.compile(bufferSource); - const instance = await WebAssembly.instantiate(wasm); - - Object.defineProperty(instance, 'exports', { - get() { - return { - _initialize() {}, - memory: { buffer: new ArrayBuffer(0) }, - }; - } - }); - wasi.initialize(instance); - } - { // Verify that a WebAssembly.Instance from another VM context is accepted. const wasi = new WASI({}); diff --git a/test/wasi/test-wasi-start-validation.js b/test/wasi/test-wasi-start-validation.js index 2059ff081e88dd..016479f412f678 100644 --- a/test/wasi/test-wasi-start-validation.js +++ b/test/wasi/test-wasi-start-validation.js @@ -47,7 +47,7 @@ const bufferSource = fixtures.readSync('simple.wasm'); Object.defineProperty(instance, 'exports', { get() { - return { memory: new Uint8Array() }; + return { memory: new WebAssembly.Memory({ initial: 1 }) }; }, }); assert.throws( @@ -70,7 +70,7 @@ const bufferSource = fixtures.readSync('simple.wasm'); return { _start() {}, _initialize() {}, - memory: new Uint8Array(), + memory: new WebAssembly.Memory({ initial: 1 }), }; } }); @@ -97,55 +97,11 @@ const bufferSource = fixtures.readSync('simple.wasm'); () => { wasi.start(instance); }, { code: 'ERR_INVALID_ARG_TYPE', - message: /"instance\.exports\.memory" property must be of type object/ + message: /"instance\.exports\.memory" property must be a WebAssembly\.Memory object/ } ); } - { - // Verify that a non-ArrayBuffer memory.buffer is rejected. - const wasi = new WASI({}); - const wasm = await WebAssembly.compile(bufferSource); - const instance = await WebAssembly.instantiate(wasm); - - Object.defineProperty(instance, 'exports', { - get() { - return { - _start() {}, - memory: {}, - }; - } - }); - // The error message is a little white lie because any object - // with a .buffer property of type ArrayBuffer is accepted, - // but 99% of the time a WebAssembly.Memory object is used. - assert.throws( - () => { wasi.start(instance); }, - { - code: 'ERR_INVALID_ARG_TYPE', - message: /"instance\.exports\.memory\.buffer" property must be an WebAssembly\.Memory/ - } - ); - } - - { - // Verify that an argument that duck-types as a WebAssembly.Instance - // is accepted. - const wasi = new WASI({}); - const wasm = await WebAssembly.compile(bufferSource); - const instance = await WebAssembly.instantiate(wasm); - - Object.defineProperty(instance, 'exports', { - get() { - return { - _start() {}, - memory: { buffer: new ArrayBuffer(0) }, - }; - } - }); - wasi.start(instance); - } - { // Verify that a WebAssembly.Instance from another VM context is accepted. const wasi = new WASI({}); From d3fc791c3de91500af6105e4e2b454a6bd3f45db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 25 Jun 2022 23:40:14 +0200 Subject: [PATCH 068/175] src: improve and update ByteSource description Clarify that external data must not be destroyed before the ByteSource that points to it, and that allocated data must have been allocated using OpenSSL's allocator (because it will be freed automatically, using OpenSSL's memory management functions). Also add a brief description of the new ByteSource::Builder class. PR-URL: https://github.com/nodejs/node/pull/43478 Reviewed-By: Darshan Sen --- src/crypto/README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/crypto/README.md b/src/crypto/README.md index 22d4954b464ff0..58ba74c891398d 100644 --- a/src/crypto/README.md +++ b/src/crypto/README.md @@ -100,9 +100,16 @@ Examples of these being used are pervasive through the `src/crypto` code. The `ByteSource` class is a helper utility representing a _read-only_ byte array. Instances can either wrap external ("foreign") data sources, such as -an `ArrayBuffer` (`v8::BackingStore`) or allocated data. If allocated data -is used, then the allocation is freed automatically when the `ByteSource` is -destroyed. +an `ArrayBuffer` (`v8::BackingStore`), or allocated data. + +* If a pointer to external data is used to create a `ByteSource`, that pointer + must remain valid until the `ByteSource` is destroyed. +* If allocated data is used, then it must have been allocated using OpenSSL's + allocator. It will be freed automatically when the `ByteSource` is destroyed. + +The `ByteSource::Builder` class can be used to allocate writable memory that can +then be released as a `ByteSource`, making it read-only, or freed by destroying +the `ByteSource::Builder` without releasing it as a `ByteSource`. ### `ArrayBufferOrViewContents` From a43928ae784e134f60007d697194a148078c312e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 25 Jun 2022 23:40:26 +0200 Subject: [PATCH 069/175] crypto: use ByteSource::Builder in To*Copy Avoid manual calls to MallocOpenSSL in ArrayBufferOrViewContents and use the new ByteSource::Builder instead. Refs: https://github.com/nodejs/node/pull/43202 PR-URL: https://github.com/nodejs/node/pull/43477 Reviewed-By: Darshan Sen --- src/crypto/crypto_util.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/crypto/crypto_util.h b/src/crypto/crypto_util.h index c0b10583ce0978..9e33b3777b00d7 100644 --- a/src/crypto/crypto_util.h +++ b/src/crypto/crypto_util.h @@ -747,19 +747,17 @@ class ArrayBufferOrViewContents { inline ByteSource ToCopy() const { if (size() == 0) return ByteSource(); - char* buf = MallocOpenSSL(size()); - CHECK_NOT_NULL(buf); - memcpy(buf, data(), size()); - return ByteSource::Allocated(buf, size()); + ByteSource::Builder buf(size()); + memcpy(buf.data(), data(), size()); + return std::move(buf).release(); } inline ByteSource ToNullTerminatedCopy() const { if (size() == 0) return ByteSource(); - char* buf = MallocOpenSSL(size() + 1); - CHECK_NOT_NULL(buf); - buf[size()] = 0; - memcpy(buf, data(), size()); - return ByteSource::Allocated(buf, size()); + ByteSource::Builder buf(size() + 1); + memcpy(buf.data(), data(), size()); + buf.data()[size()] = 0; + return std::move(buf).release(size()); } template From d650c9c6b0fcf81a7d02efaf71701f630d67540a Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Sun, 26 Jun 2022 20:17:29 +0200 Subject: [PATCH 070/175] meta: update AUTHORS PR-URL: https://github.com/nodejs/node/pull/43573 Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Darshan Sen --- .mailmap | 1 + AUTHORS | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index d2bd47a4e851df..e29d5b74b78249 100644 --- a/.mailmap +++ b/.mailmap @@ -490,6 +490,7 @@ Tarun Batra Taylor Woll Ted Young Teppei Sato +theanarkh <2923878201@qq.com> Theotime Poisseau Thomas Hunter II Thomas Lee diff --git a/AUTHORS b/AUTHORS index 6bb303118e6476..a294c2347ab7ed 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3441,7 +3441,7 @@ Damjan Cvetko Randall Leeds Khoo Hao Yit <40757009+KhooHaoYit@users.noreply.github.com> Aroyan <43630681+aroyan@users.noreply.github.com> -theanarkh <2923878201@qq.com> +theanarkh Vladimir Morozov Anupama Codippily <47591753+AnupamaCodippily@users.noreply.github.com> Greg Poole @@ -3468,5 +3468,9 @@ Eugene Chapko Sergey Petushkov Caleb Everett JialuZhang-intel +Moshe Atlow +rubikscraft +James Scott-Brown +supriyo-biswas # Generated by tools/update-authors.mjs From 4df96b501dda6fe034ab9937f88ec0fbae938505 Mon Sep 17 00:00:00 2001 From: Adam Majer Date: Mon, 27 Jun 2022 10:47:13 +0200 Subject: [PATCH 071/175] crypto: don't disable TLS 1.3 without suites In the manual page, there is a statement that ciphersuites contain explicit default settings - all TLS 1.3 ciphersuites enabled. In node, we assume that an empty setting mean no ciphersuites and we disable TLS 1.3. A correct approach to disabling TLS 1.3 is to disable TLS 1.3 and by not override the default ciphersuits with an empty string. So, only override OpenSSL's TLS 1.3 ciphersuites with an explicit list of ciphers. If none are acceptable, the correct approach is to disable TLS 1.3 instead elsewhere. Fixes: https://github.com/nodejs/node/issues/43419 PR-URL: https://github.com/nodejs/node/pull/43427 Reviewed-By: Matteo Collina Reviewed-By: Paolo Insogna Reviewed-By: James M Snell --- benchmark/tls/secure-pair.js | 2 ++ benchmark/tls/throughput-c2s.js | 3 ++- benchmark/tls/throughput-s2c.js | 3 ++- benchmark/tls/tls-connect.js | 3 ++- lib/internal/tls/secure-context.js | 9 ++------ .../test-tls-client-getephemeralkeyinfo.js | 3 ++- test/parallel/test-tls-client-mindhsize.js | 3 ++- test/parallel/test-tls-dhe.js | 3 ++- test/parallel/test-tls-ecdh-auto.js | 3 ++- test/parallel/test-tls-ecdh-multiple.js | 3 ++- test/parallel/test-tls-ecdh.js | 3 ++- test/parallel/test-tls-getcipher.js | 6 ++++-- test/parallel/test-tls-multi-key.js | 6 ++++-- test/parallel/test-tls-multi-pfx.js | 6 ++++-- test/parallel/test-tls-set-ciphers.js | 21 ++++++++++++++++++- 15 files changed, 54 insertions(+), 23 deletions(-) diff --git a/benchmark/tls/secure-pair.js b/benchmark/tls/secure-pair.js index 76658fc3c42ad7..08be1f7e46f8ba 100644 --- a/benchmark/tls/secure-pair.js +++ b/benchmark/tls/secure-pair.js @@ -25,6 +25,7 @@ function main({ dur, size, securing }) { isServer: true, requestCert: true, rejectUnauthorized: true, + maxVersion: 'TLSv1.2', }; const server = net.createServer(onRedirectConnection); @@ -38,6 +39,7 @@ function main({ dur, size, securing }) { cert: options.cert, isServer: false, rejectUnauthorized: false, + maxVersion: options.maxVersion, }; const network = securing === 'clear' ? net : tls; const conn = network.connect(clientOptions, () => { diff --git a/benchmark/tls/throughput-c2s.js b/benchmark/tls/throughput-c2s.js index f3a96abcbc0174..023b42cbeda685 100644 --- a/benchmark/tls/throughput-c2s.js +++ b/benchmark/tls/throughput-c2s.js @@ -33,7 +33,8 @@ function main({ dur, type, size }) { key: fixtures.readKey('rsa_private.pem'), cert: fixtures.readKey('rsa_cert.crt'), ca: fixtures.readKey('rsa_ca.crt'), - ciphers: 'AES256-GCM-SHA384' + ciphers: 'AES256-GCM-SHA384', + maxVersion: 'TLSv1.2', }; const server = tls.createServer(options, onConnection); diff --git a/benchmark/tls/throughput-s2c.js b/benchmark/tls/throughput-s2c.js index a505a719d30884..d3018cf851db75 100644 --- a/benchmark/tls/throughput-s2c.js +++ b/benchmark/tls/throughput-s2c.js @@ -40,7 +40,8 @@ function main({ dur, type, sendchunklen, recvbuflen, recvbufgenfn }) { key: fixtures.readKey('rsa_private.pem'), cert: fixtures.readKey('rsa_cert.crt'), ca: fixtures.readKey('rsa_ca.crt'), - ciphers: 'AES256-GCM-SHA384' + ciphers: 'AES256-GCM-SHA384', + maxVersion: 'TLSv1.2', }; let socketOpts; diff --git a/benchmark/tls/tls-connect.js b/benchmark/tls/tls-connect.js index 3fc2ecb614978b..db50306485aec3 100644 --- a/benchmark/tls/tls-connect.js +++ b/benchmark/tls/tls-connect.js @@ -21,7 +21,8 @@ function main(conf) { key: fixtures.readKey('rsa_private.pem'), cert: fixtures.readKey('rsa_cert.crt'), ca: fixtures.readKey('rsa_ca.crt'), - ciphers: 'AES256-GCM-SHA384' + ciphers: 'AES256-GCM-SHA384', + maxVersion: 'TLSv1.2', }; const server = tls.createServer(options, onConnection); diff --git a/lib/internal/tls/secure-context.js b/lib/internal/tls/secure-context.js index 152627b420a612..a9bf4a1da71eca 100644 --- a/lib/internal/tls/secure-context.js +++ b/lib/internal/tls/secure-context.js @@ -225,15 +225,10 @@ function configSecureContext(context, options = kEmptyObject, name = 'options') cipherSuites, } = processCiphers(ciphers, `${name}.ciphers`); - context.setCipherSuites(cipherSuites); + if (cipherSuites !== '') + context.setCipherSuites(cipherSuites); context.setCiphers(cipherList); - if (cipherSuites === '' && - context.getMaxProto() > TLS1_2_VERSION && - context.getMinProto() < TLS1_3_VERSION) { - context.setMaxProto(TLS1_2_VERSION); - } - if (cipherList === '' && context.getMinProto() < TLS1_3_VERSION && context.getMaxProto() > TLS1_2_VERSION) { diff --git a/test/parallel/test-tls-client-getephemeralkeyinfo.js b/test/parallel/test-tls-client-getephemeralkeyinfo.js index 82f41cfe7e06bd..8abb319b828868 100644 --- a/test/parallel/test-tls-client-getephemeralkeyinfo.js +++ b/test/parallel/test-tls-client-getephemeralkeyinfo.js @@ -23,7 +23,8 @@ function test(size, type, name, cipher) { const options = { key: key, cert: cert, - ciphers: cipher + ciphers: cipher, + maxVersion: 'TLSv1.2', }; if (name) options.ecdhCurve = name; diff --git a/test/parallel/test-tls-client-mindhsize.js b/test/parallel/test-tls-client-mindhsize.js index 1ccf49fa9292eb..92ac995936825d 100644 --- a/test/parallel/test-tls-client-mindhsize.js +++ b/test/parallel/test-tls-client-mindhsize.js @@ -41,7 +41,8 @@ function test(size, err, next) { const client = tls.connect({ minDHSize: 2048, port: this.address().port, - rejectUnauthorized: false + rejectUnauthorized: false, + maxVersion: 'TLSv1.2', }, function() { nsuccess++; server.close(); diff --git a/test/parallel/test-tls-dhe.js b/test/parallel/test-tls-dhe.js index ef645ce1b6c624..0d531a3d6f0179 100644 --- a/test/parallel/test-tls-dhe.js +++ b/test/parallel/test-tls-dhe.js @@ -53,7 +53,8 @@ function test(keylen, expectedCipher, cb) { key: key, cert: cert, ciphers: ciphers, - dhparam: loadDHParam(keylen) + dhparam: loadDHParam(keylen), + maxVersion: 'TLSv1.2', }; const server = tls.createServer(options, function(conn) { diff --git a/test/parallel/test-tls-ecdh-auto.js b/test/parallel/test-tls-ecdh-auto.js index 7b535ecd3a18f0..1ca5c22335c850 100644 --- a/test/parallel/test-tls-ecdh-auto.js +++ b/test/parallel/test-tls-ecdh-auto.js @@ -23,7 +23,8 @@ const options = { key: loadPEM('agent2-key'), cert: loadPEM('agent2-cert'), ciphers: '-ALL:ECDHE-RSA-AES128-SHA256', - ecdhCurve: 'auto' + ecdhCurve: 'auto', + maxVersion: 'TLSv1.2', }; const reply = 'I AM THE WALRUS'; // Something recognizable diff --git a/test/parallel/test-tls-ecdh-multiple.js b/test/parallel/test-tls-ecdh-multiple.js index 25e6314a54a58d..3cf02701f4dc19 100644 --- a/test/parallel/test-tls-ecdh-multiple.js +++ b/test/parallel/test-tls-ecdh-multiple.js @@ -23,7 +23,8 @@ const options = { key: loadPEM('agent2-key'), cert: loadPEM('agent2-cert'), ciphers: '-ALL:ECDHE-RSA-AES128-SHA256', - ecdhCurve: 'secp256k1:prime256v1:secp521r1' + ecdhCurve: 'secp256k1:prime256v1:secp521r1', + maxVersion: 'TLSv1.2', }; const reply = 'I AM THE WALRUS'; // Something recognizable diff --git a/test/parallel/test-tls-ecdh.js b/test/parallel/test-tls-ecdh.js index c0d2625a9a6168..8c879f850c9b8d 100644 --- a/test/parallel/test-tls-ecdh.js +++ b/test/parallel/test-tls-ecdh.js @@ -38,7 +38,8 @@ const options = { key: fixtures.readKey('agent2-key.pem'), cert: fixtures.readKey('agent2-cert.pem'), ciphers: '-ALL:ECDHE-RSA-AES128-SHA256', - ecdhCurve: 'prime256v1' + ecdhCurve: 'prime256v1', + maxVersion: 'TLSv1.2' }; const reply = 'I AM THE WALRUS'; // Something recognizable diff --git a/test/parallel/test-tls-getcipher.js b/test/parallel/test-tls-getcipher.js index 744276aa59bf37..2a234d59016c1c 100644 --- a/test/parallel/test-tls-getcipher.js +++ b/test/parallel/test-tls-getcipher.js @@ -48,7 +48,8 @@ server.listen(0, '127.0.0.1', common.mustCall(function() { host: '127.0.0.1', port: this.address().port, ciphers: 'AES128-SHA256', - rejectUnauthorized: false + rejectUnauthorized: false, + maxVersion: 'TLSv1.2', }, common.mustCall(function() { const cipher = this.getCipher(); assert.strictEqual(cipher.name, 'AES128-SHA256'); @@ -62,7 +63,8 @@ server.listen(0, '127.0.0.1', common.mustCall(function() { host: '127.0.0.1', port: this.address().port, ciphers: 'ECDHE-RSA-AES128-GCM-SHA256', - rejectUnauthorized: false + rejectUnauthorized: false, + maxVersion: 'TLSv1.2', }, common.mustCall(function() { const cipher = this.getCipher(); assert.strictEqual(cipher.name, 'ECDHE-RSA-AES128-GCM-SHA256'); diff --git a/test/parallel/test-tls-multi-key.js b/test/parallel/test-tls-multi-key.js index b9eaa05d59feb6..22a80d9d377727 100644 --- a/test/parallel/test-tls-multi-key.js +++ b/test/parallel/test-tls-multi-key.js @@ -154,11 +154,12 @@ function test(options) { rejectUnauthorized: true, ca: clientTrustRoots, checkServerIdentity: (_, c) => assert.strictEqual(c.subject.CN, eccCN), + maxVersion: 'TLSv1.2' }, common.mustCall(function() { assert.deepStrictEqual(ecdsa.getCipher(), { name: 'ECDHE-ECDSA-AES256-GCM-SHA384', standardName: 'TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384', - version: 'TLSv1.2' + version: 'TLSv1.2', }); assert.strictEqual(ecdsa.getPeerCertificate().subject.CN, eccCN); assert.strictEqual(ecdsa.getPeerCertificate().asn1Curve, 'prime256v1'); @@ -173,11 +174,12 @@ function test(options) { rejectUnauthorized: true, ca: clientTrustRoots, checkServerIdentity: (_, c) => assert.strictEqual(c.subject.CN, rsaCN), + maxVersion: 'TLSv1.2', }, common.mustCall(function() { assert.deepStrictEqual(rsa.getCipher(), { name: 'ECDHE-RSA-AES256-GCM-SHA384', standardName: 'TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384', - version: 'TLSv1.2' + version: 'TLSv1.2', }); assert.strictEqual(rsa.getPeerCertificate().subject.CN, rsaCN); assert(rsa.getPeerCertificate().exponent, 'cert for an RSA key'); diff --git a/test/parallel/test-tls-multi-pfx.js b/test/parallel/test-tls-multi-pfx.js index f353183ce2fa0c..80bd0d37281f13 100644 --- a/test/parallel/test-tls-multi-pfx.js +++ b/test/parallel/test-tls-multi-pfx.js @@ -24,12 +24,14 @@ const server = tls.createServer(options, function(conn) { }).listen(0, function() { const ecdsa = tls.connect(this.address().port, { ciphers: 'ECDHE-ECDSA-AES256-GCM-SHA384', - rejectUnauthorized: false + maxVersion: 'TLSv1.2', + rejectUnauthorized: false, }, common.mustCall(function() { ciphers.push(ecdsa.getCipher()); const rsa = tls.connect(server.address().port, { ciphers: 'ECDHE-RSA-AES256-GCM-SHA384', - rejectUnauthorized: false + maxVersion: 'TLSv1.2', + rejectUnauthorized: false, }, common.mustCall(function() { ciphers.push(rsa.getCipher()); ecdsa.end(); diff --git a/test/parallel/test-tls-set-ciphers.js b/test/parallel/test-tls-set-ciphers.js index f08af9b089adb9..c2d9740201d74a 100644 --- a/test/parallel/test-tls-set-ciphers.js +++ b/test/parallel/test-tls-set-ciphers.js @@ -13,19 +13,31 @@ const { } = require(fixtures.path('tls-connect')); -function test(cciphers, sciphers, cipher, cerr, serr) { +function test(cciphers, sciphers, cipher, cerr, serr, options) { assert(cipher || cerr || serr, 'test missing any expectations'); const where = inspect(new Error()).split('\n')[2].replace(/[^(]*/, ''); + + const max_tls_ver = (ciphers, options) => { + if (options instanceof Object && Object.hasOwn(options, 'maxVersion')) + return options.maxVersion; + if ((typeof ciphers === 'string' || ciphers instanceof String) && ciphers.length > 0 && !ciphers.includes('TLS_')) + return 'TLSv1.2'; + + return 'TLSv1.3'; + }; + connect({ client: { checkServerIdentity: (servername, cert) => { }, ca: `${keys.agent1.cert}\n${keys.agent6.ca}`, ciphers: cciphers, + maxVersion: max_tls_ver(cciphers, options), }, server: { cert: keys.agent6.cert, key: keys.agent6.key, ciphers: sciphers, + maxVersion: max_tls_ver(sciphers, options), }, }, common.mustCall((err, pair, cleanup) => { function u(_) { return _ === undefined ? 'U' : _; } @@ -87,6 +99,13 @@ test('AES128-SHA:TLS_AES_256_GCM_SHA384', test('AES256-SHA:TLS_AES_256_GCM_SHA384', U, 'TLS_AES_256_GCM_SHA384'); test(U, 'AES256-SHA:TLS_AES_256_GCM_SHA384', 'TLS_AES_256_GCM_SHA384'); +// Cipher order ignored, TLS1.3 before TLS1.2 and +// cipher suites are not disabled if TLS ciphers are set only +// TODO: maybe these tests should be reworked so maxVersion clamping +// is done explicitly and not implicitly in the test() function +test('AES256-SHA', U, 'TLS_AES_256_GCM_SHA384', U, U, { maxVersion: 'TLSv1.3' }); +test(U, 'AES256-SHA', 'TLS_AES_256_GCM_SHA384', U, U, { maxVersion: 'TLSv1.3' }); + // TLS_AES_128_CCM_8_SHA256 & TLS_AES_128_CCM_SHA256 are not enabled by // default, but work. test('TLS_AES_128_CCM_8_SHA256', U, From f9c30abcdce7530987c159396286847f20e3d4ef Mon Sep 17 00:00:00 2001 From: Paolo Insogna Date: Fri, 24 Jun 2022 11:30:30 +0200 Subject: [PATCH 072/175] benchmark: forcefully close processes PR-URL: https://github.com/nodejs/node/pull/43557 Fixes: https://github.com/nodejs/build/issues/2968 Reviewed-By: Ruben Bridgewater Reviewed-By: Rod Vagg Reviewed-By: Matteo Collina --- benchmark/common.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/benchmark/common.js b/benchmark/common.js index 88cb8a560f40e1..080cfc71785eec 100644 --- a/benchmark/common.js +++ b/benchmark/common.js @@ -289,7 +289,13 @@ function formatResult(data) { function sendResult(data) { if (process.send) { // If forked, report by process send - process.send(data); + process.send(data, () => { + // If, for any reason, the process is unable to self close within + // a second after completing, forcefully close it. + setTimeout(() => { + process.exit(0); + }, 5000).unref(); + }); } else { // Otherwise report by stdout process.stdout.write(formatResult(data)); From deaf4bb5cdf1cf7ff64c805f5ef0463ae6183665 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 27 Jun 2022 17:15:16 +0200 Subject: [PATCH 073/175] lib: fix TODO in `freeze_intrinsics` PR-URL: https://github.com/nodejs/node/pull/43472 Reviewed-By: Guy Bedford --- lib/internal/freeze_intrinsics.js | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/lib/internal/freeze_intrinsics.js b/lib/internal/freeze_intrinsics.js index cb1d28f4b0feb4..508b071c7c0f88 100644 --- a/lib/internal/freeze_intrinsics.js +++ b/lib/internal/freeze_intrinsics.js @@ -428,16 +428,8 @@ module.exports = function() { const descs = ObjectGetOwnPropertyDescriptors(obj); enqueue(proto); ArrayPrototypeForEach(ReflectOwnKeys(descs), (name) => { - // TODO: Uncurried form - // TODO: getOwnPropertyDescriptors is guaranteed to return well-formed - // descriptors, but they still inherit from Object.prototype. If - // someone has poisoned Object.prototype to add 'value' or 'get' - // properties, then a simple 'if ("value" in desc)' or 'desc.value' - // test could be confused. We use hasOwnProperty to be sure about - // whether 'value' is present or not, which tells us for sure that - // this is a data property. const desc = descs[name]; - if ('value' in desc) { + if (ObjectPrototypeHasOwnProperty(desc, 'value')) { // todo uncurried form enqueue(desc.value); } else { @@ -489,7 +481,7 @@ module.exports = function() { * objects succeed if otherwise possible. */ function enableDerivedOverride(obj, prop, desc) { - if ('value' in desc && desc.configurable) { + if (ObjectPrototypeHasOwnProperty(desc, 'value') && desc.configurable) { const value = desc.value; function getter() { From b9198d977f0247e8da60f90114cc4e772db96c5c Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 27 Jun 2022 17:16:06 +0200 Subject: [PATCH 074/175] lib: refactor to avoid unsafe regex primordials PR-URL: https://github.com/nodejs/node/pull/43475 Reviewed-By: Geoffrey Booth Reviewed-By: Stephen Belanger --- lib/_http_client.js | 4 +- lib/_http_common.js | 6 +- lib/_http_outgoing.js | 6 +- lib/_http_server.js | 8 +- lib/_tls_wrap.js | 17 ++-- lib/assert.js | 15 ++-- lib/buffer.js | 6 +- lib/child_process.js | 4 +- lib/internal/blob.js | 6 +- lib/internal/cluster/primary.js | 6 +- lib/internal/console/constructor.js | 4 +- lib/internal/debugger/inspect.js | 11 ++- lib/internal/debugger/inspect_repl.js | 8 +- lib/internal/dns/utils.js | 10 +-- lib/internal/errors.js | 10 +-- lib/internal/fs/utils.js | 4 +- lib/internal/http2/core.js | 4 +- lib/internal/main/print_help.js | 13 +-- lib/internal/modules/cjs/loader.js | 10 +-- lib/internal/modules/esm/formats.js | 6 +- lib/internal/modules/esm/module_job.js | 21 +++-- lib/internal/modules/esm/resolve.js | 7 +- lib/internal/policy/manifest.js | 17 ++-- lib/internal/policy/sri.js | 3 +- lib/internal/process/per_thread.js | 4 +- lib/internal/readline/interface.js | 20 ++--- lib/internal/readline/utils.js | 11 ++- lib/internal/repl/history.js | 4 +- lib/internal/repl/utils.js | 14 ++-- .../source_map/prepare_stack_trace.js | 4 +- lib/internal/source_map/source_map_cache.js | 12 +-- lib/internal/tty.js | 10 +-- lib/internal/util.js | 5 +- lib/internal/util/inspect.js | 26 +++--- lib/internal/validators.js | 4 +- lib/internal/worker.js | 4 +- lib/repl.js | 79 ++++++++++--------- lib/tls.js | 9 +-- test/parallel/test-errors-systemerror.js | 2 +- 39 files changed, 206 insertions(+), 208 deletions(-) diff --git a/lib/_http_client.js b/lib/_http_client.js index a06b3904247d73..d14cdc343b6b29 100644 --- a/lib/_http_client.js +++ b/lib/_http_client.js @@ -31,7 +31,7 @@ const { ObjectKeys, ObjectSetPrototypeOf, ReflectApply, - RegExpPrototypeTest, + RegExpPrototypeExec, String, StringPrototypeCharCodeAt, StringPrototypeIncludes, @@ -165,7 +165,7 @@ function ClientRequest(input, options, cb) { if (options.path) { const path = String(options.path); - if (RegExpPrototypeTest(INVALID_PATH_REGEX, path)) + if (RegExpPrototypeExec(INVALID_PATH_REGEX, path) !== null) throw new ERR_UNESCAPED_CHARACTERS('Request path'); } diff --git a/lib/_http_common.js b/lib/_http_common.js index 4430869520f813..654eadfe67d2e3 100644 --- a/lib/_http_common.js +++ b/lib/_http_common.js @@ -24,7 +24,7 @@ const { MathMin, Symbol, - RegExpPrototypeTest, + RegExpPrototypeExec, } = primordials; const { setImmediate } = require('timers'); @@ -207,7 +207,7 @@ const tokenRegExp = /^[\^_`a-zA-Z\-0-9!#$%&'*+.|~]+$/; * See https://tools.ietf.org/html/rfc7230#section-3.2.6 */ function checkIsHttpToken(val) { - return RegExpPrototypeTest(tokenRegExp, val); + return RegExpPrototypeExec(tokenRegExp, val) !== null; } const headerCharRegex = /[^\t\x20-\x7e\x80-\xff]/; @@ -218,7 +218,7 @@ const headerCharRegex = /[^\t\x20-\x7e\x80-\xff]/; * field-vchar = VCHAR / obs-text */ function checkInvalidHeaderChar(val) { - return RegExpPrototypeTest(headerCharRegex, val); + return RegExpPrototypeExec(headerCharRegex, val) !== null; } function cleanParser(parser) { diff --git a/lib/_http_outgoing.js b/lib/_http_outgoing.js index e02b86e8a84929..006ac437a14938 100644 --- a/lib/_http_outgoing.js +++ b/lib/_http_outgoing.js @@ -33,7 +33,7 @@ const { ObjectValues, ObjectPrototypeHasOwnProperty, ObjectSetPrototypeOf, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeSet, StringPrototypeToLowerCase, Symbol, @@ -542,7 +542,7 @@ function matchHeader(self, state, field, value) { case 'connection': state.connection = true; self._removedConnection = false; - if (RegExpPrototypeTest(RE_CONN_CLOSE, value)) + if (RegExpPrototypeExec(RE_CONN_CLOSE, value) !== null) self._last = true; else self.shouldKeepAlive = true; @@ -550,7 +550,7 @@ function matchHeader(self, state, field, value) { case 'transfer-encoding': state.te = true; self._removedTE = false; - if (RegExpPrototypeTest(RE_TE_CHUNKED, value)) + if (RegExpPrototypeExec(RE_TE_CHUNKED, value) !== null) self.chunkedEncoding = true; break; case 'content-length': diff --git a/lib/_http_server.js b/lib/_http_server.js index 938dd7aad75cee..c312267aa51e2e 100644 --- a/lib/_http_server.js +++ b/lib/_http_server.js @@ -26,7 +26,7 @@ const { Error, ObjectKeys, ObjectSetPrototypeOf, - RegExpPrototypeTest, + RegExpPrototypeExec, ReflectApply, Symbol, SymbolFor, @@ -192,8 +192,8 @@ function ServerResponse(req) { this._expect_continue = false; if (req.httpVersionMajor < 1 || req.httpVersionMinor < 1) { - this.useChunkedEncodingByDefault = RegExpPrototypeTest(chunkExpression, - req.headers.te); + this.useChunkedEncodingByDefault = RegExpPrototypeExec(chunkExpression, + req.headers.te) !== null; this.shouldKeepAlive = false; } @@ -987,7 +987,7 @@ function parserOnIncoming(server, socket, state, req, keepAlive) { } else if (req.headers.expect !== undefined) { handled = true; - if (RegExpPrototypeTest(continueExpression, req.headers.expect)) { + if (RegExpPrototypeExec(continueExpression, req.headers.expect) !== null) { res._expect_continue = true; if (server.listenerCount('checkContinue') > 0) { diff --git a/lib/_tls_wrap.js b/lib/_tls_wrap.js index 55c60c34e0a702..50157e4fcd3e9d 100644 --- a/lib/_tls_wrap.js +++ b/lib/_tls_wrap.js @@ -31,8 +31,9 @@ const { ObjectSetPrototypeOf, ReflectApply, RegExp, - RegExpPrototypeTest, - StringPrototypeReplace, + RegExpPrototypeExec, + RegExpPrototypeSymbolReplace, + StringPrototypeReplaceAll, StringPrototypeSlice, Symbol, SymbolFor, @@ -425,8 +426,8 @@ function onerror(err) { owner.destroy(err); } else if (owner._tlsOptions?.isServer && owner._rejectUnauthorized && - RegExpPrototypeTest(/peer did not return a certificate/, - err.message)) { + RegExpPrototypeExec(/peer did not return a certificate/, + err.message) !== null) { // Ignore server's authorization errors owner.destroy(); } else { @@ -1447,9 +1448,9 @@ Server.prototype.addContext = function(servername, context) { throw new ERR_TLS_REQUIRED_SERVER_NAME(); } - const re = new RegExp('^' + StringPrototypeReplace( - StringPrototypeReplace(servername, /([.^$+?\-\\[\]{}])/g, '\\$1'), - /\*/g, '[^.]*' + const re = new RegExp('^' + StringPrototypeReplaceAll( + RegExpPrototypeSymbolReplace(/([.^$+?\-\\[\]{}])/g, servername, '\\$1'), + '*', '[^.]*' ) + '$'); ArrayPrototypePush(this._contexts, [re, tls.createSecureContext(context).context]); @@ -1473,7 +1474,7 @@ function SNICallback(servername, callback) { for (let i = contexts.length - 1; i >= 0; --i) { const elem = contexts[i]; - if (RegExpPrototypeTest(elem[0], servername)) { + if (RegExpPrototypeExec(elem[0], servername) !== null) { callback(null, elem[1]); return; } diff --git a/lib/assert.js b/lib/assert.js index 2c7cf369a87af2..fc3127f3bf4214 100644 --- a/lib/assert.js +++ b/lib/assert.js @@ -35,7 +35,8 @@ const { ObjectKeys, ObjectPrototypeIsPrototypeOf, ReflectApply, - RegExpPrototypeTest, + RegExpPrototypeExec, + RegExpPrototypeSymbolReplace, SafeMap, String, StringPrototypeCharCodeAt, @@ -345,7 +346,7 @@ function getErrMessage(message, fn) { // Always normalize indentation, otherwise the message could look weird. if (StringPrototypeIncludes(message, '\n')) { if (EOL === '\r\n') { - message = StringPrototypeReplace(message, /\r\n/g, '\n'); + message = RegExpPrototypeSymbolReplace(/\r\n/g, message, '\n'); } const frames = StringPrototypeSplit(message, '\n'); message = ArrayPrototypeShift(frames); @@ -606,7 +607,7 @@ class Comparison { if (actual !== undefined && typeof actual[key] === 'string' && isRegExp(obj[key]) && - RegExpPrototypeTest(obj[key], actual[key])) { + RegExpPrototypeExec(obj[key], actual[key]) !== null) { this[key] = actual[key]; } else { this[key] = obj[key]; @@ -652,7 +653,7 @@ function expectedException(actual, expected, message, fn) { // Handle regular expressions. if (isRegExp(expected)) { const str = String(actual); - if (RegExpPrototypeTest(expected, str)) + if (RegExpPrototypeExec(expected, str) !== null) return; if (!message) { @@ -687,7 +688,7 @@ function expectedException(actual, expected, message, fn) { for (const key of keys) { if (typeof actual[key] === 'string' && isRegExp(expected[key]) && - RegExpPrototypeTest(expected[key], actual[key])) { + RegExpPrototypeExec(expected[key], actual[key]) !== null) { continue; } compareExceptionKey(actual, expected, key, message, keys, fn); @@ -851,7 +852,7 @@ function hasMatchingError(actual, expected) { if (typeof expected !== 'function') { if (isRegExp(expected)) { const str = String(actual); - return RegExpPrototypeTest(expected, str); + return RegExpPrototypeExec(expected, str) !== null; } throw new ERR_INVALID_ARG_TYPE( 'expected', ['Function', 'RegExp'], expected @@ -1000,7 +1001,7 @@ function internalMatch(string, regexp, message, fn) { } const match = fn === assert.match; if (typeof string !== 'string' || - RegExpPrototypeTest(regexp, string) !== match) { + RegExpPrototypeExec(regexp, string) !== null !== match) { if (message instanceof Error) { throw message; } diff --git a/lib/buffer.js b/lib/buffer.js index 109e5c45c724dc..734a9a6feb81ca 100644 --- a/lib/buffer.js +++ b/lib/buffer.js @@ -37,8 +37,8 @@ const { ObjectDefineProperties, ObjectDefineProperty, ObjectSetPrototypeOf, + RegExpPrototypeSymbolReplace, StringPrototypeCharCodeAt, - StringPrototypeReplace, StringPrototypeSlice, StringPrototypeToLowerCase, StringPrototypeTrim, @@ -837,8 +837,8 @@ Buffer.prototype[customInspectSymbol] = function inspect(recurseTimes, ctx) { const max = INSPECT_MAX_BYTES; const actualMax = MathMin(max, this.length); const remaining = this.length - max; - let str = StringPrototypeTrim(StringPrototypeReplace( - this.hexSlice(0, actualMax), /(.{2})/g, '$1 ')); + let str = StringPrototypeTrim(RegExpPrototypeSymbolReplace( + /(.{2})/g, this.hexSlice(0, actualMax), '$1 ')); if (remaining > 0) str += ` ... ${remaining} more byte${remaining > 1 ? 's' : ''}`; // Inspect special properties as well, if possible. diff --git a/lib/child_process.js b/lib/child_process.js index d89e2f66fa0a7b..605bd14660f521 100644 --- a/lib/child_process.js +++ b/lib/child_process.js @@ -36,7 +36,7 @@ const { ObjectAssign, ObjectDefineProperty, ObjectPrototypeHasOwnProperty, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeSet, StringPrototypeSlice, StringPrototypeToUpperCase, @@ -571,7 +571,7 @@ function normalizeSpawnArguments(file, args, options) { else file = process.env.comspec || 'cmd.exe'; // '/d /s /c' is used only for cmd.exe. - if (RegExpPrototypeTest(/^(?:.*\\)?cmd(?:\.exe)?$/i, file)) { + if (RegExpPrototypeExec(/^(?:.*\\)?cmd(?:\.exe)?$/i, file) !== null) { args = ['/d', '/s', '/c', `"${command}"`]; windowsVerbatimArguments = true; } else { diff --git a/lib/internal/blob.js b/lib/internal/blob.js index 836baac7ed2452..8014a1bb5b0349 100644 --- a/lib/internal/blob.js +++ b/lib/internal/blob.js @@ -9,8 +9,8 @@ const { PromiseReject, SafePromisePrototypeFinally, ReflectConstruct, + RegExpPrototypeExec, RegExpPrototypeSymbolReplace, - RegExpPrototypeTest, StringPrototypeToLowerCase, StringPrototypeSplit, Symbol, @@ -165,7 +165,7 @@ class Blob { this[kLength] = length; type = `${type}`; - this[kType] = RegExpPrototypeTest(disallowedTypeCharacters, type) ? + this[kType] = RegExpPrototypeExec(disallowedTypeCharacters, type) !== null ? '' : StringPrototypeToLowerCase(type); // eslint-disable-next-line no-constructor-return @@ -247,7 +247,7 @@ class Blob { end |= 0; contentType = `${contentType}`; - if (RegExpPrototypeTest(disallowedTypeCharacters, contentType)) { + if (RegExpPrototypeExec(disallowedTypeCharacters, contentType) !== null) { contentType = ''; } else { contentType = StringPrototypeToLowerCase(contentType); diff --git a/lib/internal/cluster/primary.js b/lib/internal/cluster/primary.js index ed5b06d798868c..e71561d724eaa5 100644 --- a/lib/internal/cluster/primary.js +++ b/lib/internal/cluster/primary.js @@ -6,7 +6,7 @@ const { ArrayPrototypeSome, ObjectKeys, ObjectValues, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeMap, StringPrototypeStartsWith, } = primordials; @@ -121,8 +121,8 @@ function createWorkerProcess(id, env) { const nodeOptions = process.env.NODE_OPTIONS || ''; if (ArrayPrototypeSome(execArgv, - (arg) => RegExpPrototypeTest(debugArgRegex, arg)) || - RegExpPrototypeTest(debugArgRegex, nodeOptions)) { + (arg) => RegExpPrototypeExec(debugArgRegex, arg) !== null) || + RegExpPrototypeExec(debugArgRegex, nodeOptions) !== null) { let inspectPort; if ('inspectPort' in cluster.settings) { if (typeof cluster.settings.inspectPort === 'function') diff --git a/lib/internal/console/constructor.js b/lib/internal/console/constructor.js index bba2784bb92d44..d8434f2311a375 100644 --- a/lib/internal/console/constructor.js +++ b/lib/internal/console/constructor.js @@ -24,13 +24,13 @@ const { ReflectApply, ReflectConstruct, ReflectOwnKeys, + RegExpPrototypeSymbolReplace, SafeArrayIterator, SafeMap, SafeWeakMap, StringPrototypeIncludes, StringPrototypePadStart, StringPrototypeRepeat, - StringPrototypeReplace, StringPrototypeSlice, StringPrototypeSplit, Symbol, @@ -279,7 +279,7 @@ ObjectDefineProperties(Console.prototype, { if (groupIndent.length !== 0) { if (StringPrototypeIncludes(string, '\n')) { - string = StringPrototypeReplace(string, /\n/g, `\n${groupIndent}`); + string = RegExpPrototypeSymbolReplace(/\n/g, string, `\n${groupIndent}`); } string = groupIndent + string; } diff --git a/lib/internal/debugger/inspect.js b/lib/internal/debugger/inspect.js index cb5ffa8cef5720..e5211c285bd5eb 100644 --- a/lib/internal/debugger/inspect.js +++ b/lib/internal/debugger/inspect.js @@ -15,9 +15,8 @@ const { PromisePrototypeThen, PromiseResolve, Proxy, - RegExpPrototypeSymbolMatch, + RegExpPrototypeExec, RegExpPrototypeSymbolSplit, - RegExpPrototypeTest, StringPrototypeEndsWith, StringPrototypeSplit, } = primordials; @@ -91,7 +90,7 @@ async function runScript(script, scriptArgs, inspectHost, inspectPort, return new Promise((resolve) => { function waitForListenHint(text) { output += text; - const debug = RegExpPrototypeSymbolMatch(debugRegex, output); + const debug = RegExpPrototypeExec(debugRegex, output); if (debug) { const host = debug[1]; const port = Number(debug[2]); @@ -282,8 +281,8 @@ function parseArgv(args) { let script = target; let scriptArgs = args; - const hostMatch = RegExpPrototypeSymbolMatch(/^([^:]+):(\d+)$/, target); - const portMatch = RegExpPrototypeSymbolMatch(/^--port=(\d+)$/, target); + const hostMatch = RegExpPrototypeExec(/^([^:]+):(\d+)$/, target); + const portMatch = RegExpPrototypeExec(/^--port=(\d+)$/, target); if (hostMatch) { // Connecting to remote debugger @@ -296,7 +295,7 @@ function parseArgv(args) { port = Number(portMatch[1]); script = args[0]; scriptArgs = ArrayPrototypeSlice(args, 1); - } else if (args.length === 1 && RegExpPrototypeTest(/^\d+$/, args[0]) && + } else if (args.length === 1 && RegExpPrototypeExec(/^\d+$/, args[0]) !== null && target === '-p') { // Start debugger against a given pid const pid = Number(args[0]); diff --git a/lib/internal/debugger/inspect_repl.js b/lib/internal/debugger/inspect_repl.js index 49b41ef2af311f..0ac0c8464e0a4f 100644 --- a/lib/internal/debugger/inspect_repl.js +++ b/lib/internal/debugger/inspect_repl.js @@ -29,7 +29,7 @@ const { PromiseResolve, ReflectGetOwnPropertyDescriptor, ReflectOwnKeys, - RegExpPrototypeSymbolMatch, + RegExpPrototypeExec, RegExpPrototypeSymbolReplace, SafeArrayIterator, SafeMap, @@ -114,7 +114,7 @@ takeHeapSnapshot(filepath = 'node.heapsnapshot') const FUNCTION_NAME_PATTERN = /^(?:function\*? )?([^(\s]+)\(/; function extractFunctionName(description) { const fnNameMatch = - RegExpPrototypeSymbolMatch(FUNCTION_NAME_PATTERN, description); + RegExpPrototypeExec(FUNCTION_NAME_PATTERN, description); return fnNameMatch ? `: ${fnNameMatch[1]}` : ''; } @@ -171,7 +171,7 @@ function markSourceColumn(sourceText, position, useColors) { function extractErrorMessage(stack) { if (!stack) return ''; - const m = RegExpPrototypeSymbolMatch(/^\w+: ([^\n]+)/, stack); + const m = RegExpPrototypeExec(/^\w+: ([^\n]+)/, stack); return m?.[1] ?? stack; } @@ -578,7 +578,7 @@ function createRepl(inspector) { function prepareControlCode(input) { if (input === '\n') return lastCommand; // Add parentheses: exec process.title => exec("process.title"); - const match = RegExpPrototypeSymbolMatch(/^\s*(?:exec|p)\s+([^\n]*)/, input); + const match = RegExpPrototypeExec(/^\s*(?:exec|p)\s+([^\n]*)/, input); if (match) { lastCommand = `exec(${JSONStringify(match[1])})`; } else { diff --git a/lib/internal/dns/utils.js b/lib/internal/dns/utils.js index 3a18db94ce30e8..35ac2b32570922 100644 --- a/lib/internal/dns/utils.js +++ b/lib/internal/dns/utils.js @@ -7,8 +7,8 @@ const { ArrayPrototypePush, FunctionPrototypeBind, NumberParseInt, - StringPrototypeMatch, - StringPrototypeReplace, + RegExpPrototypeExec, + RegExpPrototypeSymbolReplace, } = primordials; const errors = require('internal/errors'); @@ -86,7 +86,7 @@ class Resolver { if (ipVersion !== 0) return ArrayPrototypePush(newSet, [ipVersion, serv, IANA_DNS_PORT]); - const match = StringPrototypeMatch(serv, IPv6RE); + const match = RegExpPrototypeExec(IPv6RE, serv); // Check for an IPv6 in brackets. if (match) { @@ -94,13 +94,13 @@ class Resolver { if (ipVersion !== 0) { const port = NumberParseInt( - StringPrototypeReplace(serv, addrSplitRE, '$2')) || IANA_DNS_PORT; + RegExpPrototypeSymbolReplace(addrSplitRE, serv, '$2')) || IANA_DNS_PORT; return ArrayPrototypePush(newSet, [ipVersion, match[1], port]); } } // addr::port - const addrSplitMatch = StringPrototypeMatch(serv, addrSplitRE); + const addrSplitMatch = RegExpPrototypeExec(addrSplitRE, serv); if (addrSplitMatch) { const hostIP = addrSplitMatch[1]; diff --git a/lib/internal/errors.js b/lib/internal/errors.js index 7570315abe54d6..51a9b2df2cc1b4 100644 --- a/lib/internal/errors.js +++ b/lib/internal/errors.js @@ -42,14 +42,13 @@ const { ObjectPrototypeHasOwnProperty, RangeError, ReflectApply, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeArrayIterator, SafeMap, SafeWeakMap, String, StringPrototypeEndsWith, StringPrototypeIncludes, - StringPrototypeMatch, StringPrototypeSlice, StringPrototypeSplit, StringPrototypeStartsWith, @@ -438,8 +437,9 @@ function getMessage(key, args, self) { return ReflectApply(msg, self, args); } - const expectedLength = - (StringPrototypeMatch(msg, /%[dfijoOs]/g) || []).length; + const regex = /%[dfijoOs]/g; + let expectedLength = 0; + while (RegExpPrototypeExec(regex, msg) !== null) expectedLength++; assert( expectedLength === args.length, `Code: ${key}; The provided arguments length (${args.length}) does not ` + @@ -1177,7 +1177,7 @@ E('ERR_INVALID_ARG_TYPE', 'All expected entries have to be of type string'); if (ArrayPrototypeIncludes(kTypes, value)) { ArrayPrototypePush(types, StringPrototypeToLowerCase(value)); - } else if (RegExpPrototypeTest(classRegExp, value)) { + } else if (RegExpPrototypeExec(classRegExp, value) !== null) { ArrayPrototypePush(instances, value); } else { assert(value !== 'object', diff --git a/lib/internal/fs/utils.js b/lib/internal/fs/utils.js index 9280fcfef7018e..cba646942785fe 100644 --- a/lib/internal/fs/utils.js +++ b/lib/internal/fs/utils.js @@ -17,9 +17,9 @@ const { ObjectSetPrototypeOf, ReflectApply, ReflectOwnKeys, + RegExpPrototypeSymbolReplace, StringPrototypeEndsWith, StringPrototypeIncludes, - StringPrototypeReplace, Symbol, TypedArrayPrototypeIncludes, } = primordials; @@ -396,7 +396,7 @@ function preprocessSymlinkDestination(path, type, linkPath) { return pathModule.toNamespacedPath(path); } // Windows symlinks don't tolerate forward slashes. - return StringPrototypeReplace(path, /\//g, '\\'); + return RegExpPrototypeSymbolReplace(/\//g, path, '\\'); } // Constructor for file stats. diff --git a/lib/internal/http2/core.js b/lib/internal/http2/core.js index 22d9f0f6c0d870..7934675bea79c1 100644 --- a/lib/internal/http2/core.js +++ b/lib/internal/http2/core.js @@ -23,7 +23,7 @@ const { ReflectGet, ReflectGetPrototypeOf, ReflectSet, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeArrayIterator, SafeMap, SafeSet, @@ -1665,7 +1665,7 @@ class ServerHttp2Session extends Http2Session { } validateString(alt, 'alt'); - if (!RegExpPrototypeTest(kQuotedString, alt)) + if (RegExpPrototypeExec(kQuotedString, alt) === null) throw new ERR_INVALID_CHAR('alt'); // Max length permitted for ALTSVC diff --git a/lib/internal/main/print_help.js b/lib/internal/main/print_help.js index 6aa422c657b2d0..a2cee4b0567649 100644 --- a/lib/internal/main/print_help.js +++ b/lib/internal/main/print_help.js @@ -8,11 +8,11 @@ const { MathMax, ObjectKeys, RegExp, + RegExpPrototypeSymbolReplace, StringPrototypeLocaleCompare, StringPrototypeSlice, StringPrototypeTrimLeft, StringPrototypeRepeat, - StringPrototypeReplace, SafeMap, } = primordials; @@ -77,14 +77,15 @@ const envVars = new SafeMap(ArrayPrototypeConcat([ function indent(text, depth) { - return StringPrototypeReplace(text, /^/gm, StringPrototypeRepeat(' ', depth)); + return RegExpPrototypeSymbolReplace(/^/gm, text, StringPrototypeRepeat(' ', depth)); } function fold(text, width) { - return StringPrototypeReplace(text, - new RegExp(`([^\n]{0,${width}})( |$)`, 'g'), - (_, newLine, end) => - newLine + (end === ' ' ? '\n' : '')); + return RegExpPrototypeSymbolReplace( + new RegExp(`([^\n]{0,${width}})( |$)`, 'g'), + text, + (_, newLine, end) => newLine + (end === ' ' ? '\n' : '') + ); } function getArgDescription(type) { diff --git a/lib/internal/modules/cjs/loader.js b/lib/internal/modules/cjs/loader.js index 11e029b258aa9a..080e233213c3c9 100644 --- a/lib/internal/modules/cjs/loader.js +++ b/lib/internal/modules/cjs/loader.js @@ -49,7 +49,6 @@ const { ReflectApply, ReflectSet, RegExpPrototypeExec, - RegExpPrototypeTest, SafeMap, SafeWeakMap, String, @@ -58,7 +57,6 @@ const { StringPrototypeEndsWith, StringPrototypeLastIndexOf, StringPrototypeIndexOf, - StringPrototypeMatch, StringPrototypeRepeat, StringPrototypeSlice, StringPrototypeSplit, @@ -79,7 +77,7 @@ const { maybeCacheSourceMap, } = require('internal/source_map/source_map_cache'); const { pathToFileURL, fileURLToPath, isURLInstance } = require('internal/url'); -const { deprecate } = require('internal/util'); +const { deprecate, kEmptyObject } = require('internal/util'); const vm = require('vm'); const assert = require('internal/assert'); const fs = require('fs'); @@ -478,7 +476,7 @@ const EXPORTS_PATTERN = /^((?:@[^/\\%]+\/)?[^./\\%][^/\\%]*)(\/.*)?$/; function resolveExports(nmPath, request) { // The implementation's behavior is meant to mirror resolution in ESM. const { 1: name, 2: expansion = '' } = - StringPrototypeMatch(request, EXPORTS_PATTERN) || []; + RegExpPrototypeExec(EXPORTS_PATTERN, request) || kEmptyObject; if (!name) return; const pkgPath = path.resolve(nmPath, name); @@ -515,7 +513,7 @@ Module._findPath = function(request, paths, isMain) { StringPrototypeCharCodeAt(request, request.length - 1) === CHAR_FORWARD_SLASH; if (!trailingSlash) { - trailingSlash = RegExpPrototypeTest(trailingSlashRegex, request); + trailingSlash = RegExpPrototypeExec(trailingSlashRegex, request) !== null; } // For each path @@ -956,7 +954,7 @@ Module._resolveFilename = function(request, parent, isMain, options) { }; function finalizeEsmResolution(resolved, parentPath, pkgPath) { - if (RegExpPrototypeTest(encodedSepRegEx, resolved)) + if (RegExpPrototypeExec(encodedSepRegEx, resolved) !== null) throw new ERR_INVALID_MODULE_SPECIFIER( resolved, 'must not include encoded "/" or "\\" characters', parentPath); const filename = fileURLToPath(resolved); diff --git a/lib/internal/modules/esm/formats.js b/lib/internal/modules/esm/formats.js index f9da01402e7f62..f71e6ae689c277 100644 --- a/lib/internal/modules/esm/formats.js +++ b/lib/internal/modules/esm/formats.js @@ -1,7 +1,7 @@ 'use strict'; const { - RegExpPrototypeTest, + RegExpPrototypeExec, } = primordials; const { getOptionValue } = require('internal/options'); @@ -35,10 +35,10 @@ if (experimentalWasmModules) { */ function mimeToFormat(mime) { if ( - RegExpPrototypeTest( + RegExpPrototypeExec( /\s*(text|application)\/javascript\s*(;\s*charset=utf-?8\s*)?/i, mime - ) + ) !== null ) return 'module'; if (mime === 'application/json') return 'json'; if (experimentalWasmModules && mime === 'application/wasm') return 'wasm'; diff --git a/lib/internal/modules/esm/module_job.js b/lib/internal/modules/esm/module_job.js index fd1c6166330e76..f91084a60f4609 100644 --- a/lib/internal/modules/esm/module_job.js +++ b/lib/internal/modules/esm/module_job.js @@ -12,12 +12,11 @@ const { PromiseResolve, PromisePrototypeCatch, ReflectApply, - RegExpPrototypeTest, + RegExpPrototypeExec, + RegExpPrototypeSymbolReplace, SafeArrayIterator, SafeSet, StringPrototypeIncludes, - StringPrototypeMatch, - StringPrototypeReplace, StringPrototypeSplit, StringPrototypeStartsWith, } = primordials; @@ -136,14 +135,14 @@ class ModuleJob { StringPrototypeIncludes(e.message, ' does not provide an export named')) { const splitStack = StringPrototypeSplit(e.stack, '\n'); - const parentFileUrl = StringPrototypeReplace( - splitStack[0], + const parentFileUrl = RegExpPrototypeSymbolReplace( /:\d+$/, + splitStack[0], '' ); - const { 1: childSpecifier, 2: name } = StringPrototypeMatch( - e.message, - /module '(.*)' does not provide an export named '(.+)'/); + const { 1: childSpecifier, 2: name } = RegExpPrototypeExec( + /module '(.*)' does not provide an export named '(.+)'/, + e.message); const { url: childFileURL } = await this.loader.resolve( childSpecifier, parentFileUrl, ); @@ -164,9 +163,9 @@ class ModuleJob { // line which causes the error. For multi-line import statements we // cannot generate an equivalent object destructuring assignment by // just parsing the error stack. - const oneLineNamedImports = StringPrototypeMatch(importStatement, /{.*}/); + const oneLineNamedImports = RegExpPrototypeExec(/{.*}/, importStatement); const destructuringAssignment = oneLineNamedImports && - StringPrototypeReplace(oneLineNamedImports, /\s+as\s+/g, ': '); + RegExpPrototypeSymbolReplace(/\s+as\s+/g, oneLineNamedImports, ': '); e.message = `Named export '${name}' not found. The requested module` + ` '${childSpecifier}' is a CommonJS module, which may not support` + ' all module.exports as named exports.\nCommonJS modules can ' + @@ -206,7 +205,7 @@ class ModuleJob { const packageConfig = StringPrototypeStartsWith(this.module.url, 'file://') && - RegExpPrototypeTest(/\.js(\?[^#]*)?(#.*)?$/, this.module.url) && + RegExpPrototypeExec(/\.js(\?[^#]*)?(#.*)?$/, this.module.url) !== null && require('internal/modules/esm/resolve') .getPackageScopeConfig(this.module.url); if (packageConfig.type === 'module') { diff --git a/lib/internal/modules/esm/resolve.js b/lib/internal/modules/esm/resolve.js index 79ea42233b66a0..c6abfc9b2b3ecd 100644 --- a/lib/internal/modules/esm/resolve.js +++ b/lib/internal/modules/esm/resolve.js @@ -13,7 +13,6 @@ const { RegExp, RegExpPrototypeExec, RegExpPrototypeSymbolReplace, - RegExpPrototypeTest, SafeMap, SafeSet, String, @@ -370,7 +369,7 @@ const encodedSepRegEx = /%2F|%5C/i; * @returns {URL | undefined} */ function finalizeResolution(resolved, base, preserveSymlinks) { - if (RegExpPrototypeTest(encodedSepRegEx, resolved.pathname)) + if (RegExpPrototypeExec(encodedSepRegEx, resolved.pathname) !== null) throw new ERR_INVALID_MODULE_SPECIFIER( resolved.pathname, 'must not include encoded "/" or "\\" characters', fileURLToPath(base)); @@ -499,7 +498,7 @@ function resolvePackageTargetString( throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); } - if (RegExpPrototypeTest(invalidSegmentRegEx, StringPrototypeSlice(target, 2))) + if (RegExpPrototypeExec(invalidSegmentRegEx, StringPrototypeSlice(target, 2)) !== null) throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); const resolved = new URL(target, packageJSONUrl); @@ -511,7 +510,7 @@ function resolvePackageTargetString( if (subpath === '') return resolved; - if (RegExpPrototypeTest(invalidSegmentRegEx, subpath)) { + if (RegExpPrototypeExec(invalidSegmentRegEx, subpath) !== null) { const request = pattern ? StringPrototypeReplace(match, '*', () => subpath) : match + subpath; throwInvalidSubpath(request, packageJSONUrl, internal, base); diff --git a/lib/internal/policy/manifest.js b/lib/internal/policy/manifest.js index a0cd9707a2c7d5..062e1ba219bbe8 100644 --- a/lib/internal/policy/manifest.js +++ b/lib/internal/policy/manifest.js @@ -10,12 +10,11 @@ const { ObjectKeys, ObjectSetPrototypeOf, RegExpPrototypeExec, - RegExpPrototypeTest, SafeMap, SafeSet, + RegExpPrototypeSymbolReplace, StringPrototypeEndsWith, StringPrototypeStartsWith, - StringPrototypeReplace, Symbol, uncurryThis, } = primordials; @@ -202,7 +201,7 @@ class DependencyMapperInstance { let ret; if (parsedURLs && parsedURLs.has(to)) { ret = parsedURLs.get(to); - } else if (RegExpPrototypeTest(kRelativeURLStringPattern, to)) { + } else if (RegExpPrototypeExec(kRelativeURLStringPattern, to) !== null) { ret = resolve(to, manifest.href); } else { ret = resolve(to); @@ -301,7 +300,7 @@ function findScopeHREF(href, scopeStore, allowSame) { if (href !== '') { // default URL parser does some stuff to special urls... skip if this is // just the protocol - if (RegExpPrototypeTest(/^[^:]*[:]$/, href)) { + if (RegExpPrototypeExec(/^[^:]*[:]$/, href) !== null) { protocol = href; } else { let currentURL = new URL(href); @@ -669,7 +668,7 @@ module.exports = ObjectFreeze({ Manifest }); */ function canonicalizeSpecifier(specifier, base) { try { - if (RegExpPrototypeTest(kRelativeURLStringPattern, specifier)) { + if (RegExpPrototypeExec(kRelativeURLStringPattern, specifier) !== null) { return resolve(specifier, base).href; } return resolve(specifier).href; @@ -690,13 +689,13 @@ const emptyOrProtocolOrResolve = (resourceHREF, base) => { if (resourceHREF === '') return ''; if (StringPrototypeEndsWith(resourceHREF, ':')) { // URL parse will trim these anyway, save the compute - resourceHREF = StringPrototypeReplace( - resourceHREF, + resourceHREF = RegExpPrototypeSymbolReplace( // eslint-disable-next-line /^[\x00-\x1F\x20]|\x09\x0A\x0D|[\x00-\x1F\x20]$/g, + resourceHREF, '' ); - if (RegExpPrototypeTest(/^[a-zA-Z][a-zA-Z+\-.]*:$/, resourceHREF)) { + if (RegExpPrototypeExec(/^[a-zA-Z][a-zA-Z+\-.]*:$/, resourceHREF) !== null) { return resourceHREF; } } @@ -718,7 +717,7 @@ const resolve = (originalHREF, base) => { parsedURLs = parsedURLs ?? new SafeMap(); if (parsedURLs.has(originalHREF)) { return parsedURLs.get(originalHREF); - } else if (RegExpPrototypeTest(kRelativeURLStringPattern, originalHREF)) { + } else if (RegExpPrototypeExec(kRelativeURLStringPattern, originalHREF) !== null) { const resourceURL = new URL(originalHREF, base); parsedURLs.set(resourceURL.href, resourceURL); return resourceURL; diff --git a/lib/internal/policy/sri.js b/lib/internal/policy/sri.js index 0d8c24e89ae8aa..72f7798ce4f333 100644 --- a/lib/internal/policy/sri.js +++ b/lib/internal/policy/sri.js @@ -10,7 +10,6 @@ const { ObjectSetPrototypeOf, RegExp, RegExpPrototypeExec, - RegExpPrototypeTest, StringPrototypeSlice, } = primordials; @@ -62,7 +61,7 @@ const parse = (str) => { } if (prevIndex !== str.length) { - if (!RegExpPrototypeTest(kAllWSP, StringPrototypeSlice(str, prevIndex))) { + if (RegExpPrototypeExec(kAllWSP, StringPrototypeSlice(str, prevIndex)) === null) { throw new ERR_SRI_PARSE(str, str[prevIndex], prevIndex); } } diff --git a/lib/internal/process/per_thread.js b/lib/internal/process/per_thread.js index 709bcb7b137639..631348dcd3af69 100644 --- a/lib/internal/process/per_thread.js +++ b/lib/internal/process/per_thread.js @@ -16,7 +16,7 @@ const { NumberMAX_SAFE_INTEGER, ObjectFreeze, ReflectApply, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeArrayIterator, Set, SetPrototypeEntries, @@ -339,7 +339,7 @@ function buildAllowedFlags() { // not. if (typeof key === 'string') { key = StringPrototypeReplace(key, replaceUnderscoresRegex, '-'); - if (RegExpPrototypeTest(leadingDashesRegex, key)) { + if (RegExpPrototypeExec(leadingDashesRegex, key) !== null) { key = StringPrototypeReplace(key, trailingValuesRegex, ''); return ArrayPrototypeIncludes(this[kInternal].array, key); } diff --git a/lib/internal/readline/interface.js b/lib/internal/readline/interface.js index 457b67716c460f..41e84099cf51e5 100644 --- a/lib/internal/readline/interface.js +++ b/lib/internal/readline/interface.js @@ -21,12 +21,12 @@ const { NumberIsFinite, NumberIsNaN, ObjectSetPrototypeOf, - RegExpPrototypeTest, + RegExpPrototypeExec, + RegExpPrototypeSymbolReplace, + RegExpPrototypeSymbolSplit, StringPrototypeCodePointAt, StringPrototypeEndsWith, - StringPrototypeMatch, StringPrototypeRepeat, - StringPrototypeReplace, StringPrototypeSlice, StringPrototypeSplit, StringPrototypeStartsWith, @@ -590,12 +590,12 @@ class Interface extends InterfaceConstructor { this[kSawReturnAt] && DateNow() - this[kSawReturnAt] <= this.crlfDelay ) { - string = StringPrototypeReplace(string, /^\n/, ''); + string = RegExpPrototypeSymbolReplace(/^\n/, string, ''); this[kSawReturnAt] = 0; } // Run test() on the new string chunk, not on the entire line buffer. - const newPartContainsEnding = RegExpPrototypeTest(lineEnding, string); + const newPartContainsEnding = RegExpPrototypeExec(lineEnding, string) !== null; if (this[kLine_buffer]) { string = this[kLine_buffer] + string; @@ -738,7 +738,7 @@ class Interface extends InterfaceConstructor { ArrayPrototypeReverse(ArrayFrom(leading)), '' ); - const match = StringPrototypeMatch(reversed, /^\s*(?:[^\w\s]+|\w+)?/); + const match = RegExpPrototypeExec(/^\s*(?:[^\w\s]+|\w+)?/, reversed); this[kMoveCursor](-match[0].length); } } @@ -746,7 +746,7 @@ class Interface extends InterfaceConstructor { [kWordRight]() { if (this.cursor < this.line.length) { const trailing = StringPrototypeSlice(this.line, this.cursor); - const match = StringPrototypeMatch(trailing, /^(?:\s+|[^\w\s]+|\w+)\s*/); + const match = RegExpPrototypeExec(/^(?:\s+|[^\w\s]+|\w+)\s*/, trailing); this[kMoveCursor](match[0].length); } } @@ -791,7 +791,7 @@ class Interface extends InterfaceConstructor { ArrayPrototypeReverse(ArrayFrom(leading)), '' ); - const match = StringPrototypeMatch(reversed, /^\s*(?:[^\w\s]+|\w+)?/); + const match = RegExpPrototypeExec(/^\s*(?:[^\w\s]+|\w+)?/, reversed); leading = StringPrototypeSlice( leading, 0, @@ -809,7 +809,7 @@ class Interface extends InterfaceConstructor { if (this.cursor < this.line.length) { this[kBeforeEdit](this.line, this.cursor); const trailing = StringPrototypeSlice(this.line, this.cursor); - const match = StringPrototypeMatch(trailing, /^(?:\s+|\W+|\w+)\s*/); + const match = RegExpPrototypeExec(/^(?:\s+|\W+|\w+)\s*/, trailing); this.line = StringPrototypeSlice(this.line, 0, this.cursor) + StringPrototypeSlice(trailing, match[0].length); @@ -1322,7 +1322,7 @@ class Interface extends InterfaceConstructor { // falls through default: if (typeof s === 'string' && s) { - const lines = StringPrototypeSplit(s, /\r\n|\n|\r/); + const lines = RegExpPrototypeSymbolSplit(/\r\n|\n|\r/, s); for (let i = 0, len = lines.length; i < len; i++) { if (i > 0) { this[kLine](); diff --git a/lib/internal/readline/utils.js b/lib/internal/readline/utils.js index 55b3e07b4c1782..7d1d93b3a98913 100644 --- a/lib/internal/readline/utils.js +++ b/lib/internal/readline/utils.js @@ -3,11 +3,10 @@ const { ArrayPrototypeSlice, ArrayPrototypeSort, - RegExpPrototypeTest, + RegExpPrototypeExec, StringFromCharCode, StringPrototypeCharCodeAt, StringPrototypeCodePointAt, - StringPrototypeMatch, StringPrototypeSlice, StringPrototypeToLowerCase, Symbol, @@ -190,11 +189,11 @@ function* emitKeys(stream) { const cmd = StringPrototypeSlice(s, cmdStart); let match; - if ((match = StringPrototypeMatch(cmd, /^(\d\d?)(;(\d))?([~^$])$/))) { + if ((match = RegExpPrototypeExec(/^(\d\d?)(;(\d))?([~^$])$/, cmd))) { code += match[1] + match[4]; modifier = (match[3] || 1) - 1; } else if ( - (match = StringPrototypeMatch(cmd, /^((\d;)?(\d))?([A-Za-z])$/)) + (match = RegExpPrototypeExec(/^((\d;)?(\d))?([A-Za-z])$/, cmd)) ) { code += match[4]; modifier = (match[3] || 1) - 1; @@ -340,10 +339,10 @@ function* emitKeys(stream) { StringPrototypeCharCodeAt(ch) + StringPrototypeCharCodeAt('a') - 1 ); key.ctrl = true; - } else if (RegExpPrototypeTest(/^[0-9A-Za-z]$/, ch)) { + } else if (RegExpPrototypeExec(/^[0-9A-Za-z]$/, ch) !== null) { // Letter, number, shift+letter key.name = StringPrototypeToLowerCase(ch); - key.shift = RegExpPrototypeTest(/^[A-Z]$/, ch); + key.shift = RegExpPrototypeExec(/^[A-Z]$/, ch) !== null; key.meta = escaped; } else if (escaped) { // Escape sequence timeout diff --git a/lib/internal/repl/history.js b/lib/internal/repl/history.js index 74ef94e81070dc..9300283e0015cc 100644 --- a/lib/internal/repl/history.js +++ b/lib/internal/repl/history.js @@ -4,7 +4,7 @@ const { ArrayPrototypeJoin, Boolean, FunctionPrototype, - StringPrototypeSplit, + RegExpPrototypeSymbolSplit, StringPrototypeTrim, } = primordials; @@ -90,7 +90,7 @@ function setupHistory(repl, historyPath, ready) { } if (data) { - repl.history = StringPrototypeSplit(data, /[\n\r]+/, repl.historySize); + repl.history = RegExpPrototypeSymbolSplit(/[\n\r]+/, data, repl.historySize); } else { repl.history = []; } diff --git a/lib/internal/repl/utils.js b/lib/internal/repl/utils.js index ee8c54be5bb5c3..9e55b79fc7e86c 100644 --- a/lib/internal/repl/utils.js +++ b/lib/internal/repl/utils.js @@ -7,13 +7,13 @@ const { Boolean, FunctionPrototypeBind, MathMin, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeSet, SafeStringIterator, StringPrototypeEndsWith, StringPrototypeIndexOf, StringPrototypeLastIndexOf, - StringPrototypeReplace, + StringPrototypeReplaceAll, StringPrototypeSlice, StringPrototypeStartsWith, StringPrototypeToLowerCase, @@ -68,7 +68,7 @@ function isRecoverableError(e, code) { // curly brace with parenthesis. Note: only the open parenthesis is added // here as the point is to test for potentially valid but incomplete // expressions. - if (RegExpPrototypeTest(/^\s*\{/, code) && + if (RegExpPrototypeExec(/^\s*\{/, code) !== null && isRecoverableError(e, `(${code}`)) return true; @@ -114,8 +114,8 @@ function isRecoverableError(e, code) { const token = StringPrototypeSlice(this.input, this.lastTokStart, this.pos); // See https://www.ecma-international.org/ecma-262/#sec-line-terminators - if (RegExpPrototypeTest(/\\(?:\r\n?|\n|\u2028|\u2029)$/, - token)) { + if (RegExpPrototypeExec(/\\(?:\r\n?|\n|\u2028|\u2029)$/, + token) !== null) { recoverable = true; } } @@ -288,9 +288,9 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) { function isInStrictMode(repl) { return repl.replMode === REPL_MODE_STRICT || ArrayPrototypeIncludes( ArrayPrototypeMap(process.execArgv, - (e) => StringPrototypeReplace( + (e) => StringPrototypeReplaceAll( StringPrototypeToLowerCase(e), - /_/g, + '_', '-' )), '--use-strict'); diff --git a/lib/internal/source_map/prepare_stack_trace.js b/lib/internal/source_map/prepare_stack_trace.js index 551d3d50fee4b1..11591b610ec485 100644 --- a/lib/internal/source_map/prepare_stack_trace.js +++ b/lib/internal/source_map/prepare_stack_trace.js @@ -5,9 +5,9 @@ const { ArrayPrototypeJoin, ArrayPrototypeMap, ErrorPrototypeToString, + RegExpPrototypeSymbolSplit, StringPrototypeRepeat, StringPrototypeSlice, - StringPrototypeSplit, StringPrototypeStartsWith, SafeStringIterator, } = primordials; @@ -152,7 +152,7 @@ function getErrorSource( sourceMap.payload, originalSourcePathNoScheme ); - const lines = StringPrototypeSplit(source, /\r?\n/, originalLine + 1); + const lines = RegExpPrototypeSymbolSplit(/\r?\n/, source, originalLine + 1); const line = lines[originalLine]; if (!line) return exceptionLine; diff --git a/lib/internal/source_map/source_map_cache.js b/lib/internal/source_map/source_map_cache.js index e3721d024d9fb1..43acebae609cf2 100644 --- a/lib/internal/source_map/source_map_cache.js +++ b/lib/internal/source_map/source_map_cache.js @@ -7,9 +7,9 @@ const { ObjectKeys, ObjectGetOwnPropertyDescriptor, ObjectPrototypeHasOwnProperty, - RegExpPrototypeTest, + RegExpPrototypeExec, + RegExpPrototypeSymbolSplit, SafeMap, - StringPrototypeMatch, StringPrototypeSplit, } = primordials; @@ -82,9 +82,9 @@ function maybeCacheSourceMap(filename, content, cjsModuleInstance) { debug(err); return; } - const match = StringPrototypeMatch( + const match = RegExpPrototypeExec( + /\/[*/]#\s+sourceMappingURL=(?[^\s]+)/, content, - /\/[*/]#\s+sourceMappingURL=(?[^\s]+)/ ); if (match) { const data = dataFromUrl(filename, match.groups.sourceMappingURL); @@ -133,7 +133,7 @@ function lineLengths(content) { // We purposefully keep \r as part of the line-length calculation, in // cases where there is a \r\n separator, so that this can be taken into // account in coverage calculations. - return ArrayPrototypeMap(StringPrototypeSplit(content, /\n|\u2028|\u2029/), (line) => { + return ArrayPrototypeMap(RegExpPrototypeSymbolSplit(/\n|\u2028|\u2029/, content), (line) => { return line.length; }); } @@ -219,7 +219,7 @@ function appendCJSCache(obj) { } function findSourceMap(sourceURL) { - if (!RegExpPrototypeTest(/^\w+:\/\//, sourceURL)) { + if (RegExpPrototypeExec(/^\w+:\/\//, sourceURL) === null) { sourceURL = pathToFileURL(sourceURL).href; } if (!SourceMap) { diff --git a/lib/internal/tty.js b/lib/internal/tty.js index 5abf0b908b02cc..4f285e92829637 100644 --- a/lib/internal/tty.js +++ b/lib/internal/tty.js @@ -24,7 +24,7 @@ const { ArrayPrototypeSome, - RegExpPrototypeTest, + RegExpPrototypeExec, StringPrototypeSplit, StringPrototypeToLowerCase, } = primordials; @@ -174,14 +174,14 @@ function getColorDepth(env = process.env) { } if ('TEAMCITY_VERSION' in env) { - return RegExpPrototypeTest(/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/, env.TEAMCITY_VERSION) ? + return RegExpPrototypeExec(/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/, env.TEAMCITY_VERSION) !== null ? COLORS_16 : COLORS_2; } switch (env.TERM_PROGRAM) { case 'iTerm.app': if (!env.TERM_PROGRAM_VERSION || - RegExpPrototypeTest(/^[0-2]\./, env.TERM_PROGRAM_VERSION) + RegExpPrototypeExec(/^[0-2]\./, env.TERM_PROGRAM_VERSION) !== null ) { return COLORS_256; } @@ -198,7 +198,7 @@ function getColorDepth(env = process.env) { } if (env.TERM) { - if (RegExpPrototypeTest(/^xterm-256/, env.TERM)) { + if (RegExpPrototypeExec(/^xterm-256/, env.TERM) !== null) { return COLORS_256; } @@ -208,7 +208,7 @@ function getColorDepth(env = process.env) { return TERM_ENVS[termEnv]; } if (ArrayPrototypeSome(TERM_ENVS_REG_EXP, - (term) => RegExpPrototypeTest(term, termEnv))) { + (term) => RegExpPrototypeExec(term, termEnv) !== null)) { return COLORS_16; } } diff --git a/lib/internal/util.js b/lib/internal/util.js index 36736da36d5313..82b52b401984fb 100644 --- a/lib/internal/util.js +++ b/lib/internal/util.js @@ -19,7 +19,6 @@ const { ReflectApply, ReflectConstruct, RegExpPrototypeExec, - RegExpPrototypeTest, SafeMap, SafeSet, StringPrototypeReplace, @@ -430,9 +429,9 @@ function isInsideNodeModules() { const filename = frame.getFileName(); // If a filename does not start with / or contain \, // it's likely from Node.js core. - if (!RegExpPrototypeTest(/^\/|\\/, filename)) + if (RegExpPrototypeExec(/^\/|\\/, filename) === null) continue; - return RegExpPrototypeTest(kNodeModulesRE, filename); + return RegExpPrototypeExec(kNodeModulesRE, filename) !== null; } } return false; diff --git a/lib/internal/util/inspect.js b/lib/internal/util/inspect.js index 948e2f354ac96d..25c4874e227dad 100644 --- a/lib/internal/util/inspect.js +++ b/lib/internal/util/inspect.js @@ -49,7 +49,8 @@ const { ObjectSetPrototypeOf, ReflectOwnKeys, RegExp, - RegExpPrototypeTest, + RegExpPrototypeExec, + RegExpPrototypeSymbolReplace, RegExpPrototypeToString, SafeStringIterator, SafeMap, @@ -64,7 +65,6 @@ const { StringPrototypePadEnd, StringPrototypePadStart, StringPrototypeRepeat, - StringPrototypeReplace, StringPrototypeSlice, StringPrototypeSplit, StringPrototypeToLowerCase, @@ -150,7 +150,7 @@ let hexSlice; const builtInObjects = new SafeSet( ArrayPrototypeFilter( ObjectGetOwnPropertyNames(globalThis), - (e) => RegExpPrototypeTest(/^[A-Z][a-zA-Z0-9]+$/, e) + (e) => RegExpPrototypeExec(/^[A-Z][a-zA-Z0-9]+$/, e) !== null ) ); @@ -499,10 +499,10 @@ function strEscape(str) { } // Some magic numbers that worked out fine while benchmarking with v8 6.0 - if (str.length < 5000 && !RegExpPrototypeTest(escapeTest, str)) + if (str.length < 5000 && RegExpPrototypeExec(escapeTest, str) === null) return addQuotes(str, singleQuote); if (str.length > 100) { - str = StringPrototypeReplace(str, escapeReplace, escapeFn); + str = RegExpPrototypeSymbolReplace(escapeReplace, str, escapeFn); return addQuotes(str, singleQuote); } @@ -1627,9 +1627,10 @@ function formatArrayBuffer(ctx, value) { } if (hexSlice === undefined) hexSlice = uncurryThis(require('buffer').Buffer.prototype.hexSlice); - let str = StringPrototypeTrim(StringPrototypeReplace( + let str = StringPrototypeTrim(RegExpPrototypeSymbolReplace( + /(.{2})/g, hexSlice(buffer, 0, MathMin(ctx.maxArrayLength, buffer.length)), - /(.{2})/g, '$1 ')); + '$1 ')); const remaining = buffer.length - ctx.maxArrayLength; if (remaining > 0) str += ` ... ${remaining} more byte${remaining > 1 ? 's' : ''}`; @@ -1861,18 +1862,19 @@ function formatProperty(ctx, value, recurseTimes, key, type, desc, return str; } if (typeof key === 'symbol') { - const tmp = StringPrototypeReplace( + const tmp = RegExpPrototypeSymbolReplace( + strEscapeSequencesReplacer, SymbolPrototypeToString(key), - strEscapeSequencesReplacer, escapeFn + escapeFn ); name = `[${ctx.stylize(tmp, 'symbol')}]`; } else if (key === '__proto__') { name = "['__proto__']"; } else if (desc.enumerable === false) { - const tmp = StringPrototypeReplace(key, - strEscapeSequencesReplacer, escapeFn); + const tmp = RegExpPrototypeSymbolReplace( + strEscapeSequencesReplacer, key, escapeFn); name = `[${tmp}]`; - } else if (RegExpPrototypeTest(keyStrRegExp, key)) { + } else if (RegExpPrototypeExec(keyStrRegExp, key) !== null) { name = ctx.stylize(key, 'name'); } else { name = ctx.stylize(strEscape(key), 'string'); diff --git a/lib/internal/validators.js b/lib/internal/validators.js index cda6b6bea0aa76..5cca47129ea56d 100644 --- a/lib/internal/validators.js +++ b/lib/internal/validators.js @@ -9,7 +9,7 @@ const { NumberMAX_SAFE_INTEGER, NumberMIN_SAFE_INTEGER, NumberParseInt, - RegExpPrototypeTest, + RegExpPrototypeExec, String, StringPrototypeToUpperCase, StringPrototypeTrim, @@ -58,7 +58,7 @@ const modeDesc = 'must be a 32-bit unsigned integer or an octal string'; function parseFileMode(value, name, def) { value ??= def; if (typeof value === 'string') { - if (!RegExpPrototypeTest(octalReg, value)) { + if (RegExpPrototypeExec(octalReg, value) === null) { throw new ERR_INVALID_ARG_VALUE(name, value, modeDesc); } value = NumberParseInt(value, 8); diff --git a/lib/internal/worker.js b/lib/internal/worker.js index 0cede10ca4bf9b..8e396195209b83 100644 --- a/lib/internal/worker.js +++ b/lib/internal/worker.js @@ -13,7 +13,7 @@ const { Promise, PromiseResolve, ReflectApply, - RegExpPrototypeTest, + RegExpPrototypeExec, SafeArrayIterator, SafeMap, String, @@ -158,7 +158,7 @@ class Worker extends EventEmitter { filename ); } else if (path.isAbsolute(filename) || - RegExpPrototypeTest(/^\.\.?[\\/]/, filename)) { + RegExpPrototypeExec(/^\.\.?[\\/]/, filename) !== null) { filename = path.resolve(filename); url = pathToFileURL(filename); } else { diff --git a/lib/repl.js b/lib/repl.js index dd274a3bab1881..b81eaef0d06989 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -79,16 +79,14 @@ const { RegExp, RegExpPrototypeExec, RegExpPrototypeSymbolReplace, - RegExpPrototypeTest, + RegExpPrototypeSymbolSplit, SafeSet, SafeWeakSet, StringPrototypeCharAt, StringPrototypeCodePointAt, StringPrototypeEndsWith, StringPrototypeIncludes, - StringPrototypeMatch, StringPrototypeRepeat, - StringPrototypeReplace, StringPrototypeSlice, StringPrototypeSplit, StringPrototypeStartsWith, @@ -423,8 +421,8 @@ function REPLServer(prompt, // to wrap it in parentheses, so that it will be interpreted as // an expression. Note that if the above condition changes, // lib/internal/repl/utils.js needs to be changed to match. - if (RegExpPrototypeTest(/^\s*{/, code) && - !RegExpPrototypeTest(/;\s*$/, code)) { + if (RegExpPrototypeExec(/^\s*{/, code) !== null && + RegExpPrototypeExec(/;\s*$/, code) === null) { code = `(${StringPrototypeTrim(code)})\n`; wrappedCmd = true; } @@ -499,7 +497,7 @@ function REPLServer(prompt, while (true) { try { if (self.replMode === module.exports.REPL_MODE_STRICT && - !RegExpPrototypeTest(/^\s*$/, code)) { + RegExpPrototypeExec(/^\s*$/, code) === null) { // "void 0" keeps the repl from returning "use strict" as the result // value for statements and declarations that don't return a value. code = `'use strict'; void 0;\n${code}`; @@ -683,22 +681,24 @@ function REPLServer(prompt, if (e.stack) { if (e.name === 'SyntaxError') { // Remove stack trace. - e.stack = StringPrototypeReplace(StringPrototypeReplace(e.stack, - /^REPL\d+:\d+\r?\n/, ''), - /^\s+at\s.*\n?/gm, ''); + e.stack = RegExpPrototypeSymbolReplace( + /^\s+at\s.*\n?/gm, + RegExpPrototypeSymbolReplace(/^REPL\d+:\d+\r?\n/, e.stack, ''), + ''); const importErrorStr = 'Cannot use import statement outside a ' + 'module'; if (StringPrototypeIncludes(e.message, importErrorStr)) { e.message = 'Cannot use import statement inside the Node.js ' + 'REPL, alternatively use dynamic import'; - e.stack = StringPrototypeReplace(e.stack, - /SyntaxError:.*\n/, - `SyntaxError: ${e.message}\n`); + e.stack = RegExpPrototypeSymbolReplace( + /SyntaxError:.*\n/, + e.stack, + `SyntaxError: ${e.message}\n`); } } else if (self.replMode === module.exports.REPL_MODE_STRICT) { - e.stack = StringPrototypeReplace( - e.stack, + e.stack = RegExpPrototypeSymbolReplace( /(\s+at\s+REPL\d+:)(\d+)/, + e.stack, (_, pre, line) => pre + (line - 1) ); } @@ -728,13 +728,13 @@ function REPLServer(prompt, if (errStack === '') { errStack = self.writer(e); } - const lines = StringPrototypeSplit(errStack, /(?<=\n)/); + const lines = RegExpPrototypeSymbolSplit(/(?<=\n)/, errStack); let matched = false; errStack = ''; ArrayPrototypeForEach(lines, (line) => { if (!matched && - RegExpPrototypeTest(/^\[?([A-Z][a-z0-9_]*)*Error/, line)) { + RegExpPrototypeExec(/^\[?([A-Z][a-z0-9_]*)*Error/, line) !== null) { errStack += writer.options.breakLength >= line.length ? `Uncaught ${line}` : `Uncaught:\n${line}`; @@ -862,7 +862,7 @@ function REPLServer(prompt, // code alignment const matches = self._sawKeyPress ? - StringPrototypeMatch(cmd, /^\s+/) : null; + RegExpPrototypeExec(/^\s+/, cmd) : null; if (matches) { const prefix = matches[0]; self.write(prefix); @@ -882,7 +882,7 @@ function REPLServer(prompt, if (StringPrototypeCharAt(trimmedCmd, 0) === '.' && StringPrototypeCharAt(trimmedCmd, 1) !== '.' && NumberIsNaN(NumberParseFloat(trimmedCmd))) { - const matches = StringPrototypeMatch(trimmedCmd, /^\.([^\s]+)\s*(.*)$/); + const matches = RegExpPrototypeExec(/^\.([^\s]+)\s*(.*)$/, trimmedCmd); const keyword = matches && matches[1]; const rest = matches && matches[2]; if (ReflectApply(_parseREPLKeyword, self, [keyword, rest]) === true) { @@ -1262,9 +1262,9 @@ function gracefulReaddir(...args) { } } -function completeFSFunctions(line) { +function completeFSFunctions(match) { let baseName = ''; - let filePath = StringPrototypeMatch(line, fsAutoCompleteRE)[1]; + let filePath = match[1]; let fileList = gracefulReaddir(filePath, { withFileTypes: true }); if (!fileList) { @@ -1303,16 +1303,17 @@ function complete(line, callback) { line = StringPrototypeTrimLeft(line); let filter = ''; + + let match; // REPL commands (e.g. ".break"). - if (RegExpPrototypeTest(/^\s*\.(\w*)$/, line)) { + if ((match = RegExpPrototypeExec(/^\s*\.(\w*)$/, line)) !== null) { ArrayPrototypePush(completionGroups, ObjectKeys(this.commands)); - completeOn = StringPrototypeMatch(line, /^\s*\.(\w*)$/)[1]; + completeOn = match[1]; if (completeOn.length) { filter = completeOn; } - } else if (RegExpPrototypeTest(requireRE, line)) { + } else if ((match = RegExpPrototypeExec(requireRE, line)) !== null) { // require('...') - const match = StringPrototypeMatch(line, requireRE); completeOn = match[1]; filter = completeOn; if (this.allowBlockingCompletions) { @@ -1329,7 +1330,7 @@ function complete(line, callback) { group = ['./', '../']; } else if (completeOn === '..') { group = ['../']; - } else if (RegExpPrototypeTest(/^\.\.?\//, completeOn)) { + } else if (RegExpPrototypeExec(/^\.\.?\//, completeOn) !== null) { paths = [process.cwd()]; } else { paths = ArrayPrototypeConcat(module.paths, CJSModule.globalPaths); @@ -1339,7 +1340,7 @@ function complete(line, callback) { dir = path.resolve(dir, subdir); const dirents = gracefulReaddir(dir, { withFileTypes: true }) || []; ArrayPrototypeForEach(dirents, (dirent) => { - if (RegExpPrototypeTest(versionedFileNamesRe, dirent.name) || + if (RegExpPrototypeExec(versionedFileNamesRe, dirent.name) !== null || dirent.name === '.npm') { // Exclude versioned names that 'npm' installs. return; @@ -1369,9 +1370,8 @@ function complete(line, callback) { } ArrayPrototypePush(completionGroups, _builtinLibs, nodeSchemeBuiltinLibs); - } else if (RegExpPrototypeTest(importRE, line)) { + } else if ((match = RegExpPrototypeExec(importRE, line)) !== null) { // import('...') - const match = StringPrototypeMatch(line, importRE); completeOn = match[1]; filter = completeOn; if (this.allowBlockingCompletions) { @@ -1392,7 +1392,7 @@ function complete(line, callback) { group = ['./', '../']; } else if (completeOn === '..') { group = ['../']; - } else if (RegExpPrototypeTest(/^\.\.?\//, completeOn)) { + } else if (RegExpPrototypeExec(/^\.\.?\//, completeOn) !== null) { paths = [process.cwd()]; } else { paths = ArrayPrototypeSlice(module.paths); @@ -1404,7 +1404,7 @@ function complete(line, callback) { const dirents = gracefulReaddir(dir, { withFileTypes: true }) || []; ArrayPrototypeForEach(dirents, (dirent) => { const { name } = dirent; - if (RegExpPrototypeTest(versionedFileNamesRe, name) || + if (RegExpPrototypeExec(versionedFileNamesRe, name) !== null || name === '.npm') { // Exclude versioned names that 'npm' installs. return; @@ -1437,9 +1437,9 @@ function complete(line, callback) { } ArrayPrototypePush(completionGroups, _builtinLibs, nodeSchemeBuiltinLibs); - } else if (RegExpPrototypeTest(fsAutoCompleteRE, line) && + } else if ((match = RegExpPrototypeExec(fsAutoCompleteRE, line)) !== null && this.allowBlockingCompletions) { - ({ 0: completionGroups, 1: completeOn } = completeFSFunctions(line)); + ({ 0: completionGroups, 1: completeOn } = completeFSFunctions(match)); // Handle variable member lookup. // We support simple chained expressions like the following (no function // calls, etc.). That is for simplicity and also because we *eval* that @@ -1451,7 +1451,7 @@ function complete(line, callback) { // foo<|> # all scope vars with filter 'foo' // foo.<|> # completions for 'foo' with filter '' } else if (line.length === 0 || - RegExpPrototypeTest(/\w|\.|\$/, line[line.length - 1])) { + RegExpPrototypeExec(/\w|\.|\$/, line[line.length - 1]) !== null) { const { 0: match } = RegExpPrototypeExec(simpleExpressionRE, line) || ['']; if (line.length !== 0 && !match) { completionGroupsLoaded(); @@ -1640,14 +1640,17 @@ function _memory(cmd) { // I need to know "depth." // Because I can not tell the difference between a } that // closes an object literal and a } that closes a function + const countMatches = (regex, str) => { + let count = 0; + while (RegExpPrototypeExec(regex, str) !== null) count++; + return count; + }; // Going down is { and ( e.g. function() { // going up is } and ) - let dw = StringPrototypeMatch(cmd, /[{(]/g); - let up = StringPrototypeMatch(cmd, /[})]/g); - up = up ? up.length : 0; - dw = dw ? dw.length : 0; - let depth = dw - up; + const dw = countMatches(/[{(]/g, cmd); + const up = countMatches(/[})]/g, cmd); + let depth = dw.length - up.length; if (depth) { (function workIt() { diff --git a/lib/tls.js b/lib/tls.js index 5a248c7d60ccf1..1e5a7298dbf8e7 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -34,13 +34,12 @@ const { ObjectDefineProperty, ObjectFreeze, RegExpPrototypeExec, - RegExpPrototypeTest, + RegExpPrototypeSymbolReplace, StringFromCharCode, StringPrototypeCharCodeAt, StringPrototypeEndsWith, StringPrototypeIncludes, StringPrototypeIndexOf, - StringPrototypeReplace, StringPrototypeSlice, StringPrototypeSplit, StringPrototypeStartsWith, @@ -159,7 +158,7 @@ exports.convertALPNProtocols = function convertALPNProtocols(protocols, out) { }; function unfqdn(host) { - return StringPrototypeReplace(host, /[.]$/, ''); + return RegExpPrototypeSymbolReplace(/[.]$/, host, ''); } // String#toLowerCase() is locale-sensitive so we use @@ -170,7 +169,7 @@ function toLowerCase(c) { function splitHost(host) { return StringPrototypeSplit( - StringPrototypeReplace(unfqdn(host), /[A-Z]/g, toLowerCase), + RegExpPrototypeSymbolReplace(/[A-Z]/g, unfqdn(host), toLowerCase), '.' ); } @@ -193,7 +192,7 @@ function check(hostParts, pattern, wildcards) { // good way to detect their encoding or normalize them so we simply // reject them. Control characters and blanks are rejected as well // because nothing good can come from accepting them. - const isBad = (s) => RegExpPrototypeTest(/[^\u0021-\u007F]/u, s); + const isBad = (s) => RegExpPrototypeExec(/[^\u0021-\u007F]/u, s) !== null; if (ArrayPrototypeSome(patternParts, isBad)) return false; diff --git a/test/parallel/test-errors-systemerror.js b/test/parallel/test-errors-systemerror.js index 2a20588e75b386..38afbd4aa7d164 100644 --- a/test/parallel/test-errors-systemerror.js +++ b/test/parallel/test-errors-systemerror.js @@ -9,7 +9,7 @@ assert.throws( () => { new SystemError(); }, { name: 'TypeError', - message: 'String.prototype.match called on null or undefined' + message: "Cannot read properties of undefined (reading 'syscall')", } ); From 2233567331611452985b88ee656427f5a06ca5ac Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 27 Jun 2022 17:29:10 +0200 Subject: [PATCH 075/175] lib: use null-prototype objects for property descriptors PR-URL: https://github.com/nodejs/node/pull/43473 Reviewed-By: Darshan Sen --- lib/buffer.js | 2 ++ lib/internal/webstreams/readablestream.js | 6 +++--- lib/internal/webstreams/util.js | 2 ++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/buffer.js b/lib/buffer.js index 734a9a6feb81ca..d5fde6debc2f74 100644 --- a/lib/buffer.js +++ b/lib/buffer.js @@ -132,11 +132,13 @@ addBufferPrototypeMethods(Buffer.prototype); const constants = ObjectDefineProperties({}, { MAX_LENGTH: { + __proto__: null, value: kMaxLength, writable: false, enumerable: true }, MAX_STRING_LENGTH: { + __proto__: null, value: kStringMaxLength, writable: false, enumerable: true diff --git a/lib/internal/webstreams/readablestream.js b/lib/internal/webstreams/readablestream.js index b44df2ff77896d..0e7d33e9b71eb3 100644 --- a/lib/internal/webstreams/readablestream.js +++ b/lib/internal/webstreams/readablestream.js @@ -1181,9 +1181,9 @@ function createTeeReadableStream(start, pull, cancel) { setupReadableStreamDefaultControllerFromSource( this, ObjectCreate(null, { - start: { value: start }, - pull: { value: pull }, - cancel: { value: cancel } + start: { __proto__: null, value: start }, + pull: { __proto__: null, value: pull }, + cancel: { __proto__: null, value: cancel } }), 1, () => 1); diff --git a/lib/internal/webstreams/util.js b/lib/internal/webstreams/util.js index 305064ba05a490..524093dc74df66 100644 --- a/lib/internal/webstreams/util.js +++ b/lib/internal/webstreams/util.js @@ -49,11 +49,13 @@ const kType = Symbol('kType'); const AsyncIterator = ObjectCreate(AsyncIteratorPrototype, { next: { + __proto__: null, configurable: true, enumerable: true, writable: true, }, return: { + __proto__: null, configurable: true, enumerable: true, writable: true, From 8d14d6e21547539f327812fe85d5d6961c9731a6 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 27 Jun 2022 18:31:44 +0200 Subject: [PATCH 076/175] tools: fix CJS/ESM toggle on small screens PR-URL: https://github.com/nodejs/node/pull/43506 Co-authored-by: Moshe Atlow Fixes: https://github.com/nodejs/node/issues/43468 Reviewed-By: LiviaMedeiros --- doc/api_assets/style.css | 3 ++ doc/template.html | 1 + tools/doc/allhtml.mjs | 10 +++++- tools/doc/buildCSSForFlavoredJS.mjs | 53 +++++++++++++++++++++++++++++ tools/doc/html.mjs | 13 ++++++- 5 files changed, 78 insertions(+), 2 deletions(-) create mode 100644 tools/doc/buildCSSForFlavoredJS.mjs diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index c567fbed1c23d4..663025e1c27ef5 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -953,6 +953,9 @@ kbd { background-repeat: no-repeat; width: 142px; height: 20px; + display: block; + cursor: pointer; + margin: 0; } .js-flavor-selector:checked { background-image: url(./js-flavor-esm.svg); diff --git a/doc/template.html b/doc/template.html index 86ba3c9581e004..a186e4fbded383 100644 --- a/doc/template.html +++ b/doc/template.html @@ -10,6 +10,7 @@ + __JS_FLAVORED_DYNAMIC_CSS__
      diff --git a/tools/doc/allhtml.mjs b/tools/doc/allhtml.mjs index 50f145034ccb7a..fb0b719ac8a8a9 100644 --- a/tools/doc/allhtml.mjs +++ b/tools/doc/allhtml.mjs @@ -2,6 +2,7 @@ // of the generated html files. import fs from 'fs'; +import buildCSSForFlavoredJS from './buildCSSForFlavoredJS.mjs'; const source = new URL('../../out/doc/api/', import.meta.url); @@ -90,7 +91,14 @@ all = all.slice(0, tocStart.index + tocStart[0].length) + // Replace apicontent with the concatenated set of apicontents from each source. const apiStart = /<\w+ id="apicontent">\s*/.exec(all); const apiEnd = all.lastIndexOf(''); -all = all.slice(0, apiStart.index + apiStart[0].length) + +all = all.slice(0, apiStart.index + apiStart[0].length) + .replace( + '\n', + buildCSSForFlavoredJS(new Set(Array.from( + apicontent.matchAll(/(?<=
      )/g),
      +        (x) => Number(x[0])
      +      ))) + '\n'
      +    ) +
         apicontent +
         all.slice(apiEnd);
       
      diff --git a/tools/doc/buildCSSForFlavoredJS.mjs b/tools/doc/buildCSSForFlavoredJS.mjs
      new file mode 100644
      index 00000000000000..6b355ab1760a64
      --- /dev/null
      +++ b/tools/doc/buildCSSForFlavoredJS.mjs
      @@ -0,0 +1,53 @@
      +const CHAR_THRESHOLD = 68; // Around 68 characters, we have to take into
      +//                            account the left column that appears on screen
      +//                            wider than 1024px.
      +
      +const ESTIMATED_CHAR_WIDTH = 8; // If the root element font-size is 16px (default value), 1ch is 7.8025px.
      +const TOGGLE_WIDTH = 142; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L954
      +
      +const PRE_MARGIN_LEFT = 16; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L516
      +const PRE_MARGIN_RIGHT = 16; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L516
      +const PRE_PADDING_LEFT = 16; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L513
      +const PRE_PADDING_RIGHT = 16; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L513
      +
      +
      +const COLUMN_RIGHT_MARGIN_LEFT_LARGE_SCREEN = 234; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L653
      +const COLUMN_RIGHT_MARGIN_LEFT_SMALL_SCREEN = 0; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L906
      +const COLUMN_RIGHT_MARGIN_RIGHT_LARGE_SCREEN = 0;
      +const COLUMN_RIGHT_MARGIN_RIGHT_SMALL_SCREEN = 0;
      +const COLUMN_RIGHT_PADDING_LEFT_LARGE_SCREEN = 24; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L655
      +const COLUMN_RIGHT_PADDING_LEFT_SMALL_SCREEN = 8; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L907
      +const COLUMN_RIGHT_PADDING_RIGHT_LARGE_SCREEN = 32; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L654
      +const COLUMN_RIGHT_PADDING_RIGHT_SMALL_SCREEN = 8; // https://github.com/nodejs/node/blob/dbd938549b16718f2e4cc2809746b8c44a191b1d/doc/api_assets/style.css#L908
      +
      +const getMarginLeft = (charCount) =>
      +  (charCount > CHAR_THRESHOLD ?
      +    COLUMN_RIGHT_MARGIN_LEFT_LARGE_SCREEN :
      +    COLUMN_RIGHT_MARGIN_LEFT_SMALL_SCREEN) + PRE_MARGIN_LEFT;
      +const getPaddingLeft = (charCount) =>
      +  (charCount > CHAR_THRESHOLD ?
      +    COLUMN_RIGHT_PADDING_LEFT_LARGE_SCREEN :
      +    COLUMN_RIGHT_PADDING_LEFT_SMALL_SCREEN) + PRE_PADDING_LEFT;
      +const getPaddingRight = (charCount) =>
      +  (charCount > CHAR_THRESHOLD ?
      +    COLUMN_RIGHT_PADDING_RIGHT_LARGE_SCREEN :
      +    COLUMN_RIGHT_PADDING_RIGHT_SMALL_SCREEN) + PRE_PADDING_RIGHT;
      +const getMarginRight = (charCount) =>
      +  (charCount > CHAR_THRESHOLD ?
      +    COLUMN_RIGHT_MARGIN_RIGHT_LARGE_SCREEN :
      +    COLUMN_RIGHT_MARGIN_RIGHT_SMALL_SCREEN) + PRE_MARGIN_RIGHT;
      +
      +
      +export default function buildCSSForFlavoredJS(dynamicSizes) {
      +  if (dynamicSizes == null || dynamicSizes.length === 0) return '';
      +
      +  return ``;
      +}
      diff --git a/tools/doc/html.mjs b/tools/doc/html.mjs
      index 1caffa7158c950..373f5487a31d4b 100644
      --- a/tools/doc/html.mjs
      +++ b/tools/doc/html.mjs
      @@ -33,6 +33,9 @@ import { visit } from 'unist-util-visit';
       
       import * as common from './common.mjs';
       import * as typeParser from './type-parser.mjs';
      +import buildCSSForFlavoredJS from './buildCSSForFlavoredJS.mjs';
      +
      +const dynamicSizes = Object.create(null);
       
       const { highlight, getLanguage } = highlightJs;
       
      @@ -90,6 +93,8 @@ function processContent(content) {
       }
       
       export function toHTML({ input, content, filename, nodeVersion, versions }) {
      +  const dynamicSizesForThisFile = dynamicSizes[filename];
      +
         filename = path.basename(filename, '.md');
       
         const id = filename.replace(/\W+/g, '-');
      @@ -99,6 +104,7 @@ export function toHTML({ input, content, filename, nodeVersion, versions }) {
                            .replace('__SECTION__', content.section)
                            .replace(/__VERSION__/g, nodeVersion)
                            .replace(/__TOC__/g, content.toc)
      +                     .replace('__JS_FLAVORED_DYNAMIC_CSS__', buildCSSForFlavoredJS(dynamicSizesForThisFile))
                            .replace(/__TOC_PICKER__/g, tocPicker(id, content))
                            .replace(/__GTOC_PICKER__/g, gtocPicker(id))
                            .replace(/__GTOC__/g, gtocHTML.replace(
      @@ -228,14 +234,19 @@ export function preprocessElements({ filename }) {
                 const previousNode = parent.children[index - 1] || {};
                 const nextNode = parent.children[index + 1] || {};
       
      +          const charCountFirstTwoLines = Math.max(...node.value.split('\n', 2).map((str) => str.length));
      +
                 if (!isJSFlavorSnippet(previousNode) &&
                     isJSFlavorSnippet(nextNode) &&
                     nextNode.lang !== node.lang) {
                   // Saving the highlight code as value to be added in the next node.
                   node.value = highlighted;
      +            node.charCountFirstTwoLines = charCountFirstTwoLines;
                 } else if (isJSFlavorSnippet(previousNode) &&
                            previousNode.lang !== node.lang) {
      -            node.value = '
      ' +
      +            const actualCharCount = Math.max(charCountFirstTwoLines, previousNode.charCountFirstTwoLines);
      +            (dynamicSizes[filename] ??= new Set()).add(actualCharCount);
      +            node.value = `
      ` +
                     '
      Date: Tue, 28 Jun 2022 10:59:24 +0200
      Subject: [PATCH 077/175] stream: pass error on legacy destroy
      
      PR-URL: https://github.com/nodejs/node/pull/43519
      Reviewed-By: Robert Nagy 
      Reviewed-By: Luigi Pinca 
      Reviewed-By: Benjamin Gruenbaum 
      Reviewed-By: Matteo Collina 
      Reviewed-By: Minwoo Jung 
      Reviewed-By: James M Snell 
      ---
       lib/internal/streams/destroy.js       |  2 +-
       test/parallel/test-stream-pipeline.js | 30 +++++++++++++++++++++++++++
       2 files changed, 31 insertions(+), 1 deletion(-)
      
      diff --git a/lib/internal/streams/destroy.js b/lib/internal/streams/destroy.js
      index 10f5471e21d3eb..5c352135dc3012 100644
      --- a/lib/internal/streams/destroy.js
      +++ b/lib/internal/streams/destroy.js
      @@ -319,7 +319,7 @@ function destroyer(stream, err) {
           // TODO: Don't lose err?
           stream.close();
         } else if (err) {
      -    process.nextTick(emitErrorCloseLegacy, stream);
      +    process.nextTick(emitErrorCloseLegacy, stream, err);
         } else {
           process.nextTick(emitCloseLegacy, stream);
         }
      diff --git a/test/parallel/test-stream-pipeline.js b/test/parallel/test-stream-pipeline.js
      index eecf836b5bb77f..529b18386e25a6 100644
      --- a/test/parallel/test-stream-pipeline.js
      +++ b/test/parallel/test-stream-pipeline.js
      @@ -1526,3 +1526,33 @@ const tsp = require('timers/promises');
           assert.strictEqual(val, null);
         }));
       }
      +
      +{
      +  // Mimics a legacy stream without the .destroy method
      +  class LegacyWritable extends Stream {
      +    write(chunk, encoding, callback) {
      +      callback();
      +    }
      +  }
      +
      +  const writable = new LegacyWritable();
      +  writable.on('error', common.mustCall((err) => {
      +    assert.deepStrictEqual(err, new Error('stop'));
      +  }));
      +
      +  pipeline(
      +    Readable.from({
      +      [Symbol.asyncIterator]() {
      +        return {
      +          next() {
      +            return Promise.reject(new Error('stop'));
      +          }
      +        };
      +      }
      +    }),
      +    writable,
      +    common.mustCall((err) => {
      +      assert.deepStrictEqual(err, new Error('stop'));
      +    })
      +  );
      +}
      
      From e9574f3009a6d9ea23b4de30ff4e8fceeed33a76 Mon Sep 17 00:00:00 2001
      From: Kohei Ueno 
      Date: Tue, 28 Jun 2022 19:10:50 +0900
      Subject: [PATCH 078/175] readline: fix to not access a property on an
       undefined value
      MIME-Version: 1.0
      Content-Type: text/plain; charset=UTF-8
      Content-Transfer-Encoding: 8bit
      
      PR-URL: https://github.com/nodejs/node/pull/43543
      Reviewed-By: Antoine du Hamel 
      Reviewed-By: Tobias Nießen 
      Reviewed-By: Yongsheng Zhang 
      Reviewed-By: James M Snell 
      ---
       lib/internal/readline/utils.js                |  3 +++
       .../test-repl-tab-complete-on-editor-mode.js  | 21 +++++++++++++++++++
       2 files changed, 24 insertions(+)
       create mode 100644 test/parallel/test-repl-tab-complete-on-editor-mode.js
      
      diff --git a/lib/internal/readline/utils.js b/lib/internal/readline/utils.js
      index 7d1d93b3a98913..83609b71fb5974 100644
      --- a/lib/internal/readline/utils.js
      +++ b/lib/internal/readline/utils.js
      @@ -365,6 +365,9 @@ function* emitKeys(stream) {
       
       // This runs in O(n log n).
       function commonPrefix(strings) {
      +  if (strings.length === 0) {
      +    return '';
      +  }
         if (strings.length === 1) {
           return strings[0];
         }
      diff --git a/test/parallel/test-repl-tab-complete-on-editor-mode.js b/test/parallel/test-repl-tab-complete-on-editor-mode.js
      new file mode 100644
      index 00000000000000..610724de2a2844
      --- /dev/null
      +++ b/test/parallel/test-repl-tab-complete-on-editor-mode.js
      @@ -0,0 +1,21 @@
      +'use strict';
      +
      +require('../common');
      +const ArrayStream = require('../common/arraystream');
      +const repl = require('repl');
      +
      +const stream = new ArrayStream();
      +const replServer = repl.start({
      +  input: stream,
      +  output: stream,
      +  terminal: true,
      +});
      +
      +// Editor mode
      +replServer.write('.editor\n');
      +
      +// Regression test for https://github.com/nodejs/node/issues/43528
      +replServer.write('a');
      +replServer.write(null, { name: 'tab' }); // Should not throw
      +
      +replServer.close();
      
      From 7c6f5483823797af4f29070258becf58b2612c50 Mon Sep 17 00:00:00 2001
      From: F3n67u 
      Date: Tue, 28 Jun 2022 10:42:56 +0800
      Subject: [PATCH 079/175] test: mark test-http-server-request-timeouts-mixed
       flaky on macOS
      
      PR-URL: https://github.com/nodejs/node/pull/43597
      Refs: https://github.com/nodejs/node/issues/43465
      Reviewed-By: Paolo Insogna 
      Reviewed-By: LiviaMedeiros 
      ---
       test/parallel/parallel.status | 2 ++
       1 file changed, 2 insertions(+)
      
      diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status
      index 3aa8d4592d62af..bdc471f013d3c0 100644
      --- a/test/parallel/parallel.status
      +++ b/test/parallel/parallel.status
      @@ -26,6 +26,8 @@ test-domain-error-types: PASS,FLAKY
       # https://github.com/nodejs/node/issues/42741
       test-http-server-headers-timeout-keepalive: PASS,FLAKY
       test-http-server-request-timeout-keepalive: PASS,FLAKY
      +# https://github.com/nodejs/node/issues/43465
      +test-http-server-request-timeouts-mixed: PASS,FLAKY
       
       [$arch==arm || $arch==arm64]
       # https://github.com/nodejs/node/pull/31178
      
      From 705e85e736bda41222d3ed728b06915655067f36 Mon Sep 17 00:00:00 2001
      From: italo jose 
      Date: Wed, 1 Jun 2022 11:52:35 -0300
      Subject: [PATCH 080/175] test: improve code coverage for SourceMap class
      
      Cover malformed mappings scenario.
      
      PR-URL: https://github.com/nodejs/node/pull/43285
      Reviewed-By: Ben Coe 
      Reviewed-By: Luigi Pinca 
      Reviewed-By: James M Snell 
      ---
       test/parallel/test-source-map-api.js | 14 ++++++++++++++
       1 file changed, 14 insertions(+)
      
      diff --git a/test/parallel/test-source-map-api.js b/test/parallel/test-source-map-api.js
      index b8ff59e365e2e9..f66a9af94784c7 100644
      --- a/test/parallel/test-source-map-api.js
      +++ b/test/parallel/test-source-map-api.js
      @@ -99,6 +99,20 @@ const { readFileSync } = require('fs');
         assert.notStrictEqual(payload.sources, sourceMap.payload.sources);
       }
       
      +// findEntry() must return empty object instead error when
      +// receive a malformed mappings.
      +{
      +  const payload = JSON.parse(readFileSync(
      +    require.resolve('../fixtures/source-map/disk.map'), 'utf8'
      +  ));
      +  payload.mappings = ';;;;;;;;;';
      +
      +  const sourceMap = new SourceMap(payload);
      +  const result = sourceMap.findEntry(0, 5);
      +  assert.strictEqual(typeof result, 'object');
      +  assert.strictEqual(Object.keys(result).length, 0);
      +}
      +
       // Test various known decodings to ensure decodeVLQ works correctly.
       {
         function makeMinimalMap(column) {
      
      From dabccef69fc16c8ffe0d4a42e3d52281476a370d Mon Sep 17 00:00:00 2001
      From: Feng Yu 
      Date: Wed, 29 Jun 2022 01:06:48 +0800
      Subject: [PATCH 081/175] test: mark flaky tests on smartos
      MIME-Version: 1.0
      Content-Type: text/plain; charset=UTF-8
      Content-Transfer-Encoding: 8bit
      
      PR-URL: https://github.com/nodejs/node/pull/43596
      Refs: https://github.com/nodejs/node/issues/43457
      Reviewed-By: Tobias Nießen 
      Reviewed-By: Filip Skokan 
      Reviewed-By: Ben Noordhuis 
      Reviewed-By: Richard Lau 
      Reviewed-By: Darshan Sen 
      ---
       test/abort/abort.status             | 10 ++++++++++
       test/async-hooks/async-hooks.status |  2 ++
       test/node-api/node-api.status       |  5 +++++
       test/parallel/parallel.status       | 13 +++++++++++++
       test/pummel/pummel.status           |  2 ++
       test/report/report.status           | 11 +++++++++++
       6 files changed, 43 insertions(+)
       create mode 100644 test/report/report.status
      
      diff --git a/test/abort/abort.status b/test/abort/abort.status
      index e56c24ff433d63..24e6cbb73192e4 100644
      --- a/test/abort/abort.status
      +++ b/test/abort/abort.status
      @@ -9,3 +9,13 @@ prefix abort
       [$system==ibmi]
       # https://github.com/nodejs/node/issues/34410
       test-addon-register-signal-handler: PASS,FLAKY
      +
      +[$system==solaris] # Also applies to SmartOS
      +# https://github.com/nodejs/node/issues/43457
      +test-abort-fatal-error: PASS, FLAKY
      +test-abort-uncaught-exception: PASS, FLAKY
      +test-addon-register-signal-handler: PASS, FLAKY
      +test-process-abort-exitcode: PASS, FLAKY
      +test-signal-handler: PASS, FLAKY
      +test-worker-abort-uncaught-exception: PASS, FLAKY
      +test-zlib-invalid-internals-usage: PASS, FLAKY
      diff --git a/test/async-hooks/async-hooks.status b/test/async-hooks/async-hooks.status
      index 7f36d5a78a6e2b..673883e4fe3d4d 100644
      --- a/test/async-hooks/async-hooks.status
      +++ b/test/async-hooks/async-hooks.status
      @@ -15,6 +15,8 @@ prefix async-hooks
       [$arch==arm || $arch==arm64]
       
       [$system==solaris] # Also applies to SmartOS
      +# https://github.com/nodejs/node/issues/43457
      +test-callback-error: PASS, FLAKY
       
       [$system==freebsd]
       
      diff --git a/test/node-api/node-api.status b/test/node-api/node-api.status
      index 9395bfe1f6bbe0..b8e18f95623a20 100644
      --- a/test/node-api/node-api.status
      +++ b/test/node-api/node-api.status
      @@ -7,3 +7,8 @@ prefix node-api
       [true] # This section applies to all platforms
       
       [$system==win32]
      +
      +[$system==solaris] # Also applies to SmartOS
      +# https://github.com/nodejs/node/issues/43457
      +test_fatal/test_threads: PASS,FLAKY
      +test_fatal/test_threads_report: PASS,FLAKY
      diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status
      index bdc471f013d3c0..ab9dca78f0513c 100644
      --- a/test/parallel/parallel.status
      +++ b/test/parallel/parallel.status
      @@ -41,6 +41,19 @@ test-net-socket-ready-without-cb: SKIP
       test-tcp-wrap-listen: SKIP
       # https://github.com/nodejs/node/issues/43446
       test-net-connect-reset-until-connected: PASS, FLAKY
      +# https://github.com/nodejs/node/issues/43457
      +test-domain-no-error-handler-abort-on-uncaught-0: PASS, FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-1: PASS,FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-2: PASS,FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-3: PASS,FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-4: PASS,FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-5: PASS, FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-6: PASS, FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-7: PASS, FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-8: PASS, FLAKY
      +test-domain-no-error-handler-abort-on-uncaught-9: PASS, FLAKY
      +test-domain-throw-error-then-throw-from-uncaught-exception-handler: PASS, FLAKY
      +test-domain-with-abort-on-uncaught-exception: PASS, FLAKY
       
       [$system==freebsd]
       # https://github.com/nodejs/node/issues/31727
      diff --git a/test/pummel/pummel.status b/test/pummel/pummel.status
      index 73ed079f66a5f8..143450986e46c4 100644
      --- a/test/pummel/pummel.status
      +++ b/test/pummel/pummel.status
      @@ -19,6 +19,8 @@ test-crypto-timing-safe-equal-benchmarks: PASS,FLAKY
       [$arch==arm || $arch==arm64]
       
       [$system==solaris] # Also applies to SmartOS
      +# https://github.com/nodejs/node/issues/43457
      +test-heapsnapshot-near-heap-limit: PASS,FLAKY
       
       [$system==freebsd]
       
      diff --git a/test/report/report.status b/test/report/report.status
      new file mode 100644
      index 00000000000000..7ef99b5c8ed145
      --- /dev/null
      +++ b/test/report/report.status
      @@ -0,0 +1,11 @@
      +prefix report
      +
      +# To mark a test as flaky, list the test name in the appropriate section
      +# below, without ".js", followed by ": PASS,FLAKY". Example:
      +# sample-test                        : PASS,FLAKY
      +
      +[true] # This section applies to all platforms
      +
      +[$system==solaris] # Also applies to SmartOS
      +# https://github.com/nodejs/node/issues/43457
      +test-report-fatal-error: PASS, FLAKY
      
      From d90a6f9bdafbf11a0f3f65fb425b3251c60ef0de Mon Sep 17 00:00:00 2001
      From: Paolo Insogna 
      Date: Tue, 28 Jun 2022 15:28:59 +0200
      Subject: [PATCH 082/175] benchmark: fix fork detection
      
      PR-URL: https://github.com/nodejs/node/pull/43601
      Reviewed-By: Antoine du Hamel 
      Reviewed-By: Matteo Collina 
      ---
       benchmark/common.js | 2 +-
       1 file changed, 1 insertion(+), 1 deletion(-)
      
      diff --git a/benchmark/common.js b/benchmark/common.js
      index 080cfc71785eec..e582dc8bdc219f 100644
      --- a/benchmark/common.js
      +++ b/benchmark/common.js
      @@ -287,7 +287,7 @@ function formatResult(data) {
       }
       
       function sendResult(data) {
      -  if (process.send) {
      +  if (process.send && Object.hasOwn(process.env, 'NODE_RUN_BENCHMARK_FN')) {
           // If forked, report by process send
           process.send(data, () => {
             // If, for any reason, the process is unable to self close within
      
      From 4bda6e02a3eac23e258ff9ea6016473de120b584 Mon Sep 17 00:00:00 2001
      From: Moshe Atlow 
      Date: Tue, 14 Jun 2022 10:54:50 +0300
      Subject: [PATCH 083/175] test_runner: expose `describe` and `it`
      
      PR-URL: https://github.com/nodejs/node/pull/43420
      Refs: https://github.com/nodejs/node/issues/43415
      Reviewed-By: Benjamin Gruenbaum 
      ---
       doc/api/test.md                          |  95 ++++-
       lib/internal/main/test_runner.js         |   2 +-
       lib/internal/test_runner/harness.js      |  87 ++--
       lib/internal/test_runner/test.js         |  88 ++--
       lib/internal/test_runner/utils.js        |  43 +-
       lib/test.js                              |   4 +-
       test/message/test_runner_desctibe_it.js  | 303 +++++++++++++
       test/message/test_runner_desctibe_it.out | 514 +++++++++++++++++++++++
       8 files changed, 1072 insertions(+), 64 deletions(-)
       create mode 100644 test/message/test_runner_desctibe_it.js
       create mode 100644 test/message/test_runner_desctibe_it.out
      
      diff --git a/doc/api/test.md b/doc/api/test.md
      index 52620899191142..b1068411ec600f 100644
      --- a/doc/api/test.md
      +++ b/doc/api/test.md
      @@ -148,6 +148,42 @@ test('skip() method with message', (t) => {
       });
       ```
       
      +## `describe`/`it` syntax
      +
      +Running tests can also be done using `describe` to declare a suite
      +and `it` to declare a test.
      +A suite is used to organize and group related tests together.
      +`it` is an alias for `test`, except there is no test context passed,
      +since nesting is done using suites, as demonstrated in this example
      +
      +```js
      +describe('A thing', () => {
      +  it('should work', () => {
      +    assert.strictEqual(1, 1);
      +  });
      +
      +  it('should be ok', () => {
      +    assert.strictEqual(2, 2);
      +  });
      +
      +  describe('a nested thing', () => {
      +    it('should work', () => {
      +      assert.strictEqual(3, 3);
      +    });
      +  });
      +});
      +```
      +
      +`describe` and `it` are imported from the `node:test` module
      +
      +```mjs
      +import { describe, it } from 'node:test';
      +```
      +
      +```cjs
      +const { describe, it } = require('node:test');
      +```
      +
       ### `only` tests
       
       If Node.js is started with the [`--test-only`][] command-line option, it is
      @@ -303,7 +339,7 @@ added: v18.0.0
         * `todo` {boolean|string} If truthy, the test marked as `TODO`. If a string
           is provided, that string is displayed in the test results as the reason why
           the test is `TODO`. **Default:** `false`.
      -* `fn` {Function|AsyncFunction} The function under test. This first argument
      +* `fn` {Function|AsyncFunction} The function under test. The first argument
         to this function is a [`TestContext`][] object. If the test uses callbacks,
         the callback function is passed as the second argument. **Default:** A no-op
         function.
      @@ -335,6 +371,59 @@ test('top level test', async (t) => {
       });
       ```
       
      +## `describe([name][, options][, fn])`
      +
      +* `name` {string} The name of the suite, which is displayed when reporting test
      +  results. **Default:** The `name` property of `fn`, or `''` if `fn`
      +  does not have a name.
      +* `options` {Object} Configuration options for the suite.
      +  supports the same options as `test([name][, options][, fn])`
      +* `fn` {Function} The function under suite.
      +  a synchronous function declaring all subtests and subsuites.
      +  **Default:** A no-op function.
      +* Returns: `undefined`.
      +
      +The `describe()` function imported from the `node:test` module. Each
      +invocation of this function results in the creation of a Subtest
      +and a test point in the TAP output.
      +After invocation of top level `describe` functions,
      +all top level tests and suites will execute
      +
      +## `describe.skip([name][, options][, fn])`
      +
      +Shorthand for skipping a suite, same as [`describe([name], { skip: true }[, fn])`][describe options].
      +
      +## `describe.todo([name][, options][, fn])`
      +
      +Shorthand for marking a suite as `TODO`, same as
      +[`describe([name], { todo: true }[, fn])`][describe options].
      +
      +## `it([name][, options][, fn])`
      +
      +* `name` {string} The name of the test, which is displayed when reporting test
      +  results. **Default:** The `name` property of `fn`, or `''` if `fn`
      +  does not have a name.
      +* `options` {Object} Configuration options for the suite.
      +  supports the same options as `test([name][, options][, fn])`.
      +* `fn` {Function|AsyncFunction} The function under test.
      +  If the test uses callbacks, the callback function is passed as an argument.
      +  **Default:** A no-op function.
      +* Returns: `undefined`.
      +
      +The `it()` function is the value imported from the `node:test` module.
      +Each invocation of this function results in the creation of a test point in the
      +TAP output.
      +
      +## `it.skip([name][, options][, fn])`
      +
      +Shorthand for skipping a test,
      +same as [`it([name], { skip: true }[, fn])`][it options].
      +
      +## `it.todo([name][, options][, fn])`
      +
      +Shorthand for marking a test as `TODO`,
      +same as [`it([name], { todo: true }[, fn])`][it options].
      +
       ## Class: `TestContext`
       
       
       
       
      +#### `foreground-scripts`
      +
      +* Default: false
      +* Type: Boolean
      +
      +Run all build scripts (ie, `preinstall`, `install`, and `postinstall`)
      +scripts for installed packages in the foreground process, sharing standard
      +input, output, and error with the main npm process.
      +
      +Note that this will generally make installs run slower, and be much noisier,
      +but can be useful for debugging.
      +
      +
      +
      +
       #### `script-shell`
       
       * Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
      diff --git a/deps/npm/docs/output/commands/npm-ls.html b/deps/npm/docs/output/commands/npm-ls.html
      index 4363442ef3dab0..07deb2d490fc1f 100644
      --- a/deps/npm/docs/output/commands/npm-ls.html
      +++ b/deps/npm/docs/output/commands/npm-ls.html
      @@ -166,7 +166,7 @@ 

      Description

      the results to only the paths to the packages named. Note that nested packages will also show the paths to the specified packages. For example, running npm ls promzard in npm's source tree will show:

      -
      npm@8.13.1 /path/to/npm
      +
      npm@8.13.2 /path/to/npm
       └─┬ init-package-json@0.0.4
         └── promzard@0.1.5
       
      diff --git a/deps/npm/docs/output/commands/npm-run-script.html b/deps/npm/docs/output/commands/npm-run-script.html index d74acb05644c68..5b1150cf4b9b3f 100644 --- a/deps/npm/docs/output/commands/npm-run-script.html +++ b/deps/npm/docs/output/commands/npm-run-script.html @@ -142,7 +142,7 @@

      npm-run-script

      Table of contents

      - +

      Synopsis

      @@ -319,6 +319,18 @@

      ignore-scripts

      will not run any pre- or post-scripts.

      +

      foreground-scripts

      +
        +
      • Default: false
      • +
      • Type: Boolean
      • +
      +

      Run all build scripts (ie, preinstall, install, and postinstall) +scripts for installed packages in the foreground process, sharing standard +input, output, and error with the main npm process.

      +

      Note that this will generally make installs run slower, and be much noisier, +but can be useful for debugging.

      + +

      script-shell

      • Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
      • diff --git a/deps/npm/docs/output/commands/npm.html b/deps/npm/docs/output/commands/npm.html index c7b7dd5dc7a046..9a0446af631e4f 100644 --- a/deps/npm/docs/output/commands/npm.html +++ b/deps/npm/docs/output/commands/npm.html @@ -149,7 +149,7 @@

        Table of contents

        Version

        -

        8.13.1

        +

        8.13.2

        Description

        npm is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency diff --git a/deps/npm/lib/commands/run-script.js b/deps/npm/lib/commands/run-script.js index a1591c7900b446..8507dbe79a90e8 100644 --- a/deps/npm/lib/commands/run-script.js +++ b/deps/npm/lib/commands/run-script.js @@ -35,6 +35,7 @@ class RunScript extends BaseCommand { 'include-workspace-root', 'if-present', 'ignore-scripts', + 'foreground-scripts', 'script-shell', ] diff --git a/deps/npm/man/man1/npm-ls.1 b/deps/npm/man/man1/npm-ls.1 index a24c524909f9ff..5a78c46a6e6da4 100644 --- a/deps/npm/man/man1/npm-ls.1 +++ b/deps/npm/man/man1/npm-ls.1 @@ -26,7 +26,7 @@ example, running \fBnpm ls promzard\fP in npm's source tree will show: .P .RS 2 .nf -npm@8\.13\.1 /path/to/npm +npm@8\.13\.2 /path/to/npm └─┬ init\-package\-json@0\.0\.4 └── promzard@0\.1\.5 .fi diff --git a/deps/npm/man/man1/npm-run-script.1 b/deps/npm/man/man1/npm-run-script.1 index c9dc22f4eb6bd4..c9c2925ff121ed 100644 --- a/deps/npm/man/man1/npm-run-script.1 +++ b/deps/npm/man/man1/npm-run-script.1 @@ -246,6 +246,21 @@ Note that commands explicitly intended to run a particular script, such as \fBnpm start\fP, \fBnpm stop\fP, \fBnpm restart\fP, \fBnpm test\fP, and \fBnpm run\-script\fP will still run their intended script if \fBignore\-scripts\fP is set, but they will \fInot\fR run any pre\- or post\-scripts\. +.SS \fBforeground\-scripts\fP +.RS 0 +.IP \(bu 2 +Default: false +.IP \(bu 2 +Type: Boolean + +.RE +.P +Run all build scripts (ie, \fBpreinstall\fP, \fBinstall\fP, and \fBpostinstall\fP) +scripts for installed packages in the foreground process, sharing standard +input, output, and error with the main npm process\. +.P +Note that this will generally make installs run slower, and be much noisier, +but can be useful for debugging\. .SS \fBscript\-shell\fP .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man1/npm.1 b/deps/npm/man/man1/npm.1 index a26c713a11000f..1e2c15ebae15a8 100644 --- a/deps/npm/man/man1/npm.1 +++ b/deps/npm/man/man1/npm.1 @@ -4,7 +4,7 @@ .SS Synopsis .SS Version .P -8\.13\.1 +8\.13\.2 .SS Description .P npm is the package manager for the Node JavaScript platform\. It puts diff --git a/deps/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js b/deps/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js index d30838e7384f62..1f479a90dd999f 100644 --- a/deps/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +++ b/deps/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js @@ -166,8 +166,8 @@ class Advisory { // we can try to be a *little* smarter up front by doing x-y for all // contiguous version sets in the list const ranges = [] - this.versions = semver.sort(this.versions) - this.vulnerableVersions = semver.sort(this.vulnerableVersions) + this.versions = semver.sort(this.versions, semverOpt) + this.vulnerableVersions = semver.sort(this.vulnerableVersions, semverOpt) for (let v = 0, vulnVer = 0; v < this.versions.length; v++) { // figure out the vulnerable subrange const vr = [this.versions[v]] diff --git a/deps/npm/node_modules/@npmcli/metavuln-calculator/package.json b/deps/npm/node_modules/@npmcli/metavuln-calculator/package.json index 2c04e0fd420bfd..2e7209ffc7da0e 100644 --- a/deps/npm/node_modules/@npmcli/metavuln-calculator/package.json +++ b/deps/npm/node_modules/@npmcli/metavuln-calculator/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/metavuln-calculator", - "version": "3.1.0", + "version": "3.1.1", "main": "lib/index.js", "files": [ "bin/", @@ -33,7 +33,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.2.0", + "@npmcli/template-oss": "3.5.0", "require-inject": "^1.4.4", "tap": "^16.0.1" }, @@ -48,6 +48,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.2.0" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/escape.js b/deps/npm/node_modules/@npmcli/run-script/lib/escape.js index 5254be24bf7ab8..3c574371bcf94e 100644 --- a/deps/npm/node_modules/@npmcli/run-script/lib/escape.js +++ b/deps/npm/node_modules/@npmcli/run-script/lib/escape.js @@ -65,7 +65,13 @@ const sh = (input) => { return result } +// disabling the no-control-regex rule for this line as we very specifically _do_ want to +// replace those characters if they somehow exist at this point, which is highly unlikely +// eslint-disable-next-line no-control-regex +const filename = (input) => input.replace(/[<>:"/\\|?*\x00-\x31]/g, '') + module.exports = { cmd, sh, + filename, } diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js b/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js index 660588e3ee9aa6..47f73463011be0 100644 --- a/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +++ b/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js @@ -30,6 +30,7 @@ const makeSpawnArgs = options => { npm_config_node_gyp, }) + const fileName = escape.filename(`${event}-${Date.now()}`) let scriptFile let script = '' @@ -61,7 +62,7 @@ const makeSpawnArgs = options => { const doubleEscape = pathToInitial.endsWith('.cmd') || pathToInitial.endsWith('.bat') - scriptFile = resolve(tmpdir(), `${event}-${Date.now()}.cmd`) + scriptFile = resolve(tmpdir(), `${fileName}.cmd`) script += '@echo off\n' script += cmd if (args.length) { @@ -71,7 +72,7 @@ const makeSpawnArgs = options => { const shebang = isAbsolute(scriptShell) ? `#!${scriptShell}` : `#!/usr/bin/env ${scriptShell}` - scriptFile = resolve(tmpdir(), `${event}-${Date.now()}.sh`) + scriptFile = resolve(tmpdir(), `${fileName}.sh`) script += `${shebang}\n` script += cmd if (args.length) { diff --git a/deps/npm/node_modules/@npmcli/run-script/package.json b/deps/npm/node_modules/@npmcli/run-script/package.json index ef8b43f772de1b..1ce162dd8d19a5 100644 --- a/deps/npm/node_modules/@npmcli/run-script/package.json +++ b/deps/npm/node_modules/@npmcli/run-script/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/run-script", - "version": "4.1.3", + "version": "4.1.5", "description": "Run a lifecycle script for a package (descendant of npm-lifecycle)", "author": "GitHub Inc.", "license": "ISC", @@ -17,10 +17,6 @@ "posttest": "npm run lint", "template-oss-apply": "template-oss-apply --force" }, - "tap": { - "check-coverage": true, - "coverage-map": "map.js" - }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", "@npmcli/template-oss": "3.5.0", @@ -32,7 +28,8 @@ "@npmcli/node-gyp": "^2.0.0", "@npmcli/promise-spawn": "^3.0.0", "node-gyp": "^9.0.0", - "read-package-json-fast": "^2.0.3" + "read-package-json-fast": "^2.0.3", + "which": "^2.0.2" }, "files": [ "bin/", diff --git a/deps/npm/node_modules/npm-packlist/lib/index.js b/deps/npm/node_modules/npm-packlist/lib/index.js index e4a2e76c545f60..bd72329f027e61 100644 --- a/deps/npm/node_modules/npm-packlist/lib/index.js +++ b/deps/npm/node_modules/npm-packlist/lib/index.js @@ -34,10 +34,13 @@ const glob = require('glob') const globify = pattern => pattern.split('\\').join('/') const readOutOfTreeIgnoreFiles = (root, rel, result = '') => { - for (const file of ['.gitignore', '.npmignore']) { + for (const file of ['.npmignore', '.gitignore']) { try { const ignoreContent = fs.readFileSync(path.join(root, file), { encoding: 'utf8' }) result += ignoreContent + '\n' + // break the loop immediately after concatting, this allows us to prioritize the + // .npmignore and discard the .gitignore if one exists + break } catch (err) { // we ignore ENOENT errors completely because we don't care if the file doesn't exist // but we throw everything else because failing to read a file that does exist is diff --git a/deps/npm/node_modules/npm-packlist/package.json b/deps/npm/node_modules/npm-packlist/package.json index dfa0188b4c437b..4c63caf21e8107 100644 --- a/deps/npm/node_modules/npm-packlist/package.json +++ b/deps/npm/node_modules/npm-packlist/package.json @@ -1,6 +1,6 @@ { "name": "npm-packlist", - "version": "5.1.0", + "version": "5.1.1", "description": "Get a list of the files to add from a folder into an npm package", "directories": { "test": "test" diff --git a/deps/npm/package.json b/deps/npm/package.json index a9d84ab62ce15a..95afa528fa144f 100644 --- a/deps/npm/package.json +++ b/deps/npm/package.json @@ -1,5 +1,5 @@ { - "version": "8.13.1", + "version": "8.13.2", "name": "npm", "description": "a package manager for JavaScript", "workspaces": [ @@ -62,7 +62,7 @@ "@npmcli/fs": "^2.1.0", "@npmcli/map-workspaces": "^2.0.3", "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^4.1.3", + "@npmcli/run-script": "^4.1.5", "abbrev": "~1.1.1", "archy": "~1.0.0", "cacache": "^16.1.1", diff --git a/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs b/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs index 13a3b06fe33d65..57dd6126660cdc 100644 --- a/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/load-all-commands.js.test.cjs @@ -746,7 +746,7 @@ npm run-script [-- ] Options: [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--include-workspace-root] [--if-present] [--ignore-scripts] -[--script-shell ] +[--foreground-scripts] [--script-shell ] aliases: run, rum, urn diff --git a/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs b/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs index c59252f9e81a9e..5ae34e868771d6 100644 --- a/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/npm.js.test.cjs @@ -790,7 +790,7 @@ All commands: Options: [-w|--workspace [-w|--workspace ...]] [-ws|--workspaces] [--include-workspace-root] [--if-present] [--ignore-scripts] - [--script-shell ] + [--foreground-scripts] [--script-shell ] aliases: run, rum, urn From e914185c4493f4fcf9e028dedef17ae90430117d Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Sun, 3 Jul 2022 10:33:54 -0700 Subject: [PATCH 109/175] module: cjs-module-lexer WebAssembly fallback PR-URL: https://github.com/nodejs/node/pull/43612 Reviewed-By: Geoffrey Booth Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Ruben Bridgewater Reviewed-By: Colin Ihrig Reviewed-By: Jacob Smith Reviewed-By: Minwoo Jung --- lib/internal/modules/esm/translators.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/internal/modules/esm/translators.js b/lib/internal/modules/esm/translators.js index bcd1775bac898e..8fb3c96f8dc4c5 100644 --- a/lib/internal/modules/esm/translators.js +++ b/lib/internal/modules/esm/translators.js @@ -61,8 +61,12 @@ async function initCJSParse() { } else { const { parse, init } = require('internal/deps/cjs-module-lexer/dist/lexer'); - await init(); - cjsParse = parse; + try { + await init(); + cjsParse = parse; + } catch { + cjsParse = require('internal/deps/cjs-module-lexer/lexer').parse; + } } } From 6fc5a13fe0f0d69113cc84d0428b8f3b3808add3 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Sun, 3 Jul 2022 13:34:05 -0400 Subject: [PATCH 110/175] doc: add single executable application initiative MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs: https://github.com/nodejs/node/issues/43432 Refs: https://github.com/nodejs/node/pull/42334 Refs: https://github.com/nodejs/node/blob/main/doc/contributing/technical-priorities.md#single-executable-applications Signed-off-by: Michael Dawson PR-URL: https://github.com/nodejs/node/pull/43611 Reviewed-By: Michaël Zasso Reviewed-By: Darshan Sen Reviewed-By: Luigi Pinca --- doc/contributing/strategic-initiatives.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/contributing/strategic-initiatives.md b/doc/contributing/strategic-initiatives.md index 5e9cf20786782c..01d32f3aa382e1 100644 --- a/doc/contributing/strategic-initiatives.md +++ b/doc/contributing/strategic-initiatives.md @@ -6,14 +6,15 @@ agenda to ensure they are active and have the support they need. ## Current initiatives -| Initiative | Champion | Links | -| ------------------- | --------------------------- | --------------------------------------------- | -| Core Promise APIs | [Antoine du Hamel][aduh95] | | -| QUIC / HTTP3 | [James M Snell][jasnell] | | -| Shadow Realm | [Chengzhong Wu][legendecas] | | -| Startup performance | [Joyee Cheung][joyeecheung] | | -| V8 Currency | [Michaël Zasso][targos] | | -| Next-10 | [Michael Dawson][mhdawson] | | +| Initiative | Champion | Links | +| ---------------------- | --------------------------- | --------------------------------------------- | +| Core Promise APIs | [Antoine du Hamel][aduh95] | | +| QUIC / HTTP3 | [James M Snell][jasnell] | | +| Shadow Realm | [Chengzhong Wu][legendecas] | | +| Startup performance | [Joyee Cheung][joyeecheung] | | +| V8 Currency | [Michaël Zasso][targos] | | +| Next-10 | [Michael Dawson][mhdawson] | | +| Single executable apps | [Jesse Chan][jesec] | |

        List of completed initiatives @@ -38,6 +39,7 @@ agenda to ensure they are active and have the support they need. [aduh95]: https://github.com/aduh95 [jasnell]: https://github.com/jasnell +[jesec]: https://github.com/jesec [joyeecheung]: https://github.com/joyeecheung [legendecas]: https://github.com/legendecas [mhdawson]: https://github.com/mhdawson From 0fe825ac079bb9f1295988cd01f53181659d38e1 Mon Sep 17 00:00:00 2001 From: Tony Gorez Date: Tue, 28 Jun 2022 21:24:27 +0200 Subject: [PATCH 111/175] doc: remove systemtap from tierlist PR-URL: https://github.com/nodejs/node/pull/43605 Reviewed-By: Ben Noordhuis Reviewed-By: Rafael Gonzaga Reviewed-By: Darshan Sen Reviewed-By: Gerhard Stbich Reviewed-By: Luigi Pinca --- doc/contributing/diagnostic-tooling-support-tiers.md | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/contributing/diagnostic-tooling-support-tiers.md b/doc/contributing/diagnostic-tooling-support-tiers.md index 0ec0c714201506..4a5e5515fd688d 100644 --- a/doc/contributing/diagnostic-tooling-support-tiers.md +++ b/doc/contributing/diagnostic-tooling-support-tiers.md @@ -134,6 +134,5 @@ The tools are currently assigned to Tiers as follows: | Debugger | Command line Debug Client | ? | Yes | 1 | | Tracing | trace\_events (API) | No | Yes | 1 | | Tracing | trace\_gc | No | Yes | 1 | -| Tracing | Systemtap | No | Partial | ? | | F/P/T | appmetrics | No | No | ? | | M/T | eBPF tracing tool | No | No | ? | From cb77b3e3f7d3e080316058fb43c0bf219297f978 Mon Sep 17 00:00:00 2001 From: Tony Gorez Date: Tue, 28 Jun 2022 21:47:29 +0200 Subject: [PATCH 112/175] doc: remove appmetrics from tierlist PR-URL: https://github.com/nodejs/node/pull/43608 Reviewed-By: Beth Griggs Reviewed-By: Michael Dawson Reviewed-By: Richard Lau Reviewed-By: Gireesh Punathil Reviewed-By: Darshan Sen Reviewed-By: Rafael Gonzaga Reviewed-By: Gerhard Stbich --- doc/contributing/diagnostic-tooling-support-tiers.md | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/contributing/diagnostic-tooling-support-tiers.md b/doc/contributing/diagnostic-tooling-support-tiers.md index 4a5e5515fd688d..a7c6e935e9c6e7 100644 --- a/doc/contributing/diagnostic-tooling-support-tiers.md +++ b/doc/contributing/diagnostic-tooling-support-tiers.md @@ -134,5 +134,4 @@ The tools are currently assigned to Tiers as follows: | Debugger | Command line Debug Client | ? | Yes | 1 | | Tracing | trace\_events (API) | No | Yes | 1 | | Tracing | trace\_gc | No | Yes | 1 | -| F/P/T | appmetrics | No | No | ? | | M/T | eBPF tracing tool | No | No | ? | From 508cbbcbf9206a160317c78e5aed833887bcec96 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Mon, 4 Jul 2022 02:33:16 +0200 Subject: [PATCH 113/175] meta: update AUTHORS PR-URL: https://github.com/nodejs/node/pull/43660 Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca --- AUTHORS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index a294c2347ab7ed..45cabe153532f9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3472,5 +3472,7 @@ Moshe Atlow rubikscraft James Scott-Brown supriyo-biswas +Giacomo Gregoletto +italo jose # Generated by tools/update-authors.mjs From 2adf4e77274e787989de1eb953db41238e07fe2f Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Mon, 4 Jul 2022 08:51:35 +0200 Subject: [PATCH 114/175] test: fix flaky test-perf-hooks-histogram Make sure the histogram containing event loop delay info is posted only when at least one datapoint is collected. Fixes: https://github.com/nodejs/node/issues/43503 PR-URL: https://github.com/nodejs/node/pull/43567 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- test/parallel/test-perf-hooks-histogram.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-perf-hooks-histogram.js b/test/parallel/test-perf-hooks-histogram.js index 2137c1b2a3bb11..1bcc59653bb692 100644 --- a/test/parallel/test-perf-hooks-histogram.js +++ b/test/parallel/test-perf-hooks-histogram.js @@ -89,7 +89,12 @@ const { inspect } = require('util'); strictEqual(data.enable, undefined); mc.port1.close(); }); - setTimeout(() => mc.port2.postMessage(e), 100); + const interval = setInterval(() => { + if (e.count > 0) { + clearInterval(interval); + mc.port2.postMessage(e); + } + }, 50); } { From 99ffabf2dd63599ee307793825252c09dba0ced3 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Mon, 4 Jul 2022 12:09:05 +0200 Subject: [PATCH 115/175] tools: update eslint to 8.19.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43662 Reviewed-By: Rich Trott Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca Reviewed-By: Juan José Arboleda --- .../node_modules/eslint/lib/linter/linter.js | 4 + .../eslint/lib/rules/accessor-pairs.js | 2 +- .../eslint/lib/rules/array-bracket-newline.js | 2 +- .../eslint/lib/rules/array-bracket-spacing.js | 2 +- .../eslint/lib/rules/array-callback-return.js | 2 +- .../eslint/lib/rules/array-element-newline.js | 2 +- .../eslint/lib/rules/arrow-body-style.js | 2 +- .../eslint/lib/rules/arrow-parens.js | 2 +- .../eslint/lib/rules/arrow-spacing.js | 2 +- .../eslint/lib/rules/block-scoped-var.js | 2 +- .../eslint/lib/rules/block-spacing.js | 2 +- .../eslint/lib/rules/brace-style.js | 2 +- .../eslint/lib/rules/callback-return.js | 2 +- .../eslint/lib/rules/camelcase.js | 2 +- .../eslint/lib/rules/capitalized-comments.js | 2 +- .../lib/rules/class-methods-use-this.js | 2 +- .../eslint/lib/rules/comma-dangle.js | 2 +- .../eslint/lib/rules/comma-spacing.js | 2 +- .../eslint/lib/rules/comma-style.js | 2 +- .../eslint/lib/rules/complexity.js | 2 +- .../lib/rules/computed-property-spacing.js | 2 +- .../eslint/lib/rules/consistent-return.js | 2 +- .../eslint/lib/rules/consistent-this.js | 2 +- .../eslint/lib/rules/constructor-super.js | 2 +- tools/node_modules/eslint/lib/rules/curly.js | 2 +- .../eslint/lib/rules/default-case-last.js | 2 +- .../eslint/lib/rules/default-case.js | 2 +- .../eslint/lib/rules/default-param-last.js | 2 +- .../eslint/lib/rules/dot-location.js | 2 +- .../eslint/lib/rules/dot-notation.js | 2 +- .../node_modules/eslint/lib/rules/eol-last.js | 2 +- tools/node_modules/eslint/lib/rules/eqeqeq.js | 2 +- .../eslint/lib/rules/for-direction.js | 2 +- .../eslint/lib/rules/func-call-spacing.js | 2 +- .../eslint/lib/rules/func-name-matching.js | 2 +- .../eslint/lib/rules/func-names.js | 2 +- .../eslint/lib/rules/func-style.js | 2 +- .../rules/function-call-argument-newline.js | 2 +- .../lib/rules/function-paren-newline.js | 2 +- .../lib/rules/generator-star-spacing.js | 2 +- .../eslint/lib/rules/getter-return.js | 2 +- .../eslint/lib/rules/global-require.js | 2 +- .../lib/rules/grouped-accessor-pairs.js | 2 +- .../eslint/lib/rules/guard-for-in.js | 2 +- .../eslint/lib/rules/handle-callback-err.js | 2 +- .../eslint/lib/rules/id-blacklist.js | 2 +- .../eslint/lib/rules/id-denylist.js | 2 +- .../eslint/lib/rules/id-length.js | 2 +- .../node_modules/eslint/lib/rules/id-match.js | 2 +- .../lib/rules/implicit-arrow-linebreak.js | 2 +- .../eslint/lib/rules/indent-legacy.js | 2 +- tools/node_modules/eslint/lib/rules/indent.js | 6 +- .../eslint/lib/rules/init-declarations.js | 2 +- .../eslint/lib/rules/jsx-quotes.js | 2 +- .../eslint/lib/rules/key-spacing.js | 2 +- .../eslint/lib/rules/keyword-spacing.js | 2 +- .../eslint/lib/rules/line-comment-position.js | 2 +- .../eslint/lib/rules/linebreak-style.js | 2 +- .../eslint/lib/rules/lines-around-comment.js | 2 +- .../lib/rules/lines-around-directive.js | 2 +- .../lib/rules/lines-between-class-members.js | 2 +- .../eslint/lib/rules/max-classes-per-file.js | 2 +- .../eslint/lib/rules/max-depth.js | 2 +- .../node_modules/eslint/lib/rules/max-len.js | 2 +- .../lib/rules/max-lines-per-function.js | 2 +- .../eslint/lib/rules/max-lines.js | 2 +- .../eslint/lib/rules/max-nested-callbacks.js | 2 +- .../eslint/lib/rules/max-params.js | 2 +- .../lib/rules/max-statements-per-line.js | 2 +- .../eslint/lib/rules/max-statements.js | 2 +- .../lib/rules/multiline-comment-style.js | 2 +- .../eslint/lib/rules/multiline-ternary.js | 2 +- .../node_modules/eslint/lib/rules/new-cap.js | 2 +- .../eslint/lib/rules/new-parens.js | 2 +- .../eslint/lib/rules/newline-after-var.js | 2 +- .../eslint/lib/rules/newline-before-return.js | 2 +- .../lib/rules/newline-per-chained-call.js | 2 +- .../node_modules/eslint/lib/rules/no-alert.js | 2 +- .../eslint/lib/rules/no-array-constructor.js | 2 +- .../lib/rules/no-async-promise-executor.js | 2 +- .../eslint/lib/rules/no-await-in-loop.js | 2 +- .../eslint/lib/rules/no-bitwise.js | 2 +- .../eslint/lib/rules/no-buffer-constructor.js | 2 +- .../eslint/lib/rules/no-caller.js | 2 +- .../eslint/lib/rules/no-case-declarations.js | 2 +- .../eslint/lib/rules/no-catch-shadow.js | 2 +- .../eslint/lib/rules/no-class-assign.js | 2 +- .../eslint/lib/rules/no-compare-neg-zero.js | 2 +- .../eslint/lib/rules/no-cond-assign.js | 2 +- .../eslint/lib/rules/no-confusing-arrow.js | 2 +- .../eslint/lib/rules/no-console.js | 2 +- .../eslint/lib/rules/no-const-assign.js | 2 +- .../rules/no-constant-binary-expression.js | 2 +- .../eslint/lib/rules/no-constant-condition.js | 2 +- .../eslint/lib/rules/no-constructor-return.js | 2 +- .../eslint/lib/rules/no-continue.js | 2 +- .../eslint/lib/rules/no-control-regex.js | 2 +- .../eslint/lib/rules/no-debugger.js | 2 +- .../eslint/lib/rules/no-delete-var.js | 2 +- .../eslint/lib/rules/no-div-regex.js | 2 +- .../eslint/lib/rules/no-dupe-args.js | 2 +- .../eslint/lib/rules/no-dupe-class-members.js | 2 +- .../eslint/lib/rules/no-dupe-else-if.js | 2 +- .../eslint/lib/rules/no-dupe-keys.js | 2 +- .../eslint/lib/rules/no-duplicate-case.js | 2 +- .../eslint/lib/rules/no-duplicate-imports.js | 2 +- .../eslint/lib/rules/no-else-return.js | 2 +- .../lib/rules/no-empty-character-class.js | 2 +- .../eslint/lib/rules/no-empty-function.js | 2 +- .../eslint/lib/rules/no-empty-pattern.js | 2 +- .../node_modules/eslint/lib/rules/no-empty.js | 2 +- .../eslint/lib/rules/no-eq-null.js | 2 +- .../node_modules/eslint/lib/rules/no-eval.js | 2 +- .../eslint/lib/rules/no-ex-assign.js | 2 +- .../eslint/lib/rules/no-extend-native.js | 2 +- .../eslint/lib/rules/no-extra-bind.js | 2 +- .../eslint/lib/rules/no-extra-boolean-cast.js | 2 +- .../eslint/lib/rules/no-extra-label.js | 2 +- .../eslint/lib/rules/no-extra-parens.js | 2 +- .../eslint/lib/rules/no-extra-semi.js | 2 +- .../eslint/lib/rules/no-fallthrough.js | 2 +- .../eslint/lib/rules/no-floating-decimal.js | 2 +- .../eslint/lib/rules/no-func-assign.js | 2 +- .../eslint/lib/rules/no-global-assign.js | 2 +- .../eslint/lib/rules/no-implicit-coercion.js | 2 +- .../eslint/lib/rules/no-implicit-globals.js | 2 +- .../eslint/lib/rules/no-implied-eval.js | 2 +- .../eslint/lib/rules/no-import-assign.js | 2 +- .../eslint/lib/rules/no-inline-comments.js | 2 +- .../eslint/lib/rules/no-inner-declarations.js | 2 +- .../eslint/lib/rules/no-invalid-regexp.js | 2 +- .../eslint/lib/rules/no-invalid-this.js | 2 +- .../lib/rules/no-irregular-whitespace.js | 2 +- .../eslint/lib/rules/no-iterator.js | 2 +- .../eslint/lib/rules/no-label-var.js | 2 +- .../eslint/lib/rules/no-labels.js | 2 +- .../eslint/lib/rules/no-lone-blocks.js | 2 +- .../eslint/lib/rules/no-lonely-if.js | 2 +- .../eslint/lib/rules/no-loop-func.js | 2 +- .../eslint/lib/rules/no-loss-of-precision.js | 2 +- .../eslint/lib/rules/no-magic-numbers.js | 2 +- .../rules/no-misleading-character-class.js | 2 +- .../eslint/lib/rules/no-mixed-operators.js | 2 +- .../eslint/lib/rules/no-mixed-requires.js | 2 +- .../lib/rules/no-mixed-spaces-and-tabs.js | 2 +- .../eslint/lib/rules/no-multi-assign.js | 2 +- .../eslint/lib/rules/no-multi-spaces.js | 2 +- .../eslint/lib/rules/no-multi-str.js | 2 +- .../lib/rules/no-multiple-empty-lines.js | 2 +- .../eslint/lib/rules/no-native-reassign.js | 2 +- .../eslint/lib/rules/no-negated-condition.js | 2 +- .../eslint/lib/rules/no-negated-in-lhs.js | 2 +- .../eslint/lib/rules/no-nested-ternary.js | 2 +- .../eslint/lib/rules/no-new-func.js | 2 +- .../eslint/lib/rules/no-new-object.js | 2 +- .../eslint/lib/rules/no-new-require.js | 2 +- .../eslint/lib/rules/no-new-symbol.js | 2 +- .../eslint/lib/rules/no-new-wrappers.js | 2 +- tools/node_modules/eslint/lib/rules/no-new.js | 2 +- .../lib/rules/no-nonoctal-decimal-escape.js | 2 +- .../eslint/lib/rules/no-obj-calls.js | 2 +- .../eslint/lib/rules/no-octal-escape.js | 2 +- .../node_modules/eslint/lib/rules/no-octal.js | 2 +- .../eslint/lib/rules/no-param-reassign.js | 2 +- .../eslint/lib/rules/no-path-concat.js | 2 +- .../eslint/lib/rules/no-plusplus.js | 2 +- .../eslint/lib/rules/no-process-env.js | 2 +- .../eslint/lib/rules/no-process-exit.js | 2 +- .../lib/rules/no-promise-executor-return.js | 2 +- .../node_modules/eslint/lib/rules/no-proto.js | 2 +- .../eslint/lib/rules/no-prototype-builtins.js | 2 +- .../eslint/lib/rules/no-redeclare.js | 2 +- .../eslint/lib/rules/no-regex-spaces.js | 2 +- .../eslint/lib/rules/no-restricted-exports.js | 2 +- .../eslint/lib/rules/no-restricted-globals.js | 2 +- .../eslint/lib/rules/no-restricted-imports.js | 89 ++- .../eslint/lib/rules/no-restricted-modules.js | 2 +- .../lib/rules/no-restricted-properties.js | 2 +- .../eslint/lib/rules/no-restricted-syntax.js | 2 +- .../eslint/lib/rules/no-return-assign.js | 2 +- .../eslint/lib/rules/no-return-await.js | 2 +- .../eslint/lib/rules/no-script-url.js | 2 +- .../eslint/lib/rules/no-self-assign.js | 2 +- .../eslint/lib/rules/no-self-compare.js | 2 +- .../eslint/lib/rules/no-sequences.js | 2 +- .../eslint/lib/rules/no-setter-return.js | 2 +- .../lib/rules/no-shadow-restricted-names.js | 2 +- .../eslint/lib/rules/no-shadow.js | 2 +- .../eslint/lib/rules/no-spaced-func.js | 2 +- .../eslint/lib/rules/no-sparse-arrays.js | 2 +- .../node_modules/eslint/lib/rules/no-sync.js | 2 +- .../node_modules/eslint/lib/rules/no-tabs.js | 2 +- .../lib/rules/no-template-curly-in-string.js | 2 +- .../eslint/lib/rules/no-ternary.js | 2 +- .../eslint/lib/rules/no-this-before-super.js | 2 +- .../eslint/lib/rules/no-throw-literal.js | 2 +- .../eslint/lib/rules/no-trailing-spaces.js | 2 +- .../eslint/lib/rules/no-undef-init.js | 2 +- .../node_modules/eslint/lib/rules/no-undef.js | 2 +- .../eslint/lib/rules/no-undefined.js | 2 +- .../eslint/lib/rules/no-underscore-dangle.js | 2 +- .../lib/rules/no-unexpected-multiline.js | 2 +- .../lib/rules/no-unmodified-loop-condition.js | 2 +- .../eslint/lib/rules/no-unneeded-ternary.js | 2 +- .../eslint/lib/rules/no-unreachable-loop.js | 2 +- .../eslint/lib/rules/no-unreachable.js | 2 +- .../eslint/lib/rules/no-unsafe-finally.js | 2 +- .../eslint/lib/rules/no-unsafe-negation.js | 2 +- .../lib/rules/no-unsafe-optional-chaining.js | 2 +- .../eslint/lib/rules/no-unused-expressions.js | 2 +- .../eslint/lib/rules/no-unused-labels.js | 2 +- .../rules/no-unused-private-class-members.js | 2 +- .../eslint/lib/rules/no-unused-vars.js | 2 +- .../eslint/lib/rules/no-use-before-define.js | 2 +- .../lib/rules/no-useless-backreference.js | 2 +- .../eslint/lib/rules/no-useless-call.js | 2 +- .../eslint/lib/rules/no-useless-catch.js | 2 +- .../lib/rules/no-useless-computed-key.js | 2 +- .../eslint/lib/rules/no-useless-concat.js | 2 +- .../lib/rules/no-useless-constructor.js | 2 +- .../eslint/lib/rules/no-useless-escape.js | 2 +- .../eslint/lib/rules/no-useless-rename.js | 2 +- .../eslint/lib/rules/no-useless-return.js | 2 +- tools/node_modules/eslint/lib/rules/no-var.js | 2 +- .../node_modules/eslint/lib/rules/no-void.js | 2 +- .../eslint/lib/rules/no-warning-comments.js | 2 +- .../rules/no-whitespace-before-property.js | 2 +- .../node_modules/eslint/lib/rules/no-with.js | 2 +- .../rules/nonblock-statement-body-position.js | 2 +- .../eslint/lib/rules/object-curly-newline.js | 2 +- .../eslint/lib/rules/object-curly-spacing.js | 2 +- .../lib/rules/object-property-newline.js | 2 +- .../eslint/lib/rules/object-shorthand.js | 2 +- .../lib/rules/one-var-declaration-per-line.js | 2 +- .../node_modules/eslint/lib/rules/one-var.js | 2 +- .../eslint/lib/rules/operator-assignment.js | 2 +- .../eslint/lib/rules/operator-linebreak.js | 2 +- .../eslint/lib/rules/padded-blocks.js | 2 +- .../rules/padding-line-between-statements.js | 2 +- .../eslint/lib/rules/prefer-arrow-callback.js | 2 +- .../eslint/lib/rules/prefer-const.js | 2 +- .../eslint/lib/rules/prefer-destructuring.js | 2 +- .../rules/prefer-exponentiation-operator.js | 2 +- .../lib/rules/prefer-named-capture-group.js | 2 +- .../lib/rules/prefer-numeric-literals.js | 2 +- .../eslint/lib/rules/prefer-object-has-own.js | 2 +- .../eslint/lib/rules/prefer-object-spread.js | 2 +- .../lib/rules/prefer-promise-reject-errors.js | 2 +- .../eslint/lib/rules/prefer-reflect.js | 2 +- .../eslint/lib/rules/prefer-regex-literals.js | 2 +- .../eslint/lib/rules/prefer-rest-params.js | 2 +- .../eslint/lib/rules/prefer-spread.js | 2 +- .../eslint/lib/rules/prefer-template.js | 2 +- .../eslint/lib/rules/quote-props.js | 2 +- tools/node_modules/eslint/lib/rules/quotes.js | 2 +- tools/node_modules/eslint/lib/rules/radix.js | 2 +- .../lib/rules/require-atomic-updates.js | 2 +- .../eslint/lib/rules/require-await.js | 2 +- .../eslint/lib/rules/require-jsdoc.js | 2 +- .../lib/rules/require-unicode-regexp.js | 2 +- .../eslint/lib/rules/require-yield.js | 2 +- .../eslint/lib/rules/rest-spread-spacing.js | 2 +- .../eslint/lib/rules/semi-spacing.js | 2 +- .../eslint/lib/rules/semi-style.js | 2 +- tools/node_modules/eslint/lib/rules/semi.js | 2 +- .../eslint/lib/rules/sort-imports.js | 2 +- .../eslint/lib/rules/sort-keys.js | 2 +- .../eslint/lib/rules/sort-vars.js | 2 +- .../eslint/lib/rules/space-before-blocks.js | 2 +- .../lib/rules/space-before-function-paren.js | 2 +- .../eslint/lib/rules/space-in-parens.js | 2 +- .../eslint/lib/rules/space-infix-ops.js | 2 +- .../eslint/lib/rules/space-unary-ops.js | 2 +- .../eslint/lib/rules/spaced-comment.js | 2 +- tools/node_modules/eslint/lib/rules/strict.js | 2 +- .../eslint/lib/rules/switch-colon-spacing.js | 2 +- .../eslint/lib/rules/symbol-description.js | 2 +- .../lib/rules/template-curly-spacing.js | 2 +- .../eslint/lib/rules/template-tag-spacing.js | 2 +- .../eslint/lib/rules/unicode-bom.js | 2 +- .../eslint/lib/rules/use-isnan.js | 2 +- .../eslint/lib/rules/valid-jsdoc.js | 2 +- .../eslint/lib/rules/valid-typeof.js | 2 +- .../eslint/lib/rules/vars-on-top.js | 2 +- .../eslint/lib/rules/wrap-iife.js | 2 +- .../eslint/lib/rules/wrap-regex.js | 2 +- .../eslint/lib/rules/yield-star-spacing.js | 2 +- tools/node_modules/eslint/lib/rules/yoda.js | 2 +- .../node_modules/.bin/browserslist-lint | 1 + .../@babel/code-frame/package.json | 7 +- .../@babel/compat-data/package.json | 5 +- .../@babel/core/lib/config/cache-contexts.js | 1 + .../@babel/core/lib/config/caching.js | 4 +- .../@babel/core/lib/config/config-chain.js | 4 +- .../core/lib/config/config-descriptors.js | 4 +- .../core/lib/config/files/configuration.js | 4 +- .../lib/config/files/import-meta-resolve.js | 4 +- .../@babel/core/lib/config/files/import.js | 4 +- .../core/lib/config/files/index-browser.js | 4 +- .../@babel/core/lib/config/files/index.js | 3 +- .../core/lib/config/files/module-types.js | 17 +- .../@babel/core/lib/config/files/package.js | 3 +- .../@babel/core/lib/config/files/plugins.js | 4 +- .../@babel/core/lib/config/files/types.js | 1 + .../@babel/core/lib/config/files/utils.js | 4 +- .../@babel/core/lib/config/full.js | 4 +- .../core/lib/config/helpers/config-api.js | 7 +- .../core/lib/config/helpers/deep-array.js | 4 +- .../core/lib/config/helpers/environment.js | 4 +- .../@babel/core/lib/config/index.js | 4 +- .../@babel/core/lib/config/item.js | 3 +- .../@babel/core/lib/config/partial.js | 3 +- .../core/lib/config/pattern-to-regex.js | 4 +- .../@babel/core/lib/config/plugin.js | 3 +- .../@babel/core/lib/config/printer.js | 3 +- .../lib/config/resolve-targets-browser.js | 25 +- .../@babel/core/lib/config/resolve-targets.js | 25 +- .../@babel/core/lib/config/util.js | 4 +- .../config/validation/option-assertions.js | 4 +- .../core/lib/config/validation/options.js | 4 +- .../core/lib/config/validation/plugins.js | 4 +- .../core/lib/config/validation/removed.js | 3 +- .../@babel/core/lib/gensync-utils/async.js | 4 +- .../@babel/core/lib/gensync-utils/fs.js | 3 +- .../node_modules/@babel/core/lib/index.js | 14 +- .../node_modules/@babel/core/lib/parse.js | 3 +- .../@babel/core/lib/parser/index.js | 4 +- .../lib/parser/util/missing-plugin-helper.js | 4 +- .../core/lib/tools/build-external-helpers.js | 4 +- .../@babel/core/lib/transform-ast.js | 15 +- .../@babel/core/lib/transform-file-browser.js | 4 +- .../@babel/core/lib/transform-file.js | 3 +- .../node_modules/@babel/core/lib/transform.js | 15 +- .../lib/transformation/block-hoist-plugin.js | 3 +- .../core/lib/transformation/file/file.js | 9 +- .../core/lib/transformation/file/generate.js | 4 +- .../core/lib/transformation/file/merge-map.js | 4 +- .../@babel/core/lib/transformation/index.js | 4 +- .../core/lib/transformation/normalize-file.js | 4 +- .../core/lib/transformation/normalize-opts.js | 4 +- .../core/lib/transformation/plugin-pass.js | 3 +- .../transformation/util/clone-deep-browser.js | 25 - .../lib/transformation/util/clone-deep.js | 41 +- .../core/lib/vendor/import-meta-resolve.js | 4 +- .../node_modules/@babel/core/package.json | 34 +- .../@babel/generator/lib/buffer.js | 8 +- .../@babel/generator/lib/generators/base.js | 2 +- .../generator/lib/generators/classes.js | 12 +- .../generator/lib/generators/expressions.js | 44 +- .../@babel/generator/lib/generators/flow.js | 6 +- .../@babel/generator/lib/generators/jsx.js | 2 +- .../generator/lib/generators/methods.js | 10 +- .../generator/lib/generators/modules.js | 37 +- .../generator/lib/generators/statements.js | 105 ++-- .../@babel/generator/lib/generators/types.js | 6 +- .../generator/lib/generators/typescript.js | 38 +- .../@babel/generator/lib/index.js | 2 +- .../@babel/generator/lib/node/index.js | 6 +- .../@babel/generator/lib/node/parentheses.js | 7 +- .../@babel/generator/lib/node/whitespace.js | 12 +- .../@babel/generator/lib/printer.js | 23 +- .../@jridgewell/gen-mapping/package.json | 22 +- .../@babel/generator/package.json | 13 +- .../helper-compilation-targets/lib/index.js | 49 +- .../helper-compilation-targets/lib/utils.js | 9 +- .../helper-compilation-targets/package.json | 13 +- .../helper-environment-visitor/package.json | 9 +- .../@babel/helper-function-name/lib/index.js | 13 +- .../@babel/helper-function-name/package.json | 9 +- .../helper-hoist-variables/package.json | 9 +- .../lib/import-builder.js | 24 +- .../lib/import-injector.js | 26 +- .../@babel/helper-module-imports/package.json | 11 +- .../lib/normalize-and-load-metadata.js | 4 +- .../lib/rewrite-live-references.js | 7 +- .../helper-module-transforms/package.json | 21 +- .../@babel/helper-plugin-utils/lib/index.js | 4 +- .../@babel/helper-plugin-utils/package.json | 5 +- .../@babel/helper-simple-access/package.json | 9 +- .../lib/index.js | 20 +- .../package.json | 7 +- .../helper-validator-identifier/package.json | 5 +- .../helper-validator-option/package.json | 5 +- .../node_modules/@babel/helpers/package.json | 17 +- .../helpers/scripts/generate-helpers.js | 2 +- .../@babel/highlight/package.json | 7 +- .../node_modules/@babel/parser/lib/index.js | 74 ++- .../node_modules/@babel/parser/package.json | 13 +- .../package.json | 9 +- .../node_modules/@babel/template/package.json | 11 +- .../@babel/traverse/lib/context.js | 8 +- .../@babel/traverse/lib/path/context.js | 5 +- .../@babel/traverse/lib/path/conversion.js | 13 +- .../@babel/traverse/lib/path/evaluation.js | 12 +- .../lib/path/inference/inferer-reference.js | 2 +- .../traverse/lib/path/inference/inferers.js | 2 +- .../traverse/lib/path/lib/removal-hooks.js | 3 + .../@babel/traverse/lib/path/replacement.js | 15 +- .../@babel/traverse/lib/scope/index.js | 6 +- .../@babel/traverse/lib/scope/lib/renamer.js | 41 +- .../node_modules/@babel/traverse/package.json | 23 +- .../traverse/scripts/generators/asserts.js | 2 +- .../traverse/scripts/generators/validators.js | 7 +- .../scripts/generators/virtual-types.js | 5 +- .../@babel/types/lib/converters/Scope.js | 0 .../types/lib/converters/ensureBlock.js | 4 +- .../@babel/types/lib/definitions/core.js | 29 +- .../@babel/types/lib/definitions/flow.js | 4 +- .../types/lib/definitions/typescript.js | 4 +- .../@babel/types/lib/index.js.flow | 4 +- .../types/lib/modifications/inherits.js | 4 +- .../lib/modifications/removeProperties.js | 3 +- .../lib/retrievers/getBindingIdentifiers.js | 7 +- .../types/lib/validators/isNodesEquivalent.js | 27 +- .../node_modules/@babel/types/package.json | 11 +- .../types/scripts/generators/asserts.js | 2 +- .../types/scripts/generators/ast-types.js | 16 +- .../types/scripts/generators/builders.js | 4 +- .../types/scripts/generators/constants.js | 2 +- .../@babel/types/scripts/generators/docs.js | 2 +- .../@babel/types/scripts/generators/flow.js | 2 +- .../scripts/generators/typescript-legacy.js | 2 +- .../types/scripts/generators/validators.js | 2 +- .../@jridgewell/resolve-uri/package.json | 18 +- .../@jridgewell/set-array/package.json | 20 +- .../@jridgewell/sourcemap-codec/package.json | 20 +- .../@jridgewell/trace-mapping/package.json | 20 +- .../eslint/node_modules/browserslist/cli.js | 7 +- .../eslint/node_modules/browserslist/index.js | 563 ++++++++---------- .../eslint/node_modules/browserslist/node.js | 11 +- .../node_modules/browserslist/package.json | 9 +- .../eslint/node_modules/browserslist/parse.js | 78 +++ .../node_modules/caniuse-lite/data/agents.js | 2 +- .../caniuse-lite/data/browserVersions.js | 2 +- .../caniuse-lite/data/features/aac.js | 2 +- .../data/features/abortcontroller.js | 2 +- .../caniuse-lite/data/features/ac3-ec3.js | 2 +- .../data/features/accelerometer.js | 2 +- .../data/features/addeventlistener.js | 2 +- .../data/features/alternate-stylesheet.js | 2 +- .../data/features/ambient-light.js | 2 +- .../caniuse-lite/data/features/apng.js | 2 +- .../data/features/array-find-index.js | 2 +- .../caniuse-lite/data/features/array-find.js | 2 +- .../caniuse-lite/data/features/array-flat.js | 2 +- .../data/features/array-includes.js | 2 +- .../data/features/arrow-functions.js | 2 +- .../caniuse-lite/data/features/asmjs.js | 2 +- .../data/features/async-clipboard.js | 2 +- .../data/features/async-functions.js | 2 +- .../caniuse-lite/data/features/atob-btoa.js | 2 +- .../caniuse-lite/data/features/audio-api.js | 2 +- .../caniuse-lite/data/features/audio.js | 2 +- .../caniuse-lite/data/features/audiotracks.js | 2 +- .../caniuse-lite/data/features/autofocus.js | 2 +- .../caniuse-lite/data/features/auxclick.js | 2 +- .../caniuse-lite/data/features/av1.js | 2 +- .../caniuse-lite/data/features/avif.js | 2 +- .../data/features/background-attachment.js | 2 +- .../data/features/background-clip-text.js | 2 +- .../data/features/background-img-opts.js | 2 +- .../data/features/background-position-x-y.js | 2 +- .../features/background-repeat-round-space.js | 2 +- .../data/features/background-sync.js | 2 +- .../data/features/battery-status.js | 2 +- .../caniuse-lite/data/features/beacon.js | 2 +- .../data/features/beforeafterprint.js | 2 +- .../caniuse-lite/data/features/bigint.js | 2 +- .../caniuse-lite/data/features/blobbuilder.js | 2 +- .../caniuse-lite/data/features/bloburls.js | 2 +- .../data/features/border-image.js | 2 +- .../data/features/border-radius.js | 2 +- .../data/features/broadcastchannel.js | 2 +- .../caniuse-lite/data/features/brotli.js | 2 +- .../caniuse-lite/data/features/calc.js | 2 +- .../data/features/canvas-blending.js | 2 +- .../caniuse-lite/data/features/canvas-text.js | 2 +- .../caniuse-lite/data/features/canvas.js | 2 +- .../caniuse-lite/data/features/ch-unit.js | 2 +- .../data/features/chacha20-poly1305.js | 2 +- .../data/features/channel-messaging.js | 2 +- .../data/features/childnode-remove.js | 2 +- .../caniuse-lite/data/features/classlist.js | 2 +- .../client-hints-dpr-width-viewport.js | 2 +- .../caniuse-lite/data/features/clipboard.js | 2 +- .../caniuse-lite/data/features/colr-v1.js | 2 +- .../caniuse-lite/data/features/colr.js | 2 +- .../data/features/comparedocumentposition.js | 2 +- .../data/features/console-basic.js | 2 +- .../data/features/console-time.js | 2 +- .../caniuse-lite/data/features/const.js | 2 +- .../data/features/constraint-validation.js | 2 +- .../data/features/contenteditable.js | 2 +- .../data/features/contentsecuritypolicy.js | 2 +- .../data/features/contentsecuritypolicy2.js | 2 +- .../data/features/cookie-store-api.js | 2 +- .../caniuse-lite/data/features/cors.js | 2 +- .../data/features/createimagebitmap.js | 2 +- .../data/features/credential-management.js | 2 +- .../data/features/cryptography.js | 2 +- .../caniuse-lite/data/features/css-all.js | 2 +- .../data/features/css-animation.js | 2 +- .../data/features/css-any-link.js | 2 +- .../data/features/css-appearance.js | 2 +- .../data/features/css-at-counter-style.js | 2 +- .../data/features/css-autofill.js | 2 +- .../data/features/css-backdrop-filter.js | 2 +- .../data/features/css-background-offsets.js | 2 +- .../data/features/css-backgroundblendmode.js | 2 +- .../data/features/css-boxdecorationbreak.js | 2 +- .../data/features/css-boxshadow.js | 2 +- .../caniuse-lite/data/features/css-canvas.js | 2 +- .../data/features/css-caret-color.js | 2 +- .../data/features/css-cascade-layers.js | 2 +- .../data/features/css-case-insensitive.js | 2 +- .../data/features/css-clip-path.js | 2 +- .../data/features/css-color-adjust.js | 2 +- .../data/features/css-color-function.js | 2 +- .../data/features/css-conic-gradients.js | 2 +- .../data/features/css-container-queries.js | 2 +- .../features/css-container-query-units.js | 2 +- .../data/features/css-containment.js | 2 +- .../data/features/css-content-visibility.js | 2 +- .../data/features/css-counters.js | 2 +- .../data/features/css-crisp-edges.js | 2 +- .../data/features/css-cross-fade.js | 2 +- .../data/features/css-default-pseudo.js | 2 +- .../data/features/css-descendant-gtgt.js | 2 +- .../data/features/css-deviceadaptation.js | 2 +- .../data/features/css-dir-pseudo.js | 2 +- .../data/features/css-display-contents.js | 2 +- .../data/features/css-element-function.js | 2 +- .../data/features/css-env-function.js | 2 +- .../data/features/css-exclusions.js | 2 +- .../data/features/css-featurequeries.js | 2 +- .../data/features/css-file-selector-button.js | 2 +- .../data/features/css-filter-function.js | 2 +- .../caniuse-lite/data/features/css-filters.js | 2 +- .../data/features/css-first-letter.js | 2 +- .../data/features/css-first-line.js | 2 +- .../caniuse-lite/data/features/css-fixed.js | 2 +- .../data/features/css-focus-visible.js | 2 +- .../data/features/css-focus-within.js | 2 +- .../data/features/css-font-palette.js | 2 +- .../features/css-font-rendering-controls.js | 2 +- .../data/features/css-font-stretch.js | 2 +- .../data/features/css-gencontent.js | 2 +- .../data/features/css-gradients.js | 2 +- .../data/features/css-grid-animation.js | 2 +- .../caniuse-lite/data/features/css-grid.js | 2 +- .../data/features/css-hanging-punctuation.js | 2 +- .../caniuse-lite/data/features/css-has.js | 2 +- .../data/features/css-hyphenate.js | 2 +- .../caniuse-lite/data/features/css-hyphens.js | 2 +- .../data/features/css-image-orientation.js | 2 +- .../data/features/css-image-set.js | 2 +- .../data/features/css-in-out-of-range.js | 2 +- .../data/features/css-indeterminate-pseudo.js | 2 +- .../data/features/css-initial-letter.js | 2 +- .../data/features/css-initial-value.js | 2 +- .../caniuse-lite/data/features/css-lch-lab.js | 2 +- .../data/features/css-letter-spacing.js | 2 +- .../data/features/css-line-clamp.js | 2 +- .../data/features/css-logical-props.js | 2 +- .../data/features/css-marker-pseudo.js | 2 +- .../caniuse-lite/data/features/css-masks.js | 2 +- .../data/features/css-matches-pseudo.js | 2 +- .../data/features/css-math-functions.js | 2 +- .../data/features/css-media-interaction.js | 2 +- .../data/features/css-media-resolution.js | 2 +- .../data/features/css-media-scripting.js | 2 +- .../data/features/css-mediaqueries.js | 2 +- .../data/features/css-mixblendmode.js | 2 +- .../data/features/css-motion-paths.js | 2 +- .../data/features/css-namespaces.js | 2 +- .../caniuse-lite/data/features/css-nesting.js | 2 +- .../data/features/css-not-sel-list.js | 2 +- .../data/features/css-nth-child-of.js | 2 +- .../caniuse-lite/data/features/css-opacity.js | 2 +- .../data/features/css-optional-pseudo.js | 2 +- .../data/features/css-overflow-anchor.js | 2 +- .../data/features/css-overflow-overlay.js | 2 +- .../data/features/css-overflow.js | 2 +- .../data/features/css-overscroll-behavior.js | 2 +- .../data/features/css-page-break.js | 2 +- .../data/features/css-paged-media.js | 2 +- .../data/features/css-paint-api.js | 2 +- .../data/features/css-placeholder-shown.js | 2 +- .../data/features/css-placeholder.js | 2 +- .../data/features/css-print-color-adjust.js | 2 +- .../data/features/css-read-only-write.js | 2 +- .../data/features/css-rebeccapurple.js | 2 +- .../data/features/css-reflections.js | 2 +- .../caniuse-lite/data/features/css-regions.js | 2 +- .../data/features/css-repeating-gradients.js | 2 +- .../caniuse-lite/data/features/css-resize.js | 2 +- .../data/features/css-revert-value.js | 2 +- .../data/features/css-rrggbbaa.js | 2 +- .../data/features/css-scroll-behavior.js | 2 +- .../data/features/css-scroll-timeline.js | 2 +- .../data/features/css-scrollbar.js | 2 +- .../caniuse-lite/data/features/css-sel2.js | 2 +- .../caniuse-lite/data/features/css-sel3.js | 2 +- .../data/features/css-selection.js | 2 +- .../caniuse-lite/data/features/css-shapes.js | 2 +- .../data/features/css-snappoints.js | 2 +- .../caniuse-lite/data/features/css-sticky.js | 2 +- .../caniuse-lite/data/features/css-subgrid.js | 2 +- .../data/features/css-supports-api.js | 2 +- .../caniuse-lite/data/features/css-table.js | 2 +- .../data/features/css-text-align-last.js | 2 +- .../data/features/css-text-indent.js | 2 +- .../data/features/css-text-justify.js | 2 +- .../data/features/css-text-orientation.js | 2 +- .../data/features/css-text-spacing.js | 2 +- .../data/features/css-textshadow.js | 2 +- .../data/features/css-touch-action-2.js | 2 +- .../data/features/css-touch-action.js | 2 +- .../data/features/css-transitions.js | 2 +- .../data/features/css-unicode-bidi.js | 2 +- .../data/features/css-unset-value.js | 2 +- .../data/features/css-variables.js | 2 +- .../data/features/css-when-else.js | 2 +- .../data/features/css-widows-orphans.js | 2 +- .../data/features/css-width-stretch.js | 2 +- .../data/features/css-writing-mode.js | 2 +- .../caniuse-lite/data/features/css-zoom.js | 2 +- .../caniuse-lite/data/features/css3-attr.js | 2 +- .../data/features/css3-boxsizing.js | 2 +- .../caniuse-lite/data/features/css3-colors.js | 2 +- .../data/features/css3-cursors-grab.js | 2 +- .../data/features/css3-cursors-newer.js | 2 +- .../data/features/css3-cursors.js | 2 +- .../data/features/css3-tabsize.js | 2 +- .../data/features/currentcolor.js | 2 +- .../data/features/custom-elements.js | 2 +- .../data/features/custom-elementsv1.js | 2 +- .../caniuse-lite/data/features/customevent.js | 2 +- .../caniuse-lite/data/features/datalist.js | 2 +- .../caniuse-lite/data/features/dataset.js | 2 +- .../caniuse-lite/data/features/datauri.js | 2 +- .../data/features/date-tolocaledatestring.js | 2 +- .../data/features/declarative-shadow-dom.js | 2 +- .../caniuse-lite/data/features/decorators.js | 2 +- .../caniuse-lite/data/features/details.js | 2 +- .../data/features/deviceorientation.js | 2 +- .../data/features/devicepixelratio.js | 2 +- .../caniuse-lite/data/features/dialog.js | 2 +- .../data/features/dispatchevent.js | 2 +- .../caniuse-lite/data/features/dnssec.js | 2 +- .../data/features/do-not-track.js | 2 +- .../data/features/document-currentscript.js | 2 +- .../data/features/document-evaluate-xpath.js | 2 +- .../data/features/document-execcommand.js | 2 +- .../data/features/document-policy.js | 2 +- .../features/document-scrollingelement.js | 2 +- .../data/features/documenthead.js | 2 +- .../data/features/dom-manip-convenience.js | 2 +- .../caniuse-lite/data/features/dom-range.js | 2 +- .../data/features/domcontentloaded.js | 2 +- .../features/domfocusin-domfocusout-events.js | 2 +- .../caniuse-lite/data/features/dommatrix.js | 2 +- .../caniuse-lite/data/features/download.js | 2 +- .../caniuse-lite/data/features/dragndrop.js | 2 +- .../data/features/element-closest.js | 2 +- .../data/features/element-from-point.js | 2 +- .../data/features/element-scroll-methods.js | 2 +- .../caniuse-lite/data/features/eme.js | 2 +- .../caniuse-lite/data/features/eot.js | 2 +- .../caniuse-lite/data/features/es5.js | 2 +- .../caniuse-lite/data/features/es6-class.js | 2 +- .../data/features/es6-generators.js | 2 +- .../features/es6-module-dynamic-import.js | 2 +- .../caniuse-lite/data/features/es6-module.js | 2 +- .../caniuse-lite/data/features/es6-number.js | 2 +- .../data/features/es6-string-includes.js | 2 +- .../caniuse-lite/data/features/es6.js | 2 +- .../caniuse-lite/data/features/eventsource.js | 2 +- .../data/features/extended-system-fonts.js | 2 +- .../data/features/feature-policy.js | 2 +- .../caniuse-lite/data/features/fetch.js | 2 +- .../data/features/fieldset-disabled.js | 2 +- .../caniuse-lite/data/features/fileapi.js | 2 +- .../caniuse-lite/data/features/filereader.js | 2 +- .../data/features/filereadersync.js | 2 +- .../caniuse-lite/data/features/filesystem.js | 2 +- .../caniuse-lite/data/features/flac.js | 2 +- .../caniuse-lite/data/features/flexbox-gap.js | 2 +- .../caniuse-lite/data/features/flexbox.js | 2 +- .../caniuse-lite/data/features/flow-root.js | 2 +- .../data/features/focusin-focusout-events.js | 2 +- .../features/focusoptions-preventscroll.js | 2 +- .../data/features/font-family-system-ui.js | 2 +- .../data/features/font-feature.js | 2 +- .../data/features/font-kerning.js | 2 +- .../data/features/font-loading.js | 2 +- .../data/features/font-metrics-overrides.js | 2 +- .../data/features/font-size-adjust.js | 2 +- .../caniuse-lite/data/features/font-smooth.js | 2 +- .../data/features/font-unicode-range.js | 2 +- .../data/features/font-variant-alternates.js | 2 +- .../data/features/font-variant-east-asian.js | 2 +- .../data/features/font-variant-numeric.js | 2 +- .../caniuse-lite/data/features/fontface.js | 2 +- .../data/features/form-attribute.js | 2 +- .../data/features/form-submit-attributes.js | 2 +- .../data/features/form-validation.js | 2 +- .../caniuse-lite/data/features/forms.js | 2 +- .../caniuse-lite/data/features/fullscreen.js | 2 +- .../caniuse-lite/data/features/gamepad.js | 2 +- .../caniuse-lite/data/features/geolocation.js | 2 +- .../data/features/getboundingclientrect.js | 2 +- .../data/features/getcomputedstyle.js | 2 +- .../data/features/getelementsbyclassname.js | 2 +- .../data/features/getrandomvalues.js | 2 +- .../caniuse-lite/data/features/gyroscope.js | 2 +- .../data/features/hardwareconcurrency.js | 2 +- .../caniuse-lite/data/features/hashchange.js | 2 +- .../caniuse-lite/data/features/heif.js | 2 +- .../caniuse-lite/data/features/hevc.js | 2 +- .../caniuse-lite/data/features/hidden.js | 2 +- .../data/features/high-resolution-time.js | 2 +- .../caniuse-lite/data/features/history.js | 2 +- .../data/features/html-media-capture.js | 2 +- .../data/features/html5semantic.js | 2 +- .../data/features/http-live-streaming.js | 2 +- .../caniuse-lite/data/features/http2.js | 2 +- .../caniuse-lite/data/features/http3.js | 2 +- .../data/features/iframe-sandbox.js | 2 +- .../data/features/iframe-seamless.js | 2 +- .../data/features/iframe-srcdoc.js | 2 +- .../data/features/imagecapture.js | 2 +- .../caniuse-lite/data/features/ime.js | 2 +- .../img-naturalwidth-naturalheight.js | 2 +- .../caniuse-lite/data/features/import-maps.js | 2 +- .../caniuse-lite/data/features/imports.js | 2 +- .../data/features/indeterminate-checkbox.js | 2 +- .../caniuse-lite/data/features/indexeddb.js | 2 +- .../caniuse-lite/data/features/indexeddb2.js | 2 +- .../data/features/inline-block.js | 2 +- .../caniuse-lite/data/features/innertext.js | 2 +- .../data/features/input-autocomplete-onoff.js | 2 +- .../caniuse-lite/data/features/input-color.js | 2 +- .../data/features/input-datetime.js | 2 +- .../data/features/input-email-tel-url.js | 2 +- .../caniuse-lite/data/features/input-event.js | 2 +- .../data/features/input-file-accept.js | 2 +- .../data/features/input-file-directory.js | 2 +- .../data/features/input-file-multiple.js | 2 +- .../data/features/input-inputmode.js | 2 +- .../data/features/input-minlength.js | 2 +- .../data/features/input-number.js | 2 +- .../data/features/input-pattern.js | 2 +- .../data/features/input-placeholder.js | 2 +- .../caniuse-lite/data/features/input-range.js | 2 +- .../data/features/input-search.js | 2 +- .../data/features/input-selection.js | 2 +- .../data/features/insert-adjacent.js | 2 +- .../data/features/insertadjacenthtml.js | 2 +- .../data/features/internationalization.js | 2 +- .../data/features/intersectionobserver-v2.js | 2 +- .../data/features/intersectionobserver.js | 2 +- .../data/features/intl-pluralrules.js | 2 +- .../data/features/intrinsic-width.js | 2 +- .../caniuse-lite/data/features/jpeg2000.js | 2 +- .../caniuse-lite/data/features/jpegxl.js | 2 +- .../caniuse-lite/data/features/jpegxr.js | 2 +- .../data/features/js-regexp-lookbehind.js | 2 +- .../caniuse-lite/data/features/json.js | 2 +- .../features/justify-content-space-evenly.js | 2 +- .../data/features/kerning-pairs-ligatures.js | 2 +- .../data/features/keyboardevent-charcode.js | 2 +- .../data/features/keyboardevent-code.js | 2 +- .../keyboardevent-getmodifierstate.js | 2 +- .../data/features/keyboardevent-key.js | 2 +- .../data/features/keyboardevent-location.js | 2 +- .../data/features/keyboardevent-which.js | 2 +- .../caniuse-lite/data/features/lazyload.js | 2 +- .../caniuse-lite/data/features/let.js | 2 +- .../data/features/link-icon-png.js | 2 +- .../data/features/link-icon-svg.js | 2 +- .../data/features/link-rel-dns-prefetch.js | 2 +- .../data/features/link-rel-modulepreload.js | 2 +- .../data/features/link-rel-preconnect.js | 2 +- .../data/features/link-rel-prefetch.js | 2 +- .../data/features/link-rel-preload.js | 2 +- .../data/features/link-rel-prerender.js | 2 +- .../data/features/loading-lazy-attr.js | 2 +- .../data/features/localecompare.js | 2 +- .../data/features/magnetometer.js | 2 +- .../data/features/matchesselector.js | 2 +- .../caniuse-lite/data/features/matchmedia.js | 2 +- .../caniuse-lite/data/features/mathml.js | 2 +- .../caniuse-lite/data/features/maxlength.js | 2 +- .../data/features/media-attribute.js | 2 +- .../data/features/media-fragments.js | 2 +- .../data/features/media-session-api.js | 2 +- .../data/features/mediacapture-fromelement.js | 2 +- .../data/features/mediarecorder.js | 2 +- .../caniuse-lite/data/features/mediasource.js | 2 +- .../caniuse-lite/data/features/menu.js | 2 +- .../data/features/meta-theme-color.js | 2 +- .../caniuse-lite/data/features/meter.js | 2 +- .../caniuse-lite/data/features/midi.js | 2 +- .../caniuse-lite/data/features/minmaxwh.js | 2 +- .../caniuse-lite/data/features/mp3.js | 2 +- .../caniuse-lite/data/features/mpeg-dash.js | 2 +- .../caniuse-lite/data/features/mpeg4.js | 2 +- .../data/features/multibackgrounds.js | 2 +- .../caniuse-lite/data/features/multicolumn.js | 2 +- .../data/features/mutation-events.js | 2 +- .../data/features/mutationobserver.js | 2 +- .../data/features/namevalue-storage.js | 2 +- .../data/features/native-filesystem-api.js | 2 +- .../caniuse-lite/data/features/nav-timing.js | 2 +- .../data/features/navigator-language.js | 2 +- .../caniuse-lite/data/features/netinfo.js | 2 +- .../data/features/notifications.js | 2 +- .../data/features/object-entries.js | 2 +- .../caniuse-lite/data/features/object-fit.js | 2 +- .../data/features/object-observe.js | 2 +- .../data/features/object-values.js | 2 +- .../caniuse-lite/data/features/objectrtc.js | 2 +- .../data/features/offline-apps.js | 2 +- .../data/features/offscreencanvas.js | 2 +- .../caniuse-lite/data/features/ogg-vorbis.js | 2 +- .../caniuse-lite/data/features/ogv.js | 2 +- .../caniuse-lite/data/features/ol-reversed.js | 2 +- .../data/features/once-event-listener.js | 2 +- .../data/features/online-status.js | 2 +- .../caniuse-lite/data/features/opus.js | 2 +- .../data/features/orientation-sensor.js | 2 +- .../caniuse-lite/data/features/outline.js | 2 +- .../data/features/pad-start-end.js | 2 +- .../data/features/page-transition-events.js | 2 +- .../data/features/pagevisibility.js | 2 +- .../data/features/passive-event-listener.js | 2 +- .../data/features/passwordrules.js | 2 +- .../caniuse-lite/data/features/path2d.js | 2 +- .../data/features/payment-request.js | 2 +- .../caniuse-lite/data/features/pdf-viewer.js | 2 +- .../data/features/permissions-api.js | 2 +- .../data/features/permissions-policy.js | 2 +- .../data/features/picture-in-picture.js | 2 +- .../caniuse-lite/data/features/picture.js | 2 +- .../caniuse-lite/data/features/ping.js | 2 +- .../caniuse-lite/data/features/png-alpha.js | 2 +- .../data/features/pointer-events.js | 2 +- .../caniuse-lite/data/features/pointer.js | 2 +- .../caniuse-lite/data/features/pointerlock.js | 2 +- .../caniuse-lite/data/features/portals.js | 2 +- .../data/features/prefers-color-scheme.js | 2 +- .../data/features/prefers-reduced-motion.js | 2 +- .../data/features/private-class-fields.js | 2 +- .../features/private-methods-and-accessors.js | 2 +- .../caniuse-lite/data/features/progress.js | 2 +- .../data/features/promise-finally.js | 2 +- .../caniuse-lite/data/features/promises.js | 2 +- .../caniuse-lite/data/features/proximity.js | 2 +- .../caniuse-lite/data/features/proxy.js | 2 +- .../data/features/public-class-fields.js | 2 +- .../data/features/publickeypinning.js | 2 +- .../caniuse-lite/data/features/push-api.js | 2 +- .../data/features/queryselector.js | 2 +- .../data/features/readonly-attr.js | 2 +- .../data/features/referrer-policy.js | 2 +- .../data/features/registerprotocolhandler.js | 2 +- .../data/features/rel-noopener.js | 2 +- .../data/features/rel-noreferrer.js | 2 +- .../caniuse-lite/data/features/rellist.js | 2 +- .../caniuse-lite/data/features/rem.js | 2 +- .../data/features/requestanimationframe.js | 2 +- .../data/features/requestidlecallback.js | 2 +- .../data/features/resizeobserver.js | 2 +- .../data/features/resource-timing.js | 2 +- .../data/features/rest-parameters.js | 2 +- .../data/features/rtcpeerconnection.js | 2 +- .../caniuse-lite/data/features/ruby.js | 2 +- .../caniuse-lite/data/features/run-in.js | 2 +- .../features/same-site-cookie-attribute.js | 2 +- .../data/features/screen-orientation.js | 2 +- .../data/features/script-async.js | 2 +- .../data/features/script-defer.js | 2 +- .../data/features/scrollintoview.js | 2 +- .../data/features/scrollintoviewifneeded.js | 2 +- .../caniuse-lite/data/features/sdch.js | 2 +- .../data/features/selection-api.js | 2 +- .../data/features/server-timing.js | 2 +- .../data/features/serviceworkers.js | 2 +- .../data/features/setimmediate.js | 2 +- .../caniuse-lite/data/features/sha-2.js | 2 +- .../caniuse-lite/data/features/shadowdom.js | 2 +- .../caniuse-lite/data/features/shadowdomv1.js | 2 +- .../data/features/sharedarraybuffer.js | 2 +- .../data/features/sharedworkers.js | 2 +- .../caniuse-lite/data/features/sni.js | 2 +- .../caniuse-lite/data/features/spdy.js | 2 +- .../data/features/speech-recognition.js | 2 +- .../data/features/speech-synthesis.js | 2 +- .../data/features/spellcheck-attribute.js | 2 +- .../caniuse-lite/data/features/sql-storage.js | 2 +- .../caniuse-lite/data/features/srcset.js | 2 +- .../caniuse-lite/data/features/stream.js | 2 +- .../caniuse-lite/data/features/streams.js | 2 +- .../data/features/stricttransportsecurity.js | 2 +- .../data/features/style-scoped.js | 2 +- .../data/features/subresource-integrity.js | 2 +- .../caniuse-lite/data/features/svg-css.js | 2 +- .../caniuse-lite/data/features/svg-filters.js | 2 +- .../caniuse-lite/data/features/svg-fonts.js | 2 +- .../data/features/svg-fragment.js | 2 +- .../caniuse-lite/data/features/svg-html.js | 2 +- .../caniuse-lite/data/features/svg-html5.js | 2 +- .../caniuse-lite/data/features/svg-img.js | 2 +- .../caniuse-lite/data/features/svg-smil.js | 2 +- .../caniuse-lite/data/features/svg.js | 2 +- .../caniuse-lite/data/features/sxg.js | 2 +- .../data/features/tabindex-attr.js | 2 +- .../data/features/template-literals.js | 2 +- .../caniuse-lite/data/features/template.js | 2 +- .../caniuse-lite/data/features/temporal.js | 2 +- .../caniuse-lite/data/features/testfeat.js | 2 +- .../data/features/text-decoration.js | 2 +- .../data/features/text-emphasis.js | 2 +- .../data/features/text-overflow.js | 2 +- .../data/features/text-size-adjust.js | 2 +- .../caniuse-lite/data/features/text-stroke.js | 2 +- .../data/features/text-underline-offset.js | 2 +- .../caniuse-lite/data/features/textcontent.js | 2 +- .../caniuse-lite/data/features/textencoder.js | 2 +- .../caniuse-lite/data/features/tls1-1.js | 2 +- .../caniuse-lite/data/features/tls1-2.js | 2 +- .../caniuse-lite/data/features/tls1-3.js | 2 +- .../data/features/token-binding.js | 2 +- .../caniuse-lite/data/features/touch.js | 2 +- .../data/features/transforms2d.js | 2 +- .../data/features/transforms3d.js | 2 +- .../data/features/trusted-types.js | 2 +- .../caniuse-lite/data/features/ttf.js | 2 +- .../caniuse-lite/data/features/typedarrays.js | 2 +- .../caniuse-lite/data/features/u2f.js | 2 +- .../data/features/unhandledrejection.js | 2 +- .../data/features/upgradeinsecurerequests.js | 2 +- .../features/url-scroll-to-text-fragment.js | 2 +- .../caniuse-lite/data/features/url.js | 2 +- .../data/features/urlsearchparams.js | 2 +- .../caniuse-lite/data/features/use-strict.js | 2 +- .../data/features/user-select-none.js | 2 +- .../caniuse-lite/data/features/user-timing.js | 2 +- .../data/features/variable-fonts.js | 2 +- .../data/features/vector-effect.js | 2 +- .../caniuse-lite/data/features/vibration.js | 2 +- .../caniuse-lite/data/features/video.js | 2 +- .../caniuse-lite/data/features/videotracks.js | 2 +- .../data/features/viewport-unit-variants.js | 2 +- .../data/features/viewport-units.js | 2 +- .../caniuse-lite/data/features/wai-aria.js | 2 +- .../caniuse-lite/data/features/wake-lock.js | 2 +- .../caniuse-lite/data/features/wasm.js | 2 +- .../caniuse-lite/data/features/wav.js | 2 +- .../caniuse-lite/data/features/wbr-element.js | 2 +- .../data/features/web-animation.js | 2 +- .../data/features/web-app-manifest.js | 2 +- .../data/features/web-bluetooth.js | 2 +- .../caniuse-lite/data/features/web-serial.js | 2 +- .../caniuse-lite/data/features/web-share.js | 2 +- .../caniuse-lite/data/features/webauthn.js | 2 +- .../caniuse-lite/data/features/webgl.js | 2 +- .../caniuse-lite/data/features/webgl2.js | 2 +- .../caniuse-lite/data/features/webgpu.js | 2 +- .../caniuse-lite/data/features/webhid.js | 2 +- .../data/features/webkit-user-drag.js | 2 +- .../caniuse-lite/data/features/webm.js | 2 +- .../caniuse-lite/data/features/webnfc.js | 2 +- .../caniuse-lite/data/features/webp.js | 2 +- .../caniuse-lite/data/features/websockets.js | 2 +- .../caniuse-lite/data/features/webusb.js | 2 +- .../caniuse-lite/data/features/webvr.js | 2 +- .../caniuse-lite/data/features/webvtt.js | 2 +- .../caniuse-lite/data/features/webworkers.js | 2 +- .../caniuse-lite/data/features/webxr.js | 2 +- .../caniuse-lite/data/features/will-change.js | 2 +- .../caniuse-lite/data/features/woff.js | 2 +- .../caniuse-lite/data/features/woff2.js | 2 +- .../caniuse-lite/data/features/word-break.js | 2 +- .../caniuse-lite/data/features/wordwrap.js | 2 +- .../data/features/x-doc-messaging.js | 2 +- .../data/features/x-frame-options.js | 2 +- .../caniuse-lite/data/features/xhr2.js | 2 +- .../caniuse-lite/data/features/xhtml.js | 2 +- .../caniuse-lite/data/features/xhtmlsmil.js | 2 +- .../data/features/xml-serializer.js | 2 +- .../node_modules/caniuse-lite/package.json | 2 +- .../full-chromium-versions.js | 33 +- .../full-chromium-versions.json | 2 +- .../electron-to-chromium/full-versions.js | 23 +- .../electron-to-chromium/full-versions.json | 2 +- .../electron-to-chromium/package.json | 4 +- .../eslint/node_modules/flatted/esm.js | 2 + .../eslint/node_modules/flatted/index.js | 20 +- .../eslint/node_modules/flatted/min.js | 4 +- .../eslint/node_modules/flatted/package.json | 26 +- .../update-browserslist-db/LICENSE | 20 + .../update-browserslist-db/cli.js | 41 ++ .../index.js} | 180 +++--- .../update-browserslist-db/package.json | 38 ++ tools/node_modules/eslint/package.json | 3 +- 1007 files changed, 2412 insertions(+), 1937 deletions(-) create mode 120000 tools/node_modules/eslint/node_modules/.bin/browserslist-lint delete mode 100644 tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep-browser.js delete mode 100644 tools/node_modules/eslint/node_modules/@babel/types/lib/converters/Scope.js create mode 100644 tools/node_modules/eslint/node_modules/browserslist/parse.js create mode 100644 tools/node_modules/eslint/node_modules/flatted/esm.js create mode 100644 tools/node_modules/eslint/node_modules/update-browserslist-db/LICENSE create mode 100755 tools/node_modules/eslint/node_modules/update-browserslist-db/cli.js rename tools/node_modules/eslint/node_modules/{browserslist/update-db.js => update-browserslist-db/index.js} (59%) create mode 100644 tools/node_modules/eslint/node_modules/update-browserslist-db/package.json diff --git a/tools/node_modules/eslint/lib/linter/linter.js b/tools/node_modules/eslint/lib/linter/linter.js index bd1bbb7ca8219f..95a83366a37486 100644 --- a/tools/node_modules/eslint/lib/linter/linter.js +++ b/tools/node_modules/eslint/lib/linter/linter.js @@ -1119,6 +1119,10 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO }; } + if (typeof ruleListeners === "undefined" || ruleListeners === null) { + throw new Error(`The create() function for rule '${ruleId}' did not return an object.`); + } + // add all the selectors from the rule as listeners Object.keys(ruleListeners).forEach(selector => { const ruleListener = timing.enabled diff --git a/tools/node_modules/eslint/lib/rules/accessor-pairs.js b/tools/node_modules/eslint/lib/rules/accessor-pairs.js index 33887affef2204..112d0ddb8c1176 100644 --- a/tools/node_modules/eslint/lib/rules/accessor-pairs.js +++ b/tools/node_modules/eslint/lib/rules/accessor-pairs.js @@ -140,7 +140,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce getter and setter pairs in objects and classes", + description: "Enforce getter and setter pairs in objects and classes", recommended: false, url: "https://eslint.org/docs/rules/accessor-pairs" }, diff --git a/tools/node_modules/eslint/lib/rules/array-bracket-newline.js b/tools/node_modules/eslint/lib/rules/array-bracket-newline.js index 0beb138c4e2e79..deeae818fb54de 100644 --- a/tools/node_modules/eslint/lib/rules/array-bracket-newline.js +++ b/tools/node_modules/eslint/lib/rules/array-bracket-newline.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "enforce linebreaks after opening and before closing array brackets", + description: "Enforce linebreaks after opening and before closing array brackets", recommended: false, url: "https://eslint.org/docs/rules/array-bracket-newline" }, diff --git a/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js b/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js index e4912ec17a1a12..5e7cea9ba587c2 100644 --- a/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js +++ b/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing inside array brackets", + description: "Enforce consistent spacing inside array brackets", recommended: false, url: "https://eslint.org/docs/rules/array-bracket-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/array-callback-return.js b/tools/node_modules/eslint/lib/rules/array-callback-return.js index fba414c1ef4f50..eb5aa474b27c62 100644 --- a/tools/node_modules/eslint/lib/rules/array-callback-return.js +++ b/tools/node_modules/eslint/lib/rules/array-callback-return.js @@ -139,7 +139,7 @@ module.exports = { type: "problem", docs: { - description: "enforce `return` statements in callbacks of array methods", + description: "Enforce `return` statements in callbacks of array methods", recommended: false, url: "https://eslint.org/docs/rules/array-callback-return" }, diff --git a/tools/node_modules/eslint/lib/rules/array-element-newline.js b/tools/node_modules/eslint/lib/rules/array-element-newline.js index 77f5fc9e9ce72f..c762755bd8383c 100644 --- a/tools/node_modules/eslint/lib/rules/array-element-newline.js +++ b/tools/node_modules/eslint/lib/rules/array-element-newline.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "enforce line breaks after each array element", + description: "Enforce line breaks after each array element", recommended: false, url: "https://eslint.org/docs/rules/array-element-newline" }, diff --git a/tools/node_modules/eslint/lib/rules/arrow-body-style.js b/tools/node_modules/eslint/lib/rules/arrow-body-style.js index 7a141b0d788a15..8bb9e8c4ffa841 100644 --- a/tools/node_modules/eslint/lib/rules/arrow-body-style.js +++ b/tools/node_modules/eslint/lib/rules/arrow-body-style.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "require braces around arrow function bodies", + description: "Require braces around arrow function bodies", recommended: false, url: "https://eslint.org/docs/rules/arrow-body-style" }, diff --git a/tools/node_modules/eslint/lib/rules/arrow-parens.js b/tools/node_modules/eslint/lib/rules/arrow-parens.js index 779ab6fe9c9c2a..05012fc37b7f81 100644 --- a/tools/node_modules/eslint/lib/rules/arrow-parens.js +++ b/tools/node_modules/eslint/lib/rules/arrow-parens.js @@ -33,7 +33,7 @@ module.exports = { type: "layout", docs: { - description: "require parentheses around arrow function arguments", + description: "Require parentheses around arrow function arguments", recommended: false, url: "https://eslint.org/docs/rules/arrow-parens" }, diff --git a/tools/node_modules/eslint/lib/rules/arrow-spacing.js b/tools/node_modules/eslint/lib/rules/arrow-spacing.js index 9fdcdd58ba70ad..2dcc175da06b16 100644 --- a/tools/node_modules/eslint/lib/rules/arrow-spacing.js +++ b/tools/node_modules/eslint/lib/rules/arrow-spacing.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing before and after the arrow in arrow functions", + description: "Enforce consistent spacing before and after the arrow in arrow functions", recommended: false, url: "https://eslint.org/docs/rules/arrow-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/block-scoped-var.js b/tools/node_modules/eslint/lib/rules/block-scoped-var.js index 3a277863ef2e70..731d06d0f3b2a8 100644 --- a/tools/node_modules/eslint/lib/rules/block-scoped-var.js +++ b/tools/node_modules/eslint/lib/rules/block-scoped-var.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce the use of variables within the scope they are defined", + description: "Enforce the use of variables within the scope they are defined", recommended: false, url: "https://eslint.org/docs/rules/block-scoped-var" }, diff --git a/tools/node_modules/eslint/lib/rules/block-spacing.js b/tools/node_modules/eslint/lib/rules/block-spacing.js index 53303a9b0041cb..9fbf1594c47d8b 100644 --- a/tools/node_modules/eslint/lib/rules/block-spacing.js +++ b/tools/node_modules/eslint/lib/rules/block-spacing.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "disallow or enforce spaces inside of blocks after opening block and before closing block", + description: "Disallow or enforce spaces inside of blocks after opening block and before closing block", recommended: false, url: "https://eslint.org/docs/rules/block-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/brace-style.js b/tools/node_modules/eslint/lib/rules/brace-style.js index f4adb9490ebdf6..52d89201b9e087 100644 --- a/tools/node_modules/eslint/lib/rules/brace-style.js +++ b/tools/node_modules/eslint/lib/rules/brace-style.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent brace style for blocks", + description: "Enforce consistent brace style for blocks", recommended: false, url: "https://eslint.org/docs/rules/brace-style" }, diff --git a/tools/node_modules/eslint/lib/rules/callback-return.js b/tools/node_modules/eslint/lib/rules/callback-return.js index 34b74631f0c81e..fe5b649b582f5f 100644 --- a/tools/node_modules/eslint/lib/rules/callback-return.js +++ b/tools/node_modules/eslint/lib/rules/callback-return.js @@ -19,7 +19,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `return` statements after callbacks", + description: "Require `return` statements after callbacks", recommended: false, url: "https://eslint.org/docs/rules/callback-return" }, diff --git a/tools/node_modules/eslint/lib/rules/camelcase.js b/tools/node_modules/eslint/lib/rules/camelcase.js index e4761466902e5c..ee1b6bf598d31e 100644 --- a/tools/node_modules/eslint/lib/rules/camelcase.js +++ b/tools/node_modules/eslint/lib/rules/camelcase.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce camelcase naming convention", + description: "Enforce camelcase naming convention", recommended: false, url: "https://eslint.org/docs/rules/camelcase" }, diff --git a/tools/node_modules/eslint/lib/rules/capitalized-comments.js b/tools/node_modules/eslint/lib/rules/capitalized-comments.js index dffe956500334d..ba798d428580b2 100644 --- a/tools/node_modules/eslint/lib/rules/capitalized-comments.js +++ b/tools/node_modules/eslint/lib/rules/capitalized-comments.js @@ -105,7 +105,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce or disallow capitalization of the first letter of a comment", + description: "Enforce or disallow capitalization of the first letter of a comment", recommended: false, url: "https://eslint.org/docs/rules/capitalized-comments" }, diff --git a/tools/node_modules/eslint/lib/rules/class-methods-use-this.js b/tools/node_modules/eslint/lib/rules/class-methods-use-this.js index 1af6084ed8be78..05a915867c3728 100644 --- a/tools/node_modules/eslint/lib/rules/class-methods-use-this.js +++ b/tools/node_modules/eslint/lib/rules/class-methods-use-this.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce that class methods utilize `this`", + description: "Enforce that class methods utilize `this`", recommended: false, url: "https://eslint.org/docs/rules/class-methods-use-this" }, diff --git a/tools/node_modules/eslint/lib/rules/comma-dangle.js b/tools/node_modules/eslint/lib/rules/comma-dangle.js index 063e1cb697f408..9518da90e9e5ec 100644 --- a/tools/node_modules/eslint/lib/rules/comma-dangle.js +++ b/tools/node_modules/eslint/lib/rules/comma-dangle.js @@ -76,7 +76,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow trailing commas", + description: "Require or disallow trailing commas", recommended: false, url: "https://eslint.org/docs/rules/comma-dangle" }, diff --git a/tools/node_modules/eslint/lib/rules/comma-spacing.js b/tools/node_modules/eslint/lib/rules/comma-spacing.js index 23a51752814983..8cc8059b5ff113 100644 --- a/tools/node_modules/eslint/lib/rules/comma-spacing.js +++ b/tools/node_modules/eslint/lib/rules/comma-spacing.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing before and after commas", + description: "Enforce consistent spacing before and after commas", recommended: false, url: "https://eslint.org/docs/rules/comma-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/comma-style.js b/tools/node_modules/eslint/lib/rules/comma-style.js index cbcbe3ae15b0b1..4969f59d7ef981 100644 --- a/tools/node_modules/eslint/lib/rules/comma-style.js +++ b/tools/node_modules/eslint/lib/rules/comma-style.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent comma style", + description: "Enforce consistent comma style", recommended: false, url: "https://eslint.org/docs/rules/comma-style" }, diff --git a/tools/node_modules/eslint/lib/rules/complexity.js b/tools/node_modules/eslint/lib/rules/complexity.js index b2355556af9d24..541d3a9bb9ad3c 100644 --- a/tools/node_modules/eslint/lib/rules/complexity.js +++ b/tools/node_modules/eslint/lib/rules/complexity.js @@ -23,7 +23,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum cyclomatic complexity allowed in a program", + description: "Enforce a maximum cyclomatic complexity allowed in a program", recommended: false, url: "https://eslint.org/docs/rules/complexity" }, diff --git a/tools/node_modules/eslint/lib/rules/computed-property-spacing.js b/tools/node_modules/eslint/lib/rules/computed-property-spacing.js index 4850a8b651ffe9..3d033fc00bd9ac 100644 --- a/tools/node_modules/eslint/lib/rules/computed-property-spacing.js +++ b/tools/node_modules/eslint/lib/rules/computed-property-spacing.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing inside computed property brackets", + description: "Enforce consistent spacing inside computed property brackets", recommended: false, url: "https://eslint.org/docs/rules/computed-property-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/consistent-return.js b/tools/node_modules/eslint/lib/rules/consistent-return.js index fffb4357b65b7a..f0072974d11de6 100644 --- a/tools/node_modules/eslint/lib/rules/consistent-return.js +++ b/tools/node_modules/eslint/lib/rules/consistent-return.js @@ -46,7 +46,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `return` statements to either always or never specify values", + description: "Require `return` statements to either always or never specify values", recommended: false, url: "https://eslint.org/docs/rules/consistent-return" }, diff --git a/tools/node_modules/eslint/lib/rules/consistent-this.js b/tools/node_modules/eslint/lib/rules/consistent-this.js index 2aa079146385fb..947873b8e4a75b 100644 --- a/tools/node_modules/eslint/lib/rules/consistent-this.js +++ b/tools/node_modules/eslint/lib/rules/consistent-this.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce consistent naming when capturing the current execution context", + description: "Enforce consistent naming when capturing the current execution context", recommended: false, url: "https://eslint.org/docs/rules/consistent-this" }, diff --git a/tools/node_modules/eslint/lib/rules/constructor-super.js b/tools/node_modules/eslint/lib/rules/constructor-super.js index defdb91d69dba3..fff658471b0dce 100644 --- a/tools/node_modules/eslint/lib/rules/constructor-super.js +++ b/tools/node_modules/eslint/lib/rules/constructor-super.js @@ -122,7 +122,7 @@ module.exports = { type: "problem", docs: { - description: "require `super()` calls in constructors", + description: "Require `super()` calls in constructors", recommended: true, url: "https://eslint.org/docs/rules/constructor-super" }, diff --git a/tools/node_modules/eslint/lib/rules/curly.js b/tools/node_modules/eslint/lib/rules/curly.js index 29e73953da6f46..7b5d140fe66b44 100644 --- a/tools/node_modules/eslint/lib/rules/curly.js +++ b/tools/node_modules/eslint/lib/rules/curly.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce consistent brace style for all control statements", + description: "Enforce consistent brace style for all control statements", recommended: false, url: "https://eslint.org/docs/rules/curly" }, diff --git a/tools/node_modules/eslint/lib/rules/default-case-last.js b/tools/node_modules/eslint/lib/rules/default-case-last.js index 34be2894e41047..313a0d8c904e23 100644 --- a/tools/node_modules/eslint/lib/rules/default-case-last.js +++ b/tools/node_modules/eslint/lib/rules/default-case-last.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce default clauses in switch statements to be last", + description: "Enforce default clauses in switch statements to be last", recommended: false, url: "https://eslint.org/docs/rules/default-case-last" }, diff --git a/tools/node_modules/eslint/lib/rules/default-case.js b/tools/node_modules/eslint/lib/rules/default-case.js index 6ce238529d069f..f28de1af906fb4 100644 --- a/tools/node_modules/eslint/lib/rules/default-case.js +++ b/tools/node_modules/eslint/lib/rules/default-case.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `default` cases in `switch` statements", + description: "Require `default` cases in `switch` statements", recommended: false, url: "https://eslint.org/docs/rules/default-case" }, diff --git a/tools/node_modules/eslint/lib/rules/default-param-last.js b/tools/node_modules/eslint/lib/rules/default-param-last.js index ea12a2a558a05b..61df5f6d2eb6fc 100644 --- a/tools/node_modules/eslint/lib/rules/default-param-last.js +++ b/tools/node_modules/eslint/lib/rules/default-param-last.js @@ -11,7 +11,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce default parameters to be last", + description: "Enforce default parameters to be last", recommended: false, url: "https://eslint.org/docs/rules/default-param-last" }, diff --git a/tools/node_modules/eslint/lib/rules/dot-location.js b/tools/node_modules/eslint/lib/rules/dot-location.js index 9dea4f25cf7824..36b50b284cfe99 100644 --- a/tools/node_modules/eslint/lib/rules/dot-location.js +++ b/tools/node_modules/eslint/lib/rules/dot-location.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent newlines before and after dots", + description: "Enforce consistent newlines before and after dots", recommended: false, url: "https://eslint.org/docs/rules/dot-location" }, diff --git a/tools/node_modules/eslint/lib/rules/dot-notation.js b/tools/node_modules/eslint/lib/rules/dot-notation.js index 90ba6d83b7638c..5f6e818cb49040 100644 --- a/tools/node_modules/eslint/lib/rules/dot-notation.js +++ b/tools/node_modules/eslint/lib/rules/dot-notation.js @@ -26,7 +26,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce dot notation whenever possible", + description: "Enforce dot notation whenever possible", recommended: false, url: "https://eslint.org/docs/rules/dot-notation" }, diff --git a/tools/node_modules/eslint/lib/rules/eol-last.js b/tools/node_modules/eslint/lib/rules/eol-last.js index 393b934125ea8c..fb87971fc73358 100644 --- a/tools/node_modules/eslint/lib/rules/eol-last.js +++ b/tools/node_modules/eslint/lib/rules/eol-last.js @@ -14,7 +14,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow newline at the end of files", + description: "Require or disallow newline at the end of files", recommended: false, url: "https://eslint.org/docs/rules/eol-last" }, diff --git a/tools/node_modules/eslint/lib/rules/eqeqeq.js b/tools/node_modules/eslint/lib/rules/eqeqeq.js index b5d784dad6e61b..b3990e214d0214 100644 --- a/tools/node_modules/eslint/lib/rules/eqeqeq.js +++ b/tools/node_modules/eslint/lib/rules/eqeqeq.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "require the use of `===` and `!==`", + description: "Require the use of `===` and `!==`", recommended: false, url: "https://eslint.org/docs/rules/eqeqeq" }, diff --git a/tools/node_modules/eslint/lib/rules/for-direction.js b/tools/node_modules/eslint/lib/rules/for-direction.js index d3d825a5766132..7df3d7e4802819 100644 --- a/tools/node_modules/eslint/lib/rules/for-direction.js +++ b/tools/node_modules/eslint/lib/rules/for-direction.js @@ -15,7 +15,7 @@ module.exports = { type: "problem", docs: { - description: "enforce \"for\" loop update clause moving the counter in the right direction.", + description: "Enforce \"for\" loop update clause moving the counter in the right direction.", recommended: true, url: "https://eslint.org/docs/rules/for-direction" }, diff --git a/tools/node_modules/eslint/lib/rules/func-call-spacing.js b/tools/node_modules/eslint/lib/rules/func-call-spacing.js index 0391d99c76323e..fec6763a2cdf80 100644 --- a/tools/node_modules/eslint/lib/rules/func-call-spacing.js +++ b/tools/node_modules/eslint/lib/rules/func-call-spacing.js @@ -21,7 +21,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow spacing between function identifiers and their invocations", + description: "Require or disallow spacing between function identifiers and their invocations", recommended: false, url: "https://eslint.org/docs/rules/func-call-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/func-name-matching.js b/tools/node_modules/eslint/lib/rules/func-name-matching.js index 9cee5fe019ac0c..391b2a2783639e 100644 --- a/tools/node_modules/eslint/lib/rules/func-name-matching.js +++ b/tools/node_modules/eslint/lib/rules/func-name-matching.js @@ -74,7 +74,7 @@ module.exports = { type: "suggestion", docs: { - description: "require function names to match the name of the variable or property to which they are assigned", + description: "Require function names to match the name of the variable or property to which they are assigned", recommended: false, url: "https://eslint.org/docs/rules/func-name-matching" }, diff --git a/tools/node_modules/eslint/lib/rules/func-names.js b/tools/node_modules/eslint/lib/rules/func-names.js index c7b2072e177d34..ee4664592f267d 100644 --- a/tools/node_modules/eslint/lib/rules/func-names.js +++ b/tools/node_modules/eslint/lib/rules/func-names.js @@ -30,7 +30,7 @@ module.exports = { type: "suggestion", docs: { - description: "require or disallow named `function` expressions", + description: "Require or disallow named `function` expressions", recommended: false, url: "https://eslint.org/docs/rules/func-names" }, diff --git a/tools/node_modules/eslint/lib/rules/func-style.js b/tools/node_modules/eslint/lib/rules/func-style.js index f71574890c8916..0e1ba9fab0e782 100644 --- a/tools/node_modules/eslint/lib/rules/func-style.js +++ b/tools/node_modules/eslint/lib/rules/func-style.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce the consistent use of either `function` declarations or expressions", + description: "Enforce the consistent use of either `function` declarations or expressions", recommended: false, url: "https://eslint.org/docs/rules/func-style" }, diff --git a/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js b/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js index f3cfeee703aa53..46610914622d23 100644 --- a/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js +++ b/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "enforce line breaks between arguments of a function call", + description: "Enforce line breaks between arguments of a function call", recommended: false, url: "https://eslint.org/docs/rules/function-call-argument-newline" }, diff --git a/tools/node_modules/eslint/lib/rules/function-paren-newline.js b/tools/node_modules/eslint/lib/rules/function-paren-newline.js index cad27b9927d1ef..e61d17be603226 100644 --- a/tools/node_modules/eslint/lib/rules/function-paren-newline.js +++ b/tools/node_modules/eslint/lib/rules/function-paren-newline.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent line breaks inside function parentheses", + description: "Enforce consistent line breaks inside function parentheses", recommended: false, url: "https://eslint.org/docs/rules/function-paren-newline" }, diff --git a/tools/node_modules/eslint/lib/rules/generator-star-spacing.js b/tools/node_modules/eslint/lib/rules/generator-star-spacing.js index 28e81013fcb95e..d32b21fff5c54f 100644 --- a/tools/node_modules/eslint/lib/rules/generator-star-spacing.js +++ b/tools/node_modules/eslint/lib/rules/generator-star-spacing.js @@ -31,7 +31,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing around `*` operators in generator functions", + description: "Enforce consistent spacing around `*` operators in generator functions", recommended: false, url: "https://eslint.org/docs/rules/generator-star-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/getter-return.js b/tools/node_modules/eslint/lib/rules/getter-return.js index 03cfce2cf1abc9..5209ab1504bd48 100644 --- a/tools/node_modules/eslint/lib/rules/getter-return.js +++ b/tools/node_modules/eslint/lib/rules/getter-return.js @@ -35,7 +35,7 @@ module.exports = { type: "problem", docs: { - description: "enforce `return` statements in getters", + description: "Enforce `return` statements in getters", recommended: true, url: "https://eslint.org/docs/rules/getter-return" }, diff --git a/tools/node_modules/eslint/lib/rules/global-require.js b/tools/node_modules/eslint/lib/rules/global-require.js index 71a2bf1ac493d8..77ce5d1082749c 100644 --- a/tools/node_modules/eslint/lib/rules/global-require.js +++ b/tools/node_modules/eslint/lib/rules/global-require.js @@ -58,7 +58,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `require()` calls to be placed at top-level module scope", + description: "Require `require()` calls to be placed at top-level module scope", recommended: false, url: "https://eslint.org/docs/rules/global-require" }, diff --git a/tools/node_modules/eslint/lib/rules/grouped-accessor-pairs.js b/tools/node_modules/eslint/lib/rules/grouped-accessor-pairs.js index 0fe6f91e4db0fa..21374be21011f8 100644 --- a/tools/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +++ b/tools/node_modules/eslint/lib/rules/grouped-accessor-pairs.js @@ -96,7 +96,7 @@ module.exports = { type: "suggestion", docs: { - description: "require grouped accessor pairs in object literals and classes", + description: "Require grouped accessor pairs in object literals and classes", recommended: false, url: "https://eslint.org/docs/rules/grouped-accessor-pairs" }, diff --git a/tools/node_modules/eslint/lib/rules/guard-for-in.js b/tools/node_modules/eslint/lib/rules/guard-for-in.js index 1c52af7d4cde20..3b99143fe214d0 100644 --- a/tools/node_modules/eslint/lib/rules/guard-for-in.js +++ b/tools/node_modules/eslint/lib/rules/guard-for-in.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `for-in` loops to include an `if` statement", + description: "Require `for-in` loops to include an `if` statement", recommended: false, url: "https://eslint.org/docs/rules/guard-for-in" }, diff --git a/tools/node_modules/eslint/lib/rules/handle-callback-err.js b/tools/node_modules/eslint/lib/rules/handle-callback-err.js index f370407743a502..5189564b668357 100644 --- a/tools/node_modules/eslint/lib/rules/handle-callback-err.js +++ b/tools/node_modules/eslint/lib/rules/handle-callback-err.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "require error handling in callbacks", + description: "Require error handling in callbacks", recommended: false, url: "https://eslint.org/docs/rules/handle-callback-err" }, diff --git a/tools/node_modules/eslint/lib/rules/id-blacklist.js b/tools/node_modules/eslint/lib/rules/id-blacklist.js index f7e04ae73765f9..5ea61e94f69f24 100644 --- a/tools/node_modules/eslint/lib/rules/id-blacklist.js +++ b/tools/node_modules/eslint/lib/rules/id-blacklist.js @@ -119,7 +119,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified identifiers", + description: "Disallow specified identifiers", recommended: false, url: "https://eslint.org/docs/rules/id-blacklist" }, diff --git a/tools/node_modules/eslint/lib/rules/id-denylist.js b/tools/node_modules/eslint/lib/rules/id-denylist.js index a0b1f416f46db4..fe0a0b50bd2c48 100644 --- a/tools/node_modules/eslint/lib/rules/id-denylist.js +++ b/tools/node_modules/eslint/lib/rules/id-denylist.js @@ -99,7 +99,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified identifiers", + description: "Disallow specified identifiers", recommended: false, url: "https://eslint.org/docs/rules/id-denylist" }, diff --git a/tools/node_modules/eslint/lib/rules/id-length.js b/tools/node_modules/eslint/lib/rules/id-length.js index 3701c66e347a72..99f833fc73b4df 100644 --- a/tools/node_modules/eslint/lib/rules/id-length.js +++ b/tools/node_modules/eslint/lib/rules/id-length.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce minimum and maximum identifier lengths", + description: "Enforce minimum and maximum identifier lengths", recommended: false, url: "https://eslint.org/docs/rules/id-length" }, diff --git a/tools/node_modules/eslint/lib/rules/id-match.js b/tools/node_modules/eslint/lib/rules/id-match.js index 8713a5f9f8ba54..ec87af18d5b767 100644 --- a/tools/node_modules/eslint/lib/rules/id-match.js +++ b/tools/node_modules/eslint/lib/rules/id-match.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "require identifiers to match a specified regular expression", + description: "Require identifiers to match a specified regular expression", recommended: false, url: "https://eslint.org/docs/rules/id-match" }, diff --git a/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js b/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js index 71b2437eef83bc..c765960267f7da 100644 --- a/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +++ b/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "enforce the location of arrow function bodies", + description: "Enforce the location of arrow function bodies", recommended: false, url: "https://eslint.org/docs/rules/implicit-arrow-linebreak" }, diff --git a/tools/node_modules/eslint/lib/rules/indent-legacy.js b/tools/node_modules/eslint/lib/rules/indent-legacy.js index c5be4a5d13494d..06de8c9a754f49 100644 --- a/tools/node_modules/eslint/lib/rules/indent-legacy.js +++ b/tools/node_modules/eslint/lib/rules/indent-legacy.js @@ -26,7 +26,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent indentation", + description: "Enforce consistent indentation", recommended: false, url: "https://eslint.org/docs/rules/indent-legacy" }, diff --git a/tools/node_modules/eslint/lib/rules/indent.js b/tools/node_modules/eslint/lib/rules/indent.js index bc6aa9e5c0ce86..b974a6ab1509d5 100644 --- a/tools/node_modules/eslint/lib/rules/indent.js +++ b/tools/node_modules/eslint/lib/rules/indent.js @@ -500,7 +500,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent indentation", + description: "Enforce consistent indentation", recommended: false, url: "https://eslint.org/docs/rules/indent" }, @@ -1211,7 +1211,7 @@ module.exports = { } }, - "DoWhileStatement, WhileStatement, ForInStatement, ForOfStatement": node => addBlocklessNodeIndent(node.body), + "DoWhileStatement, WhileStatement, ForInStatement, ForOfStatement, WithStatement": node => addBlocklessNodeIndent(node.body), ExportNamedDeclaration(node) { if (node.declaration === null) { @@ -1268,7 +1268,7 @@ module.exports = { * * Traversal into the node sets indentation of the semicolon, so we need to override it on exit. */ - ":matches(DoWhileStatement, ForStatement, ForInStatement, ForOfStatement, IfStatement, WhileStatement):exit"(node) { + ":matches(DoWhileStatement, ForStatement, ForInStatement, ForOfStatement, IfStatement, WhileStatement, WithStatement):exit"(node) { let nodesToCheck; if (node.type === "IfStatement") { diff --git a/tools/node_modules/eslint/lib/rules/init-declarations.js b/tools/node_modules/eslint/lib/rules/init-declarations.js index d952b8925ed335..b2ddf64fb4b78e 100644 --- a/tools/node_modules/eslint/lib/rules/init-declarations.js +++ b/tools/node_modules/eslint/lib/rules/init-declarations.js @@ -48,7 +48,7 @@ module.exports = { type: "suggestion", docs: { - description: "require or disallow initialization in variable declarations", + description: "Require or disallow initialization in variable declarations", recommended: false, url: "https://eslint.org/docs/rules/init-declarations" }, diff --git a/tools/node_modules/eslint/lib/rules/jsx-quotes.js b/tools/node_modules/eslint/lib/rules/jsx-quotes.js index f63dfd608bc057..6745bb64b368ed 100644 --- a/tools/node_modules/eslint/lib/rules/jsx-quotes.js +++ b/tools/node_modules/eslint/lib/rules/jsx-quotes.js @@ -42,7 +42,7 @@ module.exports = { type: "layout", docs: { - description: "enforce the consistent use of either double or single quotes in JSX attributes", + description: "Enforce the consistent use of either double or single quotes in JSX attributes", recommended: false, url: "https://eslint.org/docs/rules/jsx-quotes" }, diff --git a/tools/node_modules/eslint/lib/rules/key-spacing.js b/tools/node_modules/eslint/lib/rules/key-spacing.js index ce8bad5bb35490..a33ef29891e91b 100644 --- a/tools/node_modules/eslint/lib/rules/key-spacing.js +++ b/tools/node_modules/eslint/lib/rules/key-spacing.js @@ -139,7 +139,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing between keys and values in object literal properties", + description: "Enforce consistent spacing between keys and values in object literal properties", recommended: false, url: "https://eslint.org/docs/rules/key-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/keyword-spacing.js b/tools/node_modules/eslint/lib/rules/keyword-spacing.js index 16a65d786966c4..59a500f5bfc272 100644 --- a/tools/node_modules/eslint/lib/rules/keyword-spacing.js +++ b/tools/node_modules/eslint/lib/rules/keyword-spacing.js @@ -67,7 +67,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing before and after keywords", + description: "Enforce consistent spacing before and after keywords", recommended: false, url: "https://eslint.org/docs/rules/keyword-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/line-comment-position.js b/tools/node_modules/eslint/lib/rules/line-comment-position.js index 9ce2831dec6d62..0631ebe6f32e44 100644 --- a/tools/node_modules/eslint/lib/rules/line-comment-position.js +++ b/tools/node_modules/eslint/lib/rules/line-comment-position.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "enforce position of line comments", + description: "Enforce position of line comments", recommended: false, url: "https://eslint.org/docs/rules/line-comment-position" }, diff --git a/tools/node_modules/eslint/lib/rules/linebreak-style.js b/tools/node_modules/eslint/lib/rules/linebreak-style.js index 483788aa6ef3de..a5dc39d7967ac1 100644 --- a/tools/node_modules/eslint/lib/rules/linebreak-style.js +++ b/tools/node_modules/eslint/lib/rules/linebreak-style.js @@ -21,7 +21,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent linebreak style", + description: "Enforce consistent linebreak style", recommended: false, url: "https://eslint.org/docs/rules/linebreak-style" }, 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 6b1cd5f848bd2c..974de21ed1d9d5 100644 --- a/tools/node_modules/eslint/lib/rules/lines-around-comment.js +++ b/tools/node_modules/eslint/lib/rules/lines-around-comment.js @@ -55,7 +55,7 @@ module.exports = { type: "layout", docs: { - description: "require empty lines around comments", + description: "Require empty lines around comments", recommended: false, url: "https://eslint.org/docs/rules/lines-around-comment" }, diff --git a/tools/node_modules/eslint/lib/rules/lines-around-directive.js b/tools/node_modules/eslint/lib/rules/lines-around-directive.js index 21884f162e8031..816efc979b78cd 100644 --- a/tools/node_modules/eslint/lib/rules/lines-around-directive.js +++ b/tools/node_modules/eslint/lib/rules/lines-around-directive.js @@ -18,7 +18,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow newlines around directives", + description: "Require or disallow newlines around directives", recommended: false, url: "https://eslint.org/docs/rules/lines-around-directive" }, diff --git a/tools/node_modules/eslint/lib/rules/lines-between-class-members.js b/tools/node_modules/eslint/lib/rules/lines-between-class-members.js index 1d6b7e7693eadc..26357aa3dde716 100644 --- a/tools/node_modules/eslint/lib/rules/lines-between-class-members.js +++ b/tools/node_modules/eslint/lib/rules/lines-between-class-members.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow an empty line between class members", + description: "Require or disallow an empty line between class members", recommended: false, url: "https://eslint.org/docs/rules/lines-between-class-members" }, diff --git a/tools/node_modules/eslint/lib/rules/max-classes-per-file.js b/tools/node_modules/eslint/lib/rules/max-classes-per-file.js index 2157bebe4a9add..0bd626fe6e88db 100644 --- a/tools/node_modules/eslint/lib/rules/max-classes-per-file.js +++ b/tools/node_modules/eslint/lib/rules/max-classes-per-file.js @@ -19,7 +19,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum number of classes per file", + description: "Enforce a maximum number of classes per file", recommended: false, url: "https://eslint.org/docs/rules/max-classes-per-file" }, diff --git a/tools/node_modules/eslint/lib/rules/max-depth.js b/tools/node_modules/eslint/lib/rules/max-depth.js index 8006ffdef75634..6b428ced763573 100644 --- a/tools/node_modules/eslint/lib/rules/max-depth.js +++ b/tools/node_modules/eslint/lib/rules/max-depth.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum depth that blocks can be nested", + description: "Enforce a maximum depth that blocks can be nested", recommended: false, url: "https://eslint.org/docs/rules/max-depth" }, diff --git a/tools/node_modules/eslint/lib/rules/max-len.js b/tools/node_modules/eslint/lib/rules/max-len.js index d05559e5baf2ef..0d3b2af7026c1b 100644 --- a/tools/node_modules/eslint/lib/rules/max-len.js +++ b/tools/node_modules/eslint/lib/rules/max-len.js @@ -69,7 +69,7 @@ module.exports = { type: "layout", docs: { - description: "enforce a maximum line length", + description: "Enforce a maximum line length", recommended: false, url: "https://eslint.org/docs/rules/max-len" }, diff --git a/tools/node_modules/eslint/lib/rules/max-lines-per-function.js b/tools/node_modules/eslint/lib/rules/max-lines-per-function.js index 5985a739e4babc..fad646cc0c31c7 100644 --- a/tools/node_modules/eslint/lib/rules/max-lines-per-function.js +++ b/tools/node_modules/eslint/lib/rules/max-lines-per-function.js @@ -71,7 +71,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum number of lines of code in a function", + description: "Enforce a maximum number of lines of code in a function", recommended: false, url: "https://eslint.org/docs/rules/max-lines-per-function" }, diff --git a/tools/node_modules/eslint/lib/rules/max-lines.js b/tools/node_modules/eslint/lib/rules/max-lines.js index 772f02aff08c09..d0e5bad3b2b722 100644 --- a/tools/node_modules/eslint/lib/rules/max-lines.js +++ b/tools/node_modules/eslint/lib/rules/max-lines.js @@ -34,7 +34,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum number of lines per file", + description: "Enforce a maximum number of lines per file", recommended: false, url: "https://eslint.org/docs/rules/max-lines" }, diff --git a/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js b/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js index 0d43050779068c..3764d5dee95993 100644 --- a/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js +++ b/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum depth that callbacks can be nested", + description: "Enforce a maximum depth that callbacks can be nested", recommended: false, url: "https://eslint.org/docs/rules/max-nested-callbacks" }, diff --git a/tools/node_modules/eslint/lib/rules/max-params.js b/tools/node_modules/eslint/lib/rules/max-params.js index 72379d217d69c9..8de1ab44b8ab54 100644 --- a/tools/node_modules/eslint/lib/rules/max-params.js +++ b/tools/node_modules/eslint/lib/rules/max-params.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum number of parameters in function definitions", + description: "Enforce a maximum number of parameters in function definitions", recommended: false, url: "https://eslint.org/docs/rules/max-params" }, diff --git a/tools/node_modules/eslint/lib/rules/max-statements-per-line.js b/tools/node_modules/eslint/lib/rules/max-statements-per-line.js index 61b508cf6cde26..ada9cf0fe5ef40 100644 --- a/tools/node_modules/eslint/lib/rules/max-statements-per-line.js +++ b/tools/node_modules/eslint/lib/rules/max-statements-per-line.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "enforce a maximum number of statements allowed per line", + description: "Enforce a maximum number of statements allowed per line", recommended: false, url: "https://eslint.org/docs/rules/max-statements-per-line" }, diff --git a/tools/node_modules/eslint/lib/rules/max-statements.js b/tools/node_modules/eslint/lib/rules/max-statements.js index 1f627b6843ee08..c598b1059d07dd 100644 --- a/tools/node_modules/eslint/lib/rules/max-statements.js +++ b/tools/node_modules/eslint/lib/rules/max-statements.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a maximum number of statements allowed in function blocks", + description: "Enforce a maximum number of statements allowed in function blocks", recommended: false, url: "https://eslint.org/docs/rules/max-statements" }, diff --git a/tools/node_modules/eslint/lib/rules/multiline-comment-style.js b/tools/node_modules/eslint/lib/rules/multiline-comment-style.js index 7985bc86270b8d..68cd666532dc30 100644 --- a/tools/node_modules/eslint/lib/rules/multiline-comment-style.js +++ b/tools/node_modules/eslint/lib/rules/multiline-comment-style.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce a particular style for multiline comments", + description: "Enforce a particular style for multiline comments", recommended: false, url: "https://eslint.org/docs/rules/multiline-comment-style" }, diff --git a/tools/node_modules/eslint/lib/rules/multiline-ternary.js b/tools/node_modules/eslint/lib/rules/multiline-ternary.js index 91aa5a1003116f..62c84bbfed851b 100644 --- a/tools/node_modules/eslint/lib/rules/multiline-ternary.js +++ b/tools/node_modules/eslint/lib/rules/multiline-ternary.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "enforce newlines between operands of ternary expressions", + description: "Enforce newlines between operands of ternary expressions", recommended: false, url: "https://eslint.org/docs/rules/multiline-ternary" }, diff --git a/tools/node_modules/eslint/lib/rules/new-cap.js b/tools/node_modules/eslint/lib/rules/new-cap.js index 466cfd4c585909..ad59fd90621e34 100644 --- a/tools/node_modules/eslint/lib/rules/new-cap.js +++ b/tools/node_modules/eslint/lib/rules/new-cap.js @@ -82,7 +82,7 @@ module.exports = { type: "suggestion", docs: { - description: "require constructor names to begin with a capital letter", + description: "Require constructor names to begin with a capital letter", recommended: false, url: "https://eslint.org/docs/rules/new-cap" }, diff --git a/tools/node_modules/eslint/lib/rules/new-parens.js b/tools/node_modules/eslint/lib/rules/new-parens.js index 8ee4a2e1d19361..f5a98a45d4de82 100644 --- a/tools/node_modules/eslint/lib/rules/new-parens.js +++ b/tools/node_modules/eslint/lib/rules/new-parens.js @@ -25,7 +25,7 @@ module.exports = { type: "layout", docs: { - description: "enforce or disallow parentheses when invoking a constructor with no arguments", + description: "Enforce or disallow parentheses when invoking a constructor with no arguments", recommended: false, url: "https://eslint.org/docs/rules/new-parens" }, diff --git a/tools/node_modules/eslint/lib/rules/newline-after-var.js b/tools/node_modules/eslint/lib/rules/newline-after-var.js index e519a3afb6becb..2b4d8584656919 100644 --- a/tools/node_modules/eslint/lib/rules/newline-after-var.js +++ b/tools/node_modules/eslint/lib/rules/newline-after-var.js @@ -22,7 +22,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow an empty line after variable declarations", + description: "Require or disallow an empty line after variable declarations", recommended: false, url: "https://eslint.org/docs/rules/newline-after-var" }, diff --git a/tools/node_modules/eslint/lib/rules/newline-before-return.js b/tools/node_modules/eslint/lib/rules/newline-before-return.js index d07c23658edcf0..007d94273631ab 100644 --- a/tools/node_modules/eslint/lib/rules/newline-before-return.js +++ b/tools/node_modules/eslint/lib/rules/newline-before-return.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "require an empty line before `return` statements", + description: "Require an empty line before `return` statements", recommended: false, url: "https://eslint.org/docs/rules/newline-before-return" }, diff --git a/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js b/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js index 818bf703d2b745..83844a52b352eb 100644 --- a/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js +++ b/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js @@ -18,7 +18,7 @@ module.exports = { type: "layout", docs: { - description: "require a newline after each call in a method chain", + description: "Require a newline after each call in a method chain", recommended: false, url: "https://eslint.org/docs/rules/newline-per-chained-call" }, diff --git a/tools/node_modules/eslint/lib/rules/no-alert.js b/tools/node_modules/eslint/lib/rules/no-alert.js index c6f7ddf38db1a3..ba0125c877b030 100644 --- a/tools/node_modules/eslint/lib/rules/no-alert.js +++ b/tools/node_modules/eslint/lib/rules/no-alert.js @@ -88,7 +88,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `alert`, `confirm`, and `prompt`", + description: "Disallow the use of `alert`, `confirm`, and `prompt`", recommended: false, url: "https://eslint.org/docs/rules/no-alert" }, diff --git a/tools/node_modules/eslint/lib/rules/no-array-constructor.js b/tools/node_modules/eslint/lib/rules/no-array-constructor.js index 02e6114dadc8f3..93b79abfd89c5a 100644 --- a/tools/node_modules/eslint/lib/rules/no-array-constructor.js +++ b/tools/node_modules/eslint/lib/rules/no-array-constructor.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `Array` constructors", + description: "Disallow `Array` constructors", recommended: false, url: "https://eslint.org/docs/rules/no-array-constructor" }, diff --git a/tools/node_modules/eslint/lib/rules/no-async-promise-executor.js b/tools/node_modules/eslint/lib/rules/no-async-promise-executor.js index f940f152e3cecd..52c51862feb772 100644 --- a/tools/node_modules/eslint/lib/rules/no-async-promise-executor.js +++ b/tools/node_modules/eslint/lib/rules/no-async-promise-executor.js @@ -14,7 +14,7 @@ module.exports = { type: "problem", docs: { - description: "disallow using an async function as a Promise executor", + description: "Disallow using an async function as a Promise executor", recommended: true, url: "https://eslint.org/docs/rules/no-async-promise-executor" }, diff --git a/tools/node_modules/eslint/lib/rules/no-await-in-loop.js b/tools/node_modules/eslint/lib/rules/no-await-in-loop.js index 3aea39a16b9f3e..905a793c830377 100644 --- a/tools/node_modules/eslint/lib/rules/no-await-in-loop.js +++ b/tools/node_modules/eslint/lib/rules/no-await-in-loop.js @@ -59,7 +59,7 @@ module.exports = { type: "problem", docs: { - description: "disallow `await` inside of loops", + description: "Disallow `await` inside of loops", recommended: false, url: "https://eslint.org/docs/rules/no-await-in-loop" }, diff --git a/tools/node_modules/eslint/lib/rules/no-bitwise.js b/tools/node_modules/eslint/lib/rules/no-bitwise.js index 43a1e764edc984..172ea046bbe1c0 100644 --- a/tools/node_modules/eslint/lib/rules/no-bitwise.js +++ b/tools/node_modules/eslint/lib/rules/no-bitwise.js @@ -26,7 +26,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow bitwise operators", + description: "Disallow bitwise operators", recommended: false, url: "https://eslint.org/docs/rules/no-bitwise" }, diff --git a/tools/node_modules/eslint/lib/rules/no-buffer-constructor.js b/tools/node_modules/eslint/lib/rules/no-buffer-constructor.js index 678d7032ab447b..930039288156d4 100644 --- a/tools/node_modules/eslint/lib/rules/no-buffer-constructor.js +++ b/tools/node_modules/eslint/lib/rules/no-buffer-constructor.js @@ -19,7 +19,7 @@ module.exports = { type: "problem", docs: { - description: "disallow use of the `Buffer()` constructor", + description: "Disallow use of the `Buffer()` constructor", recommended: false, url: "https://eslint.org/docs/rules/no-buffer-constructor" }, diff --git a/tools/node_modules/eslint/lib/rules/no-caller.js b/tools/node_modules/eslint/lib/rules/no-caller.js index a6ad94f2fe6a66..884a02bdcf69a3 100644 --- a/tools/node_modules/eslint/lib/rules/no-caller.js +++ b/tools/node_modules/eslint/lib/rules/no-caller.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `arguments.caller` or `arguments.callee`", + description: "Disallow the use of `arguments.caller` or `arguments.callee`", recommended: false, url: "https://eslint.org/docs/rules/no-caller" }, diff --git a/tools/node_modules/eslint/lib/rules/no-case-declarations.js b/tools/node_modules/eslint/lib/rules/no-case-declarations.js index d722f0cf58422f..6557ba3a03d45b 100644 --- a/tools/node_modules/eslint/lib/rules/no-case-declarations.js +++ b/tools/node_modules/eslint/lib/rules/no-case-declarations.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow lexical declarations in case clauses", + description: "Disallow lexical declarations in case clauses", recommended: true, url: "https://eslint.org/docs/rules/no-case-declarations" }, diff --git a/tools/node_modules/eslint/lib/rules/no-catch-shadow.js b/tools/node_modules/eslint/lib/rules/no-catch-shadow.js index d09c91349680cf..49f1ba9649b7e9 100644 --- a/tools/node_modules/eslint/lib/rules/no-catch-shadow.js +++ b/tools/node_modules/eslint/lib/rules/no-catch-shadow.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `catch` clause parameters from shadowing variables in the outer scope", + description: "Disallow `catch` clause parameters from shadowing variables in the outer scope", recommended: false, url: "https://eslint.org/docs/rules/no-catch-shadow" }, diff --git a/tools/node_modules/eslint/lib/rules/no-class-assign.js b/tools/node_modules/eslint/lib/rules/no-class-assign.js index f679d4263e860e..32e48e21188d82 100644 --- a/tools/node_modules/eslint/lib/rules/no-class-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-class-assign.js @@ -17,7 +17,7 @@ module.exports = { type: "problem", docs: { - description: "disallow reassigning class members", + description: "Disallow reassigning class members", recommended: true, url: "https://eslint.org/docs/rules/no-class-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-compare-neg-zero.js b/tools/node_modules/eslint/lib/rules/no-compare-neg-zero.js index fb56b99c58b3db..9715c2f0f37226 100644 --- a/tools/node_modules/eslint/lib/rules/no-compare-neg-zero.js +++ b/tools/node_modules/eslint/lib/rules/no-compare-neg-zero.js @@ -14,7 +14,7 @@ module.exports = { type: "problem", docs: { - description: "disallow comparing against -0", + description: "Disallow comparing against -0", recommended: true, url: "https://eslint.org/docs/rules/no-compare-neg-zero" }, diff --git a/tools/node_modules/eslint/lib/rules/no-cond-assign.js b/tools/node_modules/eslint/lib/rules/no-cond-assign.js index 30d5b3bdaee960..59efb341f09ea6 100644 --- a/tools/node_modules/eslint/lib/rules/no-cond-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-cond-assign.js @@ -34,7 +34,7 @@ module.exports = { type: "problem", docs: { - description: "disallow assignment operators in conditional expressions", + description: "Disallow assignment operators in conditional expressions", recommended: true, url: "https://eslint.org/docs/rules/no-cond-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js b/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js index 9cdd0a85dbb3d4..d2b6641b74fdbc 100644 --- a/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js +++ b/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js @@ -31,7 +31,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow arrow functions where they could be confused with comparisons", + description: "Disallow arrow functions where they could be confused with comparisons", recommended: false, url: "https://eslint.org/docs/rules/no-confusing-arrow" }, diff --git a/tools/node_modules/eslint/lib/rules/no-console.js b/tools/node_modules/eslint/lib/rules/no-console.js index 464d5647cc3626..bad6b6f4ee8295 100644 --- a/tools/node_modules/eslint/lib/rules/no-console.js +++ b/tools/node_modules/eslint/lib/rules/no-console.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `console`", + description: "Disallow the use of `console`", recommended: false, url: "https://eslint.org/docs/rules/no-console" }, diff --git a/tools/node_modules/eslint/lib/rules/no-const-assign.js b/tools/node_modules/eslint/lib/rules/no-const-assign.js index b5f7c37a98f6df..55e40c8849f053 100644 --- a/tools/node_modules/eslint/lib/rules/no-const-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-const-assign.js @@ -17,7 +17,7 @@ module.exports = { type: "problem", docs: { - description: "disallow reassigning `const` variables", + description: "Disallow reassigning `const` variables", recommended: true, url: "https://eslint.org/docs/rules/no-const-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js b/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js index 6cad0eff3e56e3..dccfa2f582640a 100644 --- a/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js +++ b/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js @@ -432,7 +432,7 @@ module.exports = { meta: { type: "problem", docs: { - description: "disallow expressions where the operation doesn't affect the value", + description: "Disallow expressions where the operation doesn't affect the value", recommended: false, url: "https://eslint.org/docs/rules/no-constant-binary-expression" }, diff --git a/tools/node_modules/eslint/lib/rules/no-constant-condition.js b/tools/node_modules/eslint/lib/rules/no-constant-condition.js index a0871fe972d012..2ef687f6dca7eb 100644 --- a/tools/node_modules/eslint/lib/rules/no-constant-condition.js +++ b/tools/node_modules/eslint/lib/rules/no-constant-condition.js @@ -21,7 +21,7 @@ module.exports = { type: "problem", docs: { - description: "disallow constant expressions in conditions", + description: "Disallow constant expressions in conditions", recommended: true, url: "https://eslint.org/docs/rules/no-constant-condition" }, diff --git a/tools/node_modules/eslint/lib/rules/no-constructor-return.js b/tools/node_modules/eslint/lib/rules/no-constructor-return.js index f8a717c75e5261..911a32abcae552 100644 --- a/tools/node_modules/eslint/lib/rules/no-constructor-return.js +++ b/tools/node_modules/eslint/lib/rules/no-constructor-return.js @@ -15,7 +15,7 @@ module.exports = { type: "problem", docs: { - description: "disallow returning value from constructor", + description: "Disallow returning value from constructor", recommended: false, url: "https://eslint.org/docs/rules/no-constructor-return" }, diff --git a/tools/node_modules/eslint/lib/rules/no-continue.js b/tools/node_modules/eslint/lib/rules/no-continue.js index 8658a7984bb6bb..80381fc3f84e6f 100644 --- a/tools/node_modules/eslint/lib/rules/no-continue.js +++ b/tools/node_modules/eslint/lib/rules/no-continue.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `continue` statements", + description: "Disallow `continue` statements", recommended: false, url: "https://eslint.org/docs/rules/no-continue" }, diff --git a/tools/node_modules/eslint/lib/rules/no-control-regex.js b/tools/node_modules/eslint/lib/rules/no-control-regex.js index 00278f5c1451c8..ba108437257440 100644 --- a/tools/node_modules/eslint/lib/rules/no-control-regex.js +++ b/tools/node_modules/eslint/lib/rules/no-control-regex.js @@ -54,7 +54,7 @@ module.exports = { type: "problem", docs: { - description: "disallow control characters in regular expressions", + description: "Disallow control characters in regular expressions", recommended: true, url: "https://eslint.org/docs/rules/no-control-regex" }, diff --git a/tools/node_modules/eslint/lib/rules/no-debugger.js b/tools/node_modules/eslint/lib/rules/no-debugger.js index e62db1b7393b1a..3b88079a0fb89c 100644 --- a/tools/node_modules/eslint/lib/rules/no-debugger.js +++ b/tools/node_modules/eslint/lib/rules/no-debugger.js @@ -15,7 +15,7 @@ module.exports = { type: "problem", docs: { - description: "disallow the use of `debugger`", + description: "Disallow the use of `debugger`", recommended: true, url: "https://eslint.org/docs/rules/no-debugger" }, diff --git a/tools/node_modules/eslint/lib/rules/no-delete-var.js b/tools/node_modules/eslint/lib/rules/no-delete-var.js index 1d1c710b098200..41021bd46a7b99 100644 --- a/tools/node_modules/eslint/lib/rules/no-delete-var.js +++ b/tools/node_modules/eslint/lib/rules/no-delete-var.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow deleting variables", + description: "Disallow deleting variables", recommended: true, url: "https://eslint.org/docs/rules/no-delete-var" }, diff --git a/tools/node_modules/eslint/lib/rules/no-div-regex.js b/tools/node_modules/eslint/lib/rules/no-div-regex.js index 175f6c20104d3a..dd1c5782a58940 100644 --- a/tools/node_modules/eslint/lib/rules/no-div-regex.js +++ b/tools/node_modules/eslint/lib/rules/no-div-regex.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow division operators explicitly at the beginning of regular expressions", + description: "Disallow division operators explicitly at the beginning of regular expressions", recommended: false, url: "https://eslint.org/docs/rules/no-div-regex" }, diff --git a/tools/node_modules/eslint/lib/rules/no-dupe-args.js b/tools/node_modules/eslint/lib/rules/no-dupe-args.js index 13090e19a87e28..faf253793ecb79 100644 --- a/tools/node_modules/eslint/lib/rules/no-dupe-args.js +++ b/tools/node_modules/eslint/lib/rules/no-dupe-args.js @@ -15,7 +15,7 @@ module.exports = { type: "problem", docs: { - description: "disallow duplicate arguments in `function` definitions", + description: "Disallow duplicate arguments in `function` definitions", recommended: true, url: "https://eslint.org/docs/rules/no-dupe-args" }, diff --git a/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js b/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js index ae61f164ca9218..8eca7878a4628e 100644 --- a/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js +++ b/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js @@ -17,7 +17,7 @@ module.exports = { type: "problem", docs: { - description: "disallow duplicate class members", + description: "Disallow duplicate class members", recommended: true, url: "https://eslint.org/docs/rules/no-dupe-class-members" }, diff --git a/tools/node_modules/eslint/lib/rules/no-dupe-else-if.js b/tools/node_modules/eslint/lib/rules/no-dupe-else-if.js index 1e1d549185d72b..49db5ec7c6c824 100644 --- a/tools/node_modules/eslint/lib/rules/no-dupe-else-if.js +++ b/tools/node_modules/eslint/lib/rules/no-dupe-else-if.js @@ -52,7 +52,7 @@ module.exports = { type: "problem", docs: { - description: "disallow duplicate conditions in if-else-if chains", + description: "Disallow duplicate conditions in if-else-if chains", recommended: true, url: "https://eslint.org/docs/rules/no-dupe-else-if" }, diff --git a/tools/node_modules/eslint/lib/rules/no-dupe-keys.js b/tools/node_modules/eslint/lib/rules/no-dupe-keys.js index dac13cf9e098c2..65c34bc5fd1eb5 100644 --- a/tools/node_modules/eslint/lib/rules/no-dupe-keys.js +++ b/tools/node_modules/eslint/lib/rules/no-dupe-keys.js @@ -88,7 +88,7 @@ module.exports = { type: "problem", docs: { - description: "disallow duplicate keys in object literals", + description: "Disallow duplicate keys in object literals", recommended: true, url: "https://eslint.org/docs/rules/no-dupe-keys" }, diff --git a/tools/node_modules/eslint/lib/rules/no-duplicate-case.js b/tools/node_modules/eslint/lib/rules/no-duplicate-case.js index a0c0b31308b0e8..d436afdd00731b 100644 --- a/tools/node_modules/eslint/lib/rules/no-duplicate-case.js +++ b/tools/node_modules/eslint/lib/rules/no-duplicate-case.js @@ -22,7 +22,7 @@ module.exports = { type: "problem", docs: { - description: "disallow duplicate case labels", + description: "Disallow duplicate case labels", recommended: true, url: "https://eslint.org/docs/rules/no-duplicate-case" }, diff --git a/tools/node_modules/eslint/lib/rules/no-duplicate-imports.js b/tools/node_modules/eslint/lib/rules/no-duplicate-imports.js index 947bb30c2e175a..619e2588e91c36 100644 --- a/tools/node_modules/eslint/lib/rules/no-duplicate-imports.js +++ b/tools/node_modules/eslint/lib/rules/no-duplicate-imports.js @@ -233,7 +233,7 @@ module.exports = { type: "problem", docs: { - description: "disallow duplicate module imports", + description: "Disallow duplicate module imports", recommended: false, url: "https://eslint.org/docs/rules/no-duplicate-imports" }, diff --git a/tools/node_modules/eslint/lib/rules/no-else-return.js b/tools/node_modules/eslint/lib/rules/no-else-return.js index 3662fc8c6e727d..d1da3aa49cb4ff 100644 --- a/tools/node_modules/eslint/lib/rules/no-else-return.js +++ b/tools/node_modules/eslint/lib/rules/no-else-return.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `else` blocks after `return` statements in `if` statements", + description: "Disallow `else` blocks after `return` statements in `if` statements", recommended: false, url: "https://eslint.org/docs/rules/no-else-return" }, diff --git a/tools/node_modules/eslint/lib/rules/no-empty-character-class.js b/tools/node_modules/eslint/lib/rules/no-empty-character-class.js index f75f59191aae40..2d294f4bded549 100644 --- a/tools/node_modules/eslint/lib/rules/no-empty-character-class.js +++ b/tools/node_modules/eslint/lib/rules/no-empty-character-class.js @@ -30,7 +30,7 @@ module.exports = { type: "problem", docs: { - description: "disallow empty character classes in regular expressions", + description: "Disallow empty character classes in regular expressions", recommended: true, url: "https://eslint.org/docs/rules/no-empty-character-class" }, diff --git a/tools/node_modules/eslint/lib/rules/no-empty-function.js b/tools/node_modules/eslint/lib/rules/no-empty-function.js index e23b69e537b787..4c9daa931e2699 100644 --- a/tools/node_modules/eslint/lib/rules/no-empty-function.js +++ b/tools/node_modules/eslint/lib/rules/no-empty-function.js @@ -95,7 +95,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow empty functions", + description: "Disallow empty functions", recommended: false, url: "https://eslint.org/docs/rules/no-empty-function" }, diff --git a/tools/node_modules/eslint/lib/rules/no-empty-pattern.js b/tools/node_modules/eslint/lib/rules/no-empty-pattern.js index 2de575fcf0849f..5a497f039720d3 100644 --- a/tools/node_modules/eslint/lib/rules/no-empty-pattern.js +++ b/tools/node_modules/eslint/lib/rules/no-empty-pattern.js @@ -14,7 +14,7 @@ module.exports = { type: "problem", docs: { - description: "disallow empty destructuring patterns", + description: "Disallow empty destructuring patterns", recommended: true, url: "https://eslint.org/docs/rules/no-empty-pattern" }, diff --git a/tools/node_modules/eslint/lib/rules/no-empty.js b/tools/node_modules/eslint/lib/rules/no-empty.js index f04ee2cb3209cc..459140a2e70574 100644 --- a/tools/node_modules/eslint/lib/rules/no-empty.js +++ b/tools/node_modules/eslint/lib/rules/no-empty.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow empty block statements", + description: "Disallow empty block statements", recommended: true, url: "https://eslint.org/docs/rules/no-empty" }, diff --git a/tools/node_modules/eslint/lib/rules/no-eq-null.js b/tools/node_modules/eslint/lib/rules/no-eq-null.js index b693737126d62c..9a886803dc5196 100644 --- a/tools/node_modules/eslint/lib/rules/no-eq-null.js +++ b/tools/node_modules/eslint/lib/rules/no-eq-null.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `null` comparisons without type-checking operators", + description: "Disallow `null` comparisons without type-checking operators", recommended: false, url: "https://eslint.org/docs/rules/no-eq-null" }, diff --git a/tools/node_modules/eslint/lib/rules/no-eval.js b/tools/node_modules/eslint/lib/rules/no-eval.js index 7af8dfac7faf00..03f7b1f691c16e 100644 --- a/tools/node_modules/eslint/lib/rules/no-eval.js +++ b/tools/node_modules/eslint/lib/rules/no-eval.js @@ -43,7 +43,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `eval()`", + description: "Disallow the use of `eval()`", recommended: false, url: "https://eslint.org/docs/rules/no-eval" }, diff --git a/tools/node_modules/eslint/lib/rules/no-ex-assign.js b/tools/node_modules/eslint/lib/rules/no-ex-assign.js index 3db14206b0b3fe..4c77b1128adbbd 100644 --- a/tools/node_modules/eslint/lib/rules/no-ex-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-ex-assign.js @@ -17,7 +17,7 @@ module.exports = { type: "problem", docs: { - description: "disallow reassigning exceptions in `catch` clauses", + description: "Disallow reassigning exceptions in `catch` clauses", recommended: true, url: "https://eslint.org/docs/rules/no-ex-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-extend-native.js b/tools/node_modules/eslint/lib/rules/no-extend-native.js index 771200f26f7579..52c6bd3110331e 100644 --- a/tools/node_modules/eslint/lib/rules/no-extend-native.js +++ b/tools/node_modules/eslint/lib/rules/no-extend-native.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow extending native types", + description: "Disallow extending native types", recommended: false, url: "https://eslint.org/docs/rules/no-extend-native" }, diff --git a/tools/node_modules/eslint/lib/rules/no-extra-bind.js b/tools/node_modules/eslint/lib/rules/no-extra-bind.js index 561cb1a33f8591..caf6d8b1f80e6d 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-bind.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-bind.js @@ -26,7 +26,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary calls to `.bind()`", + description: "Disallow unnecessary calls to `.bind()`", recommended: false, url: "https://eslint.org/docs/rules/no-extra-bind" }, diff --git a/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js b/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js index ddb1d8330d5cf5..1c2bc4e5032066 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js @@ -24,7 +24,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary boolean casts", + description: "Disallow unnecessary boolean casts", recommended: true, url: "https://eslint.org/docs/rules/no-extra-boolean-cast" }, diff --git a/tools/node_modules/eslint/lib/rules/no-extra-label.js b/tools/node_modules/eslint/lib/rules/no-extra-label.js index 9186a9faca127f..bda3dd0efb00fc 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-label.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-label.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary labels", + description: "Disallow unnecessary labels", recommended: false, url: "https://eslint.org/docs/rules/no-extra-label" }, diff --git a/tools/node_modules/eslint/lib/rules/no-extra-parens.js b/tools/node_modules/eslint/lib/rules/no-extra-parens.js index 5b54ae26fe3e50..5ae9af8fd54dbf 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-parens.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-parens.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "disallow unnecessary parentheses", + description: "Disallow unnecessary parentheses", recommended: false, url: "https://eslint.org/docs/rules/no-extra-parens" }, diff --git a/tools/node_modules/eslint/lib/rules/no-extra-semi.js b/tools/node_modules/eslint/lib/rules/no-extra-semi.js index 625310eea69f3c..c61ad37dce8df6 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-semi.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-semi.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary semicolons", + description: "Disallow unnecessary semicolons", recommended: true, url: "https://eslint.org/docs/rules/no-extra-semi" }, diff --git a/tools/node_modules/eslint/lib/rules/no-fallthrough.js b/tools/node_modules/eslint/lib/rules/no-fallthrough.js index f3b7c8554ad7b2..b51faa87bae7dc 100644 --- a/tools/node_modules/eslint/lib/rules/no-fallthrough.js +++ b/tools/node_modules/eslint/lib/rules/no-fallthrough.js @@ -64,7 +64,7 @@ module.exports = { type: "problem", docs: { - description: "disallow fallthrough of `case` statements", + description: "Disallow fallthrough of `case` statements", recommended: true, url: "https://eslint.org/docs/rules/no-fallthrough" }, diff --git a/tools/node_modules/eslint/lib/rules/no-floating-decimal.js b/tools/node_modules/eslint/lib/rules/no-floating-decimal.js index 8831bb824d07ce..cce50bf9dadb85 100644 --- a/tools/node_modules/eslint/lib/rules/no-floating-decimal.js +++ b/tools/node_modules/eslint/lib/rules/no-floating-decimal.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow leading or trailing decimal points in numeric literals", + description: "Disallow leading or trailing decimal points in numeric literals", recommended: false, url: "https://eslint.org/docs/rules/no-floating-decimal" }, diff --git a/tools/node_modules/eslint/lib/rules/no-func-assign.js b/tools/node_modules/eslint/lib/rules/no-func-assign.js index 04a7dd370551a5..2c8fa6a8e08e09 100644 --- a/tools/node_modules/eslint/lib/rules/no-func-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-func-assign.js @@ -17,7 +17,7 @@ module.exports = { type: "problem", docs: { - description: "disallow reassigning `function` declarations", + description: "Disallow reassigning `function` declarations", recommended: true, url: "https://eslint.org/docs/rules/no-func-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-global-assign.js b/tools/node_modules/eslint/lib/rules/no-global-assign.js index 1225baec5ded4e..9f2f0ee3642f47 100644 --- a/tools/node_modules/eslint/lib/rules/no-global-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-global-assign.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow assignments to native objects or read-only global variables", + description: "Disallow assignments to native objects or read-only global variables", recommended: true, url: "https://eslint.org/docs/rules/no-global-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js b/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js index 428f63b81db6e6..c2367715d9da7d 100644 --- a/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js +++ b/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js @@ -173,7 +173,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow shorthand type conversions", + description: "Disallow shorthand type conversions", recommended: false, url: "https://eslint.org/docs/rules/no-implicit-coercion" }, diff --git a/tools/node_modules/eslint/lib/rules/no-implicit-globals.js b/tools/node_modules/eslint/lib/rules/no-implicit-globals.js index 5dd6aa71acd862..934630ea0708d6 100644 --- a/tools/node_modules/eslint/lib/rules/no-implicit-globals.js +++ b/tools/node_modules/eslint/lib/rules/no-implicit-globals.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow declarations in the global scope", + description: "Disallow declarations in the global scope", recommended: false, url: "https://eslint.org/docs/rules/no-implicit-globals" }, diff --git a/tools/node_modules/eslint/lib/rules/no-implied-eval.js b/tools/node_modules/eslint/lib/rules/no-implied-eval.js index 38de5b31ccc377..44f146171aa027 100644 --- a/tools/node_modules/eslint/lib/rules/no-implied-eval.js +++ b/tools/node_modules/eslint/lib/rules/no-implied-eval.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `eval()`-like methods", + description: "Disallow the use of `eval()`-like methods", recommended: false, url: "https://eslint.org/docs/rules/no-implied-eval" }, diff --git a/tools/node_modules/eslint/lib/rules/no-import-assign.js b/tools/node_modules/eslint/lib/rules/no-import-assign.js index 385386e9a43790..fc104fe6c46b69 100644 --- a/tools/node_modules/eslint/lib/rules/no-import-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-import-assign.js @@ -180,7 +180,7 @@ module.exports = { type: "problem", docs: { - description: "disallow assigning to imported bindings", + description: "Disallow assigning to imported bindings", recommended: true, url: "https://eslint.org/docs/rules/no-import-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-inline-comments.js b/tools/node_modules/eslint/lib/rules/no-inline-comments.js index 2ed7feb46b839d..366f567f67095d 100644 --- a/tools/node_modules/eslint/lib/rules/no-inline-comments.js +++ b/tools/node_modules/eslint/lib/rules/no-inline-comments.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow inline comments after code", + description: "Disallow inline comments after code", recommended: false, url: "https://eslint.org/docs/rules/no-inline-comments" }, diff --git a/tools/node_modules/eslint/lib/rules/no-inner-declarations.js b/tools/node_modules/eslint/lib/rules/no-inner-declarations.js index 3b0feb71a3faa4..932816641e090b 100644 --- a/tools/node_modules/eslint/lib/rules/no-inner-declarations.js +++ b/tools/node_modules/eslint/lib/rules/no-inner-declarations.js @@ -48,7 +48,7 @@ module.exports = { type: "problem", docs: { - description: "disallow variable or `function` declarations in nested blocks", + description: "Disallow variable or `function` declarations in nested blocks", recommended: true, url: "https://eslint.org/docs/rules/no-inner-declarations" }, diff --git a/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js b/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js index 92ac5125e60a29..0f1d9c7bedc696 100644 --- a/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js +++ b/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js @@ -23,7 +23,7 @@ module.exports = { type: "problem", docs: { - description: "disallow invalid regular expression strings in `RegExp` constructors", + description: "Disallow invalid regular expression strings in `RegExp` constructors", recommended: true, url: "https://eslint.org/docs/rules/no-invalid-regexp" }, diff --git a/tools/node_modules/eslint/lib/rules/no-invalid-this.js b/tools/node_modules/eslint/lib/rules/no-invalid-this.js index a97696b85628b6..b9cb43af5d7c2d 100644 --- a/tools/node_modules/eslint/lib/rules/no-invalid-this.js +++ b/tools/node_modules/eslint/lib/rules/no-invalid-this.js @@ -36,7 +36,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow use of `this` in contexts where the value of `this` is `undefined`", + description: "Disallow use of `this` in contexts where the value of `this` is `undefined`", recommended: false, url: "https://eslint.org/docs/rules/no-invalid-this" }, diff --git a/tools/node_modules/eslint/lib/rules/no-irregular-whitespace.js b/tools/node_modules/eslint/lib/rules/no-irregular-whitespace.js index 65c4d67285cb1b..d1646c7b8a16e3 100644 --- a/tools/node_modules/eslint/lib/rules/no-irregular-whitespace.js +++ b/tools/node_modules/eslint/lib/rules/no-irregular-whitespace.js @@ -31,7 +31,7 @@ module.exports = { type: "problem", docs: { - description: "disallow irregular whitespace", + description: "Disallow irregular whitespace", recommended: true, url: "https://eslint.org/docs/rules/no-irregular-whitespace" }, diff --git a/tools/node_modules/eslint/lib/rules/no-iterator.js b/tools/node_modules/eslint/lib/rules/no-iterator.js index d11267286c808c..3550c7b111b43c 100644 --- a/tools/node_modules/eslint/lib/rules/no-iterator.js +++ b/tools/node_modules/eslint/lib/rules/no-iterator.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of the `__iterator__` property", + description: "Disallow the use of the `__iterator__` property", recommended: false, url: "https://eslint.org/docs/rules/no-iterator" }, diff --git a/tools/node_modules/eslint/lib/rules/no-label-var.js b/tools/node_modules/eslint/lib/rules/no-label-var.js index 50211811ac80f1..a07d283f522b5e 100644 --- a/tools/node_modules/eslint/lib/rules/no-label-var.js +++ b/tools/node_modules/eslint/lib/rules/no-label-var.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow labels that share a name with a variable", + description: "Disallow labels that share a name with a variable", recommended: false, url: "https://eslint.org/docs/rules/no-label-var" }, diff --git a/tools/node_modules/eslint/lib/rules/no-labels.js b/tools/node_modules/eslint/lib/rules/no-labels.js index 2e79f378a9bf1e..6112d04affb437 100644 --- a/tools/node_modules/eslint/lib/rules/no-labels.js +++ b/tools/node_modules/eslint/lib/rules/no-labels.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow labeled statements", + description: "Disallow labeled statements", recommended: false, url: "https://eslint.org/docs/rules/no-labels" }, diff --git a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js index f9fe9514dd7f64..486a76ffdc9bc1 100644 --- a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js +++ b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary nested blocks", + description: "Disallow unnecessary nested blocks", recommended: false, url: "https://eslint.org/docs/rules/no-lone-blocks" }, diff --git a/tools/node_modules/eslint/lib/rules/no-lonely-if.js b/tools/node_modules/eslint/lib/rules/no-lonely-if.js index 9abd4650b56198..0774b9fa30fceb 100644 --- a/tools/node_modules/eslint/lib/rules/no-lonely-if.js +++ b/tools/node_modules/eslint/lib/rules/no-lonely-if.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `if` statements as the only statement in `else` blocks", + description: "Disallow `if` statements as the only statement in `else` blocks", recommended: false, url: "https://eslint.org/docs/rules/no-lonely-if" }, diff --git a/tools/node_modules/eslint/lib/rules/no-loop-func.js b/tools/node_modules/eslint/lib/rules/no-loop-func.js index d087974e64bf12..f81a71336800a8 100644 --- a/tools/node_modules/eslint/lib/rules/no-loop-func.js +++ b/tools/node_modules/eslint/lib/rules/no-loop-func.js @@ -154,7 +154,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow function declarations that contain unsafe references inside loop statements", + description: "Disallow function declarations that contain unsafe references inside loop statements", recommended: false, url: "https://eslint.org/docs/rules/no-loop-func" }, 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 fefc7b768fe9bc..6dc6d864dcdf99 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 @@ -15,7 +15,7 @@ module.exports = { type: "problem", docs: { - description: "disallow literal numbers that lose precision", + description: "Disallow literal numbers that lose precision", recommended: true, url: "https://eslint.org/docs/rules/no-loss-of-precision" }, diff --git a/tools/node_modules/eslint/lib/rules/no-magic-numbers.js b/tools/node_modules/eslint/lib/rules/no-magic-numbers.js index 6b4cf77c32630f..9b08588155652f 100644 --- a/tools/node_modules/eslint/lib/rules/no-magic-numbers.js +++ b/tools/node_modules/eslint/lib/rules/no-magic-numbers.js @@ -32,7 +32,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow magic numbers", + description: "Disallow magic numbers", recommended: false, url: "https://eslint.org/docs/rules/no-magic-numbers" }, diff --git a/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js b/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js index d3d9d382ac58b1..667d066e81c7ea 100644 --- a/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js +++ b/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js @@ -107,7 +107,7 @@ module.exports = { type: "problem", docs: { - description: "disallow characters which are made with multiple code points in character class syntax", + description: "Disallow characters which are made with multiple code points in character class syntax", recommended: true, url: "https://eslint.org/docs/rules/no-misleading-character-class" }, diff --git a/tools/node_modules/eslint/lib/rules/no-mixed-operators.js b/tools/node_modules/eslint/lib/rules/no-mixed-operators.js index 0cace7ea910450..cb6e9363c15801 100644 --- a/tools/node_modules/eslint/lib/rules/no-mixed-operators.js +++ b/tools/node_modules/eslint/lib/rules/no-mixed-operators.js @@ -88,7 +88,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow mixed binary operators", + description: "Disallow mixed binary operators", recommended: false, url: "https://eslint.org/docs/rules/no-mixed-operators" }, diff --git a/tools/node_modules/eslint/lib/rules/no-mixed-requires.js b/tools/node_modules/eslint/lib/rules/no-mixed-requires.js index 97064243ed3b9c..4e97057441601f 100644 --- a/tools/node_modules/eslint/lib/rules/no-mixed-requires.js +++ b/tools/node_modules/eslint/lib/rules/no-mixed-requires.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `require` calls to be mixed with regular variable declarations", + description: "Disallow `require` calls to be mixed with regular variable declarations", recommended: false, url: "https://eslint.org/docs/rules/no-mixed-requires" }, diff --git a/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js b/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js index f82a352caa4f33..b2d5a040b843b9 100644 --- a/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +++ b/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js @@ -14,7 +14,7 @@ module.exports = { type: "layout", docs: { - description: "disallow mixed spaces and tabs for indentation", + description: "Disallow mixed spaces and tabs for indentation", recommended: true, url: "https://eslint.org/docs/rules/no-mixed-spaces-and-tabs" }, diff --git a/tools/node_modules/eslint/lib/rules/no-multi-assign.js b/tools/node_modules/eslint/lib/rules/no-multi-assign.js index be4d41f33d6a30..392b33ffd2d0c2 100644 --- a/tools/node_modules/eslint/lib/rules/no-multi-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-multi-assign.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow use of chained assignment expressions", + description: "Disallow use of chained assignment expressions", recommended: false, url: "https://eslint.org/docs/rules/no-multi-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-multi-spaces.js b/tools/node_modules/eslint/lib/rules/no-multi-spaces.js index 6fac7e3ca7ef05..d8d3c6509ccaf4 100644 --- a/tools/node_modules/eslint/lib/rules/no-multi-spaces.js +++ b/tools/node_modules/eslint/lib/rules/no-multi-spaces.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "disallow multiple spaces", + description: "Disallow multiple spaces", recommended: false, url: "https://eslint.org/docs/rules/no-multi-spaces" }, diff --git a/tools/node_modules/eslint/lib/rules/no-multi-str.js b/tools/node_modules/eslint/lib/rules/no-multi-str.js index 6a17d581b98fa1..c4400f45ee6574 100644 --- a/tools/node_modules/eslint/lib/rules/no-multi-str.js +++ b/tools/node_modules/eslint/lib/rules/no-multi-str.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow multiline strings", + description: "Disallow multiline strings", recommended: false, url: "https://eslint.org/docs/rules/no-multi-str" }, diff --git a/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js b/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js index d012303cc33a1a..e8b0f9859c0316 100644 --- a/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +++ b/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "disallow multiple empty lines", + description: "Disallow multiple empty lines", recommended: false, url: "https://eslint.org/docs/rules/no-multiple-empty-lines" }, diff --git a/tools/node_modules/eslint/lib/rules/no-native-reassign.js b/tools/node_modules/eslint/lib/rules/no-native-reassign.js index 5f396e404c60b3..634fea93308d5e 100644 --- a/tools/node_modules/eslint/lib/rules/no-native-reassign.js +++ b/tools/node_modules/eslint/lib/rules/no-native-reassign.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow assignments to native objects or read-only global variables", + description: "Disallow assignments to native objects or read-only global variables", recommended: false, url: "https://eslint.org/docs/rules/no-native-reassign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-negated-condition.js b/tools/node_modules/eslint/lib/rules/no-negated-condition.js index a2870137f57ef5..387617767fa517 100644 --- a/tools/node_modules/eslint/lib/rules/no-negated-condition.js +++ b/tools/node_modules/eslint/lib/rules/no-negated-condition.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow negated conditions", + description: "Disallow negated conditions", recommended: false, url: "https://eslint.org/docs/rules/no-negated-condition" }, diff --git a/tools/node_modules/eslint/lib/rules/no-negated-in-lhs.js b/tools/node_modules/eslint/lib/rules/no-negated-in-lhs.js index 95ab58a080f598..975a8d75cb1cb8 100644 --- a/tools/node_modules/eslint/lib/rules/no-negated-in-lhs.js +++ b/tools/node_modules/eslint/lib/rules/no-negated-in-lhs.js @@ -16,7 +16,7 @@ module.exports = { type: "problem", docs: { - description: "disallow negating the left operand in `in` expressions", + description: "Disallow negating the left operand in `in` expressions", recommended: false, url: "https://eslint.org/docs/rules/no-negated-in-lhs" }, diff --git a/tools/node_modules/eslint/lib/rules/no-nested-ternary.js b/tools/node_modules/eslint/lib/rules/no-nested-ternary.js index c87875e40400f7..fe97823416b723 100644 --- a/tools/node_modules/eslint/lib/rules/no-nested-ternary.js +++ b/tools/node_modules/eslint/lib/rules/no-nested-ternary.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow nested ternary expressions", + description: "Disallow nested ternary expressions", recommended: false, url: "https://eslint.org/docs/rules/no-nested-ternary" }, diff --git a/tools/node_modules/eslint/lib/rules/no-new-func.js b/tools/node_modules/eslint/lib/rules/no-new-func.js index 3b5994335194eb..4759f380b29f5e 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-func.js +++ b/tools/node_modules/eslint/lib/rules/no-new-func.js @@ -27,7 +27,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `new` operators with the `Function` object", + description: "Disallow `new` operators with the `Function` object", recommended: false, url: "https://eslint.org/docs/rules/no-new-func" }, diff --git a/tools/node_modules/eslint/lib/rules/no-new-object.js b/tools/node_modules/eslint/lib/rules/no-new-object.js index 02ff772678c9ba..4dbe8db736503d 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-object.js +++ b/tools/node_modules/eslint/lib/rules/no-new-object.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `Object` constructors", + description: "Disallow `Object` constructors", recommended: false, url: "https://eslint.org/docs/rules/no-new-object" }, diff --git a/tools/node_modules/eslint/lib/rules/no-new-require.js b/tools/node_modules/eslint/lib/rules/no-new-require.js index 5dadf6c2538e95..63ca057b741354 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-require.js +++ b/tools/node_modules/eslint/lib/rules/no-new-require.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `new` operators with calls to `require`", + description: "Disallow `new` operators with calls to `require`", recommended: false, url: "https://eslint.org/docs/rules/no-new-require" }, diff --git a/tools/node_modules/eslint/lib/rules/no-new-symbol.js b/tools/node_modules/eslint/lib/rules/no-new-symbol.js index 6acfca94358c4f..534201c0ba662d 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-symbol.js +++ b/tools/node_modules/eslint/lib/rules/no-new-symbol.js @@ -15,7 +15,7 @@ module.exports = { type: "problem", docs: { - description: "disallow `new` operators with the `Symbol` object", + description: "Disallow `new` operators with the `Symbol` object", recommended: true, url: "https://eslint.org/docs/rules/no-new-symbol" }, diff --git a/tools/node_modules/eslint/lib/rules/no-new-wrappers.js b/tools/node_modules/eslint/lib/rules/no-new-wrappers.js index 1fe06c1943e750..ff44efc59305b4 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-wrappers.js +++ b/tools/node_modules/eslint/lib/rules/no-new-wrappers.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `new` operators with the `String`, `Number`, and `Boolean` objects", + description: "Disallow `new` operators with the `String`, `Number`, and `Boolean` objects", recommended: false, url: "https://eslint.org/docs/rules/no-new-wrappers" }, diff --git a/tools/node_modules/eslint/lib/rules/no-new.js b/tools/node_modules/eslint/lib/rules/no-new.js index 5b0976534d6e3d..c434505758890d 100644 --- a/tools/node_modules/eslint/lib/rules/no-new.js +++ b/tools/node_modules/eslint/lib/rules/no-new.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `new` operators outside of assignments or comparisons", + description: "Disallow `new` operators outside of assignments or comparisons", recommended: false, url: "https://eslint.org/docs/rules/no-new" }, diff --git a/tools/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js b/tools/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js index 3edd269faeb33d..63e2264b33a62c 100644 --- a/tools/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +++ b/tools/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js @@ -30,7 +30,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `\\8` and `\\9` escape sequences in string literals", + description: "Disallow `\\8` and `\\9` escape sequences in string literals", recommended: true, url: "https://eslint.org/docs/rules/no-nonoctal-decimal-escape" }, diff --git a/tools/node_modules/eslint/lib/rules/no-obj-calls.js b/tools/node_modules/eslint/lib/rules/no-obj-calls.js index 667ba69d803109..86355d85d36aad 100644 --- a/tools/node_modules/eslint/lib/rules/no-obj-calls.js +++ b/tools/node_modules/eslint/lib/rules/no-obj-calls.js @@ -43,7 +43,7 @@ module.exports = { type: "problem", docs: { - description: "disallow calling global object properties as functions", + description: "Disallow calling global object properties as functions", recommended: true, url: "https://eslint.org/docs/rules/no-obj-calls" }, diff --git a/tools/node_modules/eslint/lib/rules/no-octal-escape.js b/tools/node_modules/eslint/lib/rules/no-octal-escape.js index 9ac56ab7bea8a5..81a8a74cddb7ed 100644 --- a/tools/node_modules/eslint/lib/rules/no-octal-escape.js +++ b/tools/node_modules/eslint/lib/rules/no-octal-escape.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow octal escape sequences in string literals", + description: "Disallow octal escape sequences in string literals", recommended: false, url: "https://eslint.org/docs/rules/no-octal-escape" }, diff --git a/tools/node_modules/eslint/lib/rules/no-octal.js b/tools/node_modules/eslint/lib/rules/no-octal.js index 9d05455cdac927..eec56919f1eb7d 100644 --- a/tools/node_modules/eslint/lib/rules/no-octal.js +++ b/tools/node_modules/eslint/lib/rules/no-octal.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow octal literals", + description: "Disallow octal literals", recommended: true, url: "https://eslint.org/docs/rules/no-octal" }, diff --git a/tools/node_modules/eslint/lib/rules/no-param-reassign.js b/tools/node_modules/eslint/lib/rules/no-param-reassign.js index 87a6b70238247e..f89435c867576f 100644 --- a/tools/node_modules/eslint/lib/rules/no-param-reassign.js +++ b/tools/node_modules/eslint/lib/rules/no-param-reassign.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow reassigning `function` parameters", + description: "Disallow reassigning `function` parameters", recommended: false, url: "https://eslint.org/docs/rules/no-param-reassign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-path-concat.js b/tools/node_modules/eslint/lib/rules/no-path-concat.js index 8d570a3778f3d3..8502c511ed903c 100644 --- a/tools/node_modules/eslint/lib/rules/no-path-concat.js +++ b/tools/node_modules/eslint/lib/rules/no-path-concat.js @@ -19,7 +19,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow string concatenation with `__dirname` and `__filename`", + description: "Disallow string concatenation with `__dirname` and `__filename`", recommended: false, url: "https://eslint.org/docs/rules/no-path-concat" }, diff --git a/tools/node_modules/eslint/lib/rules/no-plusplus.js b/tools/node_modules/eslint/lib/rules/no-plusplus.js index 2565da43231a25..cda6b05bfa855a 100644 --- a/tools/node_modules/eslint/lib/rules/no-plusplus.js +++ b/tools/node_modules/eslint/lib/rules/no-plusplus.js @@ -51,7 +51,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the unary operators `++` and `--`", + description: "Disallow the unary operators `++` and `--`", recommended: false, url: "https://eslint.org/docs/rules/no-plusplus" }, diff --git a/tools/node_modules/eslint/lib/rules/no-process-env.js b/tools/node_modules/eslint/lib/rules/no-process-env.js index f7c2c718fd04cb..5db7c94b13b6f3 100644 --- a/tools/node_modules/eslint/lib/rules/no-process-env.js +++ b/tools/node_modules/eslint/lib/rules/no-process-env.js @@ -19,7 +19,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `process.env`", + description: "Disallow the use of `process.env`", recommended: false, url: "https://eslint.org/docs/rules/no-process-env" }, diff --git a/tools/node_modules/eslint/lib/rules/no-process-exit.js b/tools/node_modules/eslint/lib/rules/no-process-exit.js index 251044b31c91c5..ca3ecfe6f5fc10 100644 --- a/tools/node_modules/eslint/lib/rules/no-process-exit.js +++ b/tools/node_modules/eslint/lib/rules/no-process-exit.js @@ -19,7 +19,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `process.exit()`", + description: "Disallow the use of `process.exit()`", recommended: false, url: "https://eslint.org/docs/rules/no-process-exit" }, diff --git a/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js b/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js index e40d4bcb3f52bd..caa195ffa07e5e 100644 --- a/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js +++ b/tools/node_modules/eslint/lib/rules/no-promise-executor-return.js @@ -69,7 +69,7 @@ module.exports = { type: "problem", docs: { - description: "disallow returning values from Promise executor functions", + description: "Disallow returning values from Promise executor functions", recommended: false, url: "https://eslint.org/docs/rules/no-promise-executor-return" }, diff --git a/tools/node_modules/eslint/lib/rules/no-proto.js b/tools/node_modules/eslint/lib/rules/no-proto.js index e6659e59c6bc27..771d206a88d2e1 100644 --- a/tools/node_modules/eslint/lib/rules/no-proto.js +++ b/tools/node_modules/eslint/lib/rules/no-proto.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of the `__proto__` property", + description: "Disallow the use of the `__proto__` property", recommended: false, url: "https://eslint.org/docs/rules/no-proto" }, diff --git a/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js b/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js index dc12669c87d1d4..ea2763396d06c2 100644 --- a/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js +++ b/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js @@ -20,7 +20,7 @@ module.exports = { type: "problem", docs: { - description: "disallow calling some `Object.prototype` methods directly on objects", + description: "Disallow calling some `Object.prototype` methods directly on objects", recommended: true, url: "https://eslint.org/docs/rules/no-prototype-builtins" }, diff --git a/tools/node_modules/eslint/lib/rules/no-redeclare.js b/tools/node_modules/eslint/lib/rules/no-redeclare.js index cc71a61234954f..59749cb6643456 100644 --- a/tools/node_modules/eslint/lib/rules/no-redeclare.js +++ b/tools/node_modules/eslint/lib/rules/no-redeclare.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow variable redeclaration", + description: "Disallow variable redeclaration", recommended: true, url: "https://eslint.org/docs/rules/no-redeclare" }, diff --git a/tools/node_modules/eslint/lib/rules/no-regex-spaces.js b/tools/node_modules/eslint/lib/rules/no-regex-spaces.js index 400c72b5027a8a..6d74aabe2632b3 100644 --- a/tools/node_modules/eslint/lib/rules/no-regex-spaces.js +++ b/tools/node_modules/eslint/lib/rules/no-regex-spaces.js @@ -39,7 +39,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow multiple spaces in regular expressions", + description: "Disallow multiple spaces in regular expressions", recommended: true, url: "https://eslint.org/docs/rules/no-regex-spaces" }, diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-exports.js b/tools/node_modules/eslint/lib/rules/no-restricted-exports.js index 5166cecaef2db4..d99e8928209b91 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-exports.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-exports.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified names in exports", + description: "Disallow specified names in exports", recommended: false, url: "https://eslint.org/docs/rules/no-restricted-exports" }, diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-globals.js b/tools/node_modules/eslint/lib/rules/no-restricted-globals.js index 09d347890ca89f..b666238382dec8 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-globals.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-globals.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified global variables", + description: "Disallow specified global variables", recommended: false, url: "https://eslint.org/docs/rules/no-restricted-globals" }, diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-imports.js b/tools/node_modules/eslint/lib/rules/no-restricted-imports.js index 3bb45d715ff1bf..f4838679efcf6d 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-imports.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-imports.js @@ -58,6 +58,14 @@ const arrayOfStringsOrObjectPatterns = { items: { type: "object", properties: { + importNames: { + type: "array", + items: { + type: "string" + }, + minItems: 1, + uniqueItems: true + }, group: { type: "array", items: { @@ -88,7 +96,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified modules when loaded by `import`", + description: "Disallow specified modules when loaded by `import`", recommended: false, url: "https://eslint.org/docs/rules/no-restricted-imports" }, @@ -102,6 +110,14 @@ module.exports = { // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period patternWithCustomMessage: "'{{importSource}}' import is restricted from being used by a pattern. {{customMessage}}", + patternAndImportName: "'{{importName}}' import from '{{importSource}}' is restricted from being used by a pattern.", + // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period + patternAndImportNameWithCustomMessage: "'{{importName}}' import from '{{importSource}}' is restricted from being used by a pattern. {{customMessage}}", + + patternAndEverything: "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted from being used by a pattern.", + // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period + patternAndEverythingWithCustomMessage: "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted from being used by a pattern. {{customMessage}}", + everything: "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted.", // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period everythingWithCustomMessage: "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted. {{customMessage}}", @@ -159,9 +175,10 @@ module.exports = { } // relative paths are supported for this rule - const restrictedPatternGroups = restrictedPatterns.map(({ group, message, caseSensitive }) => ({ + const restrictedPatternGroups = restrictedPatterns.map(({ group, message, caseSensitive, importNames }) => ({ matcher: ignore({ allowRelativePaths: true, ignorecase: !caseSensitive }).add(group), - customMessage: message + customMessage: message, + importNames })); // if no imports are restricted we don't need to check @@ -234,20 +251,68 @@ module.exports = { /** * Report a restricted path specifically for patterns. * @param {node} node representing the restricted path reference - * @param {Object} group contains a Ignore instance for paths, and the customMessage to show if it fails + * @param {Object} group contains an Ignore instance for paths, the customMessage to show on failure, + * and any restricted import names that have been specified in the config + * @param {Map} importNames Map of import names that are being imported * @returns {void} * @private */ - function reportPathForPatterns(node, group) { + function reportPathForPatterns(node, group, importNames) { const importSource = node.source.value.trim(); - context.report({ - node, - messageId: group.customMessage ? "patternWithCustomMessage" : "patterns", - data: { - importSource, - customMessage: group.customMessage + const customMessage = group.customMessage; + const restrictedImportNames = group.importNames; + + /* + * If we are not restricting to any specific import names and just the pattern itself, + * report the error and move on + */ + if (!restrictedImportNames) { + context.report({ + node, + messageId: customMessage ? "patternWithCustomMessage" : "patterns", + data: { + importSource, + customMessage + } + }); + return; + } + + if (importNames.has("*")) { + const specifierData = importNames.get("*")[0]; + + context.report({ + node, + messageId: customMessage ? "patternAndEverythingWithCustomMessage" : "patternAndEverything", + loc: specifierData.loc, + data: { + importSource, + importNames: restrictedImportNames, + customMessage + } + }); + } + + restrictedImportNames.forEach(importName => { + if (!importNames.has(importName)) { + return; } + + const specifiers = importNames.get(importName); + + specifiers.forEach(specifier => { + context.report({ + node, + messageId: customMessage ? "patternAndImportNameWithCustomMessage" : "patternAndImportName", + loc: specifier.loc, + data: { + importSource, + customMessage, + importName + } + }); + }); }); } @@ -304,7 +369,7 @@ module.exports = { checkRestrictedPathAndReport(importSource, importNames, node); restrictedPatternGroups.forEach(group => { if (isRestrictedPattern(importSource, group)) { - reportPathForPatterns(node, group); + reportPathForPatterns(node, group, importNames); } }); } diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-modules.js b/tools/node_modules/eslint/lib/rules/no-restricted-modules.js index d92aa7a86bcfee..c37694f90461f9 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-modules.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-modules.js @@ -49,7 +49,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified modules when loaded by `require`", + description: "Disallow specified modules when loaded by `require`", recommended: false, url: "https://eslint.org/docs/rules/no-restricted-modules" }, diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-properties.js b/tools/node_modules/eslint/lib/rules/no-restricted-properties.js index 1e8c7a89aedae7..7c03498563f6e4 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-properties.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-properties.js @@ -17,7 +17,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow certain properties on certain objects", + description: "Disallow certain properties on certain objects", recommended: false, url: "https://eslint.org/docs/rules/no-restricted-properties" }, diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-syntax.js b/tools/node_modules/eslint/lib/rules/no-restricted-syntax.js index 713d1157c4d692..76369cfd539e62 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-syntax.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-syntax.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified syntax", + description: "Disallow specified syntax", recommended: false, url: "https://eslint.org/docs/rules/no-restricted-syntax" }, diff --git a/tools/node_modules/eslint/lib/rules/no-return-assign.js b/tools/node_modules/eslint/lib/rules/no-return-assign.js index 4fd7a3ddba587f..ccaf2c1c158a23 100644 --- a/tools/node_modules/eslint/lib/rules/no-return-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-return-assign.js @@ -26,7 +26,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow assignment operators in `return` statements", + description: "Disallow assignment operators in `return` statements", recommended: false, url: "https://eslint.org/docs/rules/no-return-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-return-await.js b/tools/node_modules/eslint/lib/rules/no-return-await.js index 191bf42dcf98ee..3007c8c877d6a0 100644 --- a/tools/node_modules/eslint/lib/rules/no-return-await.js +++ b/tools/node_modules/eslint/lib/rules/no-return-await.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary `return await`", + description: "Disallow unnecessary `return await`", recommended: false, diff --git a/tools/node_modules/eslint/lib/rules/no-script-url.js b/tools/node_modules/eslint/lib/rules/no-script-url.js index 0eef25418402c0..41479006ee9273 100644 --- a/tools/node_modules/eslint/lib/rules/no-script-url.js +++ b/tools/node_modules/eslint/lib/rules/no-script-url.js @@ -18,7 +18,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `javascript:` urls", + description: "Disallow `javascript:` urls", recommended: false, url: "https://eslint.org/docs/rules/no-script-url" }, diff --git a/tools/node_modules/eslint/lib/rules/no-self-assign.js b/tools/node_modules/eslint/lib/rules/no-self-assign.js index 060cc8e353ecfa..348ee8dfc5fd1c 100644 --- a/tools/node_modules/eslint/lib/rules/no-self-assign.js +++ b/tools/node_modules/eslint/lib/rules/no-self-assign.js @@ -130,7 +130,7 @@ module.exports = { type: "problem", docs: { - description: "disallow assignments where both sides are exactly the same", + description: "Disallow assignments where both sides are exactly the same", recommended: true, url: "https://eslint.org/docs/rules/no-self-assign" }, diff --git a/tools/node_modules/eslint/lib/rules/no-self-compare.js b/tools/node_modules/eslint/lib/rules/no-self-compare.js index c3512895e13474..dab0db4b917484 100644 --- a/tools/node_modules/eslint/lib/rules/no-self-compare.js +++ b/tools/node_modules/eslint/lib/rules/no-self-compare.js @@ -16,7 +16,7 @@ module.exports = { type: "problem", docs: { - description: "disallow comparisons where both sides are exactly the same", + description: "Disallow comparisons where both sides are exactly the same", recommended: false, url: "https://eslint.org/docs/rules/no-self-compare" }, diff --git a/tools/node_modules/eslint/lib/rules/no-sequences.js b/tools/node_modules/eslint/lib/rules/no-sequences.js index 376aec3798805a..2c0c27c3feabb7 100644 --- a/tools/node_modules/eslint/lib/rules/no-sequences.js +++ b/tools/node_modules/eslint/lib/rules/no-sequences.js @@ -29,7 +29,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow comma operators", + description: "Disallow comma operators", recommended: false, url: "https://eslint.org/docs/rules/no-sequences" }, diff --git a/tools/node_modules/eslint/lib/rules/no-setter-return.js b/tools/node_modules/eslint/lib/rules/no-setter-return.js index 7204e5c0c4d5c4..25e8f1428b2575 100644 --- a/tools/node_modules/eslint/lib/rules/no-setter-return.js +++ b/tools/node_modules/eslint/lib/rules/no-setter-return.js @@ -142,7 +142,7 @@ module.exports = { type: "problem", docs: { - description: "disallow returning values from setters", + description: "Disallow returning values from setters", recommended: true, url: "https://eslint.org/docs/rules/no-setter-return" }, diff --git a/tools/node_modules/eslint/lib/rules/no-shadow-restricted-names.js b/tools/node_modules/eslint/lib/rules/no-shadow-restricted-names.js index 52620e58d1c1c1..a7d6d00f1645fc 100644 --- a/tools/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +++ b/tools/node_modules/eslint/lib/rules/no-shadow-restricted-names.js @@ -27,7 +27,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow identifiers from shadowing restricted names", + description: "Disallow identifiers from shadowing restricted names", recommended: true, url: "https://eslint.org/docs/rules/no-shadow-restricted-names" }, diff --git a/tools/node_modules/eslint/lib/rules/no-shadow.js b/tools/node_modules/eslint/lib/rules/no-shadow.js index b4ef334efdd3ab..3af9354ebd7de1 100644 --- a/tools/node_modules/eslint/lib/rules/no-shadow.js +++ b/tools/node_modules/eslint/lib/rules/no-shadow.js @@ -30,7 +30,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow variable declarations from shadowing variables declared in the outer scope", + description: "Disallow variable declarations from shadowing variables declared in the outer scope", recommended: false, url: "https://eslint.org/docs/rules/no-shadow" }, diff --git a/tools/node_modules/eslint/lib/rules/no-spaced-func.js b/tools/node_modules/eslint/lib/rules/no-spaced-func.js index 1d2994333e125e..97e2da06b0f75c 100644 --- a/tools/node_modules/eslint/lib/rules/no-spaced-func.js +++ b/tools/node_modules/eslint/lib/rules/no-spaced-func.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "disallow spacing between function identifiers and their applications (deprecated)", + description: "Disallow spacing between function identifiers and their applications (deprecated)", recommended: false, url: "https://eslint.org/docs/rules/no-spaced-func" }, diff --git a/tools/node_modules/eslint/lib/rules/no-sparse-arrays.js b/tools/node_modules/eslint/lib/rules/no-sparse-arrays.js index ff5c2cf997887e..0e95fe4af7baf2 100644 --- a/tools/node_modules/eslint/lib/rules/no-sparse-arrays.js +++ b/tools/node_modules/eslint/lib/rules/no-sparse-arrays.js @@ -14,7 +14,7 @@ module.exports = { type: "problem", docs: { - description: "disallow sparse arrays", + description: "Disallow sparse arrays", recommended: true, url: "https://eslint.org/docs/rules/no-sparse-arrays" }, diff --git a/tools/node_modules/eslint/lib/rules/no-sync.js b/tools/node_modules/eslint/lib/rules/no-sync.js index 3536d9f2a39a9b..71360c6bd3238f 100644 --- a/tools/node_modules/eslint/lib/rules/no-sync.js +++ b/tools/node_modules/eslint/lib/rules/no-sync.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow synchronous methods", + description: "Disallow synchronous methods", recommended: false, url: "https://eslint.org/docs/rules/no-sync" }, diff --git a/tools/node_modules/eslint/lib/rules/no-tabs.js b/tools/node_modules/eslint/lib/rules/no-tabs.js index 9758b850be161a..1b4834e09a73e6 100644 --- a/tools/node_modules/eslint/lib/rules/no-tabs.js +++ b/tools/node_modules/eslint/lib/rules/no-tabs.js @@ -22,7 +22,7 @@ module.exports = { type: "layout", docs: { - description: "disallow all tabs", + description: "Disallow all tabs", recommended: false, url: "https://eslint.org/docs/rules/no-tabs" }, diff --git a/tools/node_modules/eslint/lib/rules/no-template-curly-in-string.js b/tools/node_modules/eslint/lib/rules/no-template-curly-in-string.js index 1901460f3d2263..4f4e9ee17e9c34 100644 --- a/tools/node_modules/eslint/lib/rules/no-template-curly-in-string.js +++ b/tools/node_modules/eslint/lib/rules/no-template-curly-in-string.js @@ -14,7 +14,7 @@ module.exports = { type: "problem", docs: { - description: "disallow template literal placeholder syntax in regular strings", + description: "Disallow template literal placeholder syntax in regular strings", recommended: false, url: "https://eslint.org/docs/rules/no-template-curly-in-string" }, diff --git a/tools/node_modules/eslint/lib/rules/no-ternary.js b/tools/node_modules/eslint/lib/rules/no-ternary.js index b0dc626832bc2e..a185808a69adbc 100644 --- a/tools/node_modules/eslint/lib/rules/no-ternary.js +++ b/tools/node_modules/eslint/lib/rules/no-ternary.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow ternary operators", + description: "Disallow ternary operators", recommended: false, url: "https://eslint.org/docs/rules/no-ternary" }, diff --git a/tools/node_modules/eslint/lib/rules/no-this-before-super.js b/tools/node_modules/eslint/lib/rules/no-this-before-super.js index 929eded2443324..b4e48e8626498a 100644 --- a/tools/node_modules/eslint/lib/rules/no-this-before-super.js +++ b/tools/node_modules/eslint/lib/rules/no-this-before-super.js @@ -40,7 +40,7 @@ module.exports = { type: "problem", docs: { - description: "disallow `this`/`super` before calling `super()` in constructors", + description: "Disallow `this`/`super` before calling `super()` in constructors", recommended: true, url: "https://eslint.org/docs/rules/no-this-before-super" }, diff --git a/tools/node_modules/eslint/lib/rules/no-throw-literal.js b/tools/node_modules/eslint/lib/rules/no-throw-literal.js index c670ed9e5e1cbb..3656c83a3ffb38 100644 --- a/tools/node_modules/eslint/lib/rules/no-throw-literal.js +++ b/tools/node_modules/eslint/lib/rules/no-throw-literal.js @@ -17,7 +17,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow throwing literals as exceptions", + description: "Disallow throwing literals as exceptions", recommended: false, url: "https://eslint.org/docs/rules/no-throw-literal" }, diff --git a/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js b/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js index 9e720ad32e8f2d..a02a880e1d6179 100644 --- a/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js +++ b/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "disallow trailing whitespace at the end of lines", + description: "Disallow trailing whitespace at the end of lines", recommended: false, url: "https://eslint.org/docs/rules/no-trailing-spaces" }, diff --git a/tools/node_modules/eslint/lib/rules/no-undef-init.js b/tools/node_modules/eslint/lib/rules/no-undef-init.js index 2c2204cf0fe2d2..2cb1c3f3710169 100644 --- a/tools/node_modules/eslint/lib/rules/no-undef-init.js +++ b/tools/node_modules/eslint/lib/rules/no-undef-init.js @@ -17,7 +17,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow initializing variables to `undefined`", + description: "Disallow initializing variables to `undefined`", recommended: false, url: "https://eslint.org/docs/rules/no-undef-init" }, diff --git a/tools/node_modules/eslint/lib/rules/no-undef.js b/tools/node_modules/eslint/lib/rules/no-undef.js index f65903245c8d6c..e920ce6c28885f 100644 --- a/tools/node_modules/eslint/lib/rules/no-undef.js +++ b/tools/node_modules/eslint/lib/rules/no-undef.js @@ -29,7 +29,7 @@ module.exports = { type: "problem", docs: { - description: "disallow the use of undeclared variables unless mentioned in `/*global */` comments", + description: "Disallow the use of undeclared variables unless mentioned in `/*global */` comments", recommended: true, url: "https://eslint.org/docs/rules/no-undef" }, diff --git a/tools/node_modules/eslint/lib/rules/no-undefined.js b/tools/node_modules/eslint/lib/rules/no-undefined.js index de396d889c0e27..e006320b522369 100644 --- a/tools/node_modules/eslint/lib/rules/no-undefined.js +++ b/tools/node_modules/eslint/lib/rules/no-undefined.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `undefined` as an identifier", + description: "Disallow the use of `undefined` as an identifier", recommended: false, url: "https://eslint.org/docs/rules/no-undefined" }, diff --git a/tools/node_modules/eslint/lib/rules/no-underscore-dangle.js b/tools/node_modules/eslint/lib/rules/no-underscore-dangle.js index a3a9f65003202e..eb3e404a66d70d 100644 --- a/tools/node_modules/eslint/lib/rules/no-underscore-dangle.js +++ b/tools/node_modules/eslint/lib/rules/no-underscore-dangle.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow dangling underscores in identifiers", + description: "Disallow dangling underscores in identifiers", recommended: false, url: "https://eslint.org/docs/rules/no-underscore-dangle" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unexpected-multiline.js b/tools/node_modules/eslint/lib/rules/no-unexpected-multiline.js index 60d8f3164cd9f0..2ca6731bc676ae 100644 --- a/tools/node_modules/eslint/lib/rules/no-unexpected-multiline.js +++ b/tools/node_modules/eslint/lib/rules/no-unexpected-multiline.js @@ -20,7 +20,7 @@ module.exports = { type: "problem", docs: { - description: "disallow confusing multiline expressions", + description: "Disallow confusing multiline expressions", recommended: true, url: "https://eslint.org/docs/rules/no-unexpected-multiline" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js b/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js index 5b8da26f2d21cd..12f61e98e6a1c0 100644 --- a/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +++ b/tools/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js @@ -162,7 +162,7 @@ module.exports = { type: "problem", docs: { - description: "disallow unmodified loop conditions", + description: "Disallow unmodified loop conditions", recommended: false, url: "https://eslint.org/docs/rules/no-unmodified-loop-condition" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js b/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js index e00d5270a2aa05..c193282fa70314 100644 --- a/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js +++ b/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js @@ -29,7 +29,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow ternary operators when simpler alternatives exist", + description: "Disallow ternary operators when simpler alternatives exist", recommended: false, url: "https://eslint.org/docs/rules/no-unneeded-ternary" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unreachable-loop.js b/tools/node_modules/eslint/lib/rules/no-unreachable-loop.js index f100263308fad6..c42c922e0c4b88 100644 --- a/tools/node_modules/eslint/lib/rules/no-unreachable-loop.js +++ b/tools/node_modules/eslint/lib/rules/no-unreachable-loop.js @@ -59,7 +59,7 @@ module.exports = { type: "problem", docs: { - description: "disallow loops with a body that allows only one iteration", + description: "Disallow loops with a body that allows only one iteration", recommended: false, url: "https://eslint.org/docs/rules/no-unreachable-loop" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unreachable.js b/tools/node_modules/eslint/lib/rules/no-unreachable.js index 4dda51f11b9a9a..dea86815aac5b9 100644 --- a/tools/node_modules/eslint/lib/rules/no-unreachable.js +++ b/tools/node_modules/eslint/lib/rules/no-unreachable.js @@ -111,7 +111,7 @@ module.exports = { type: "problem", docs: { - description: "disallow unreachable code after `return`, `throw`, `continue`, and `break` statements", + description: "Disallow unreachable code after `return`, `throw`, `continue`, and `break` statements", recommended: true, url: "https://eslint.org/docs/rules/no-unreachable" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unsafe-finally.js b/tools/node_modules/eslint/lib/rules/no-unsafe-finally.js index 26c05eab8b0825..80adb0fea4678b 100644 --- a/tools/node_modules/eslint/lib/rules/no-unsafe-finally.js +++ b/tools/node_modules/eslint/lib/rules/no-unsafe-finally.js @@ -24,7 +24,7 @@ module.exports = { type: "problem", docs: { - description: "disallow control flow statements in `finally` blocks", + description: "Disallow control flow statements in `finally` blocks", recommended: true, url: "https://eslint.org/docs/rules/no-unsafe-finally" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unsafe-negation.js b/tools/node_modules/eslint/lib/rules/no-unsafe-negation.js index 057b1742acc058..5dd150f878806a 100644 --- a/tools/node_modules/eslint/lib/rules/no-unsafe-negation.js +++ b/tools/node_modules/eslint/lib/rules/no-unsafe-negation.js @@ -52,7 +52,7 @@ module.exports = { type: "problem", docs: { - description: "disallow negating the left operand of relational operators", + description: "Disallow negating the left operand of relational operators", recommended: true, url: "https://eslint.org/docs/rules/no-unsafe-negation" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js b/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js index 8556ccbd79dc2c..99139078198686 100644 --- a/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +++ b/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js @@ -24,7 +24,7 @@ module.exports = { type: "problem", docs: { - description: "disallow use of optional chaining in contexts where the `undefined` value is not allowed", + description: "Disallow use of optional chaining in contexts where the `undefined` value is not allowed", recommended: true, url: "https://eslint.org/docs/rules/no-unsafe-optional-chaining" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unused-expressions.js b/tools/node_modules/eslint/lib/rules/no-unused-expressions.js index e90099d6201eeb..d34d5844d97f6a 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-expressions.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-expressions.js @@ -30,7 +30,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unused expressions", + description: "Disallow unused expressions", recommended: false, url: "https://eslint.org/docs/rules/no-unused-expressions" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unused-labels.js b/tools/node_modules/eslint/lib/rules/no-unused-labels.js index f309dd12b1253c..305226a4df2e92 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-labels.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-labels.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unused labels", + description: "Disallow unused labels", recommended: true, url: "https://eslint.org/docs/rules/no-unused-labels" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js b/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js index 754c36002eb94a..e62a9ed596822a 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js @@ -15,7 +15,7 @@ module.exports = { type: "problem", docs: { - description: "disallow unused private class members", + description: "Disallow unused private class members", recommended: false, url: "https://eslint.org/docs/rules/no-unused-private-class-members" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unused-vars.js b/tools/node_modules/eslint/lib/rules/no-unused-vars.js index 2114e6f6aacb65..778889a7676f97 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-vars.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-vars.js @@ -33,7 +33,7 @@ module.exports = { type: "problem", docs: { - description: "disallow unused variables", + description: "Disallow unused variables", recommended: true, url: "https://eslint.org/docs/rules/no-unused-vars" }, 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 0dc4d76817bb38..592c083589c671 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 @@ -226,7 +226,7 @@ module.exports = { type: "problem", docs: { - description: "disallow the use of variables before they are defined", + description: "Disallow the use of variables before they are defined", recommended: false, url: "https://eslint.org/docs/rules/no-use-before-define" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-backreference.js b/tools/node_modules/eslint/lib/rules/no-useless-backreference.js index 1a09988b80956e..f23535bc359d96 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-backreference.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-backreference.js @@ -64,7 +64,7 @@ module.exports = { type: "problem", docs: { - description: "disallow useless backreferences in regular expressions", + description: "Disallow useless backreferences in regular expressions", recommended: true, url: "https://eslint.org/docs/rules/no-useless-backreference" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-call.js b/tools/node_modules/eslint/lib/rules/no-useless-call.js index 8c57cd5cc9a876..2d3ae4e84aeed6 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-call.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-call.js @@ -55,7 +55,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary calls to `.call()` and `.apply()`", + description: "Disallow unnecessary calls to `.call()` and `.apply()`", recommended: false, url: "https://eslint.org/docs/rules/no-useless-call" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-catch.js b/tools/node_modules/eslint/lib/rules/no-useless-catch.js index 325a2e58117188..36c356ecb4265f 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-catch.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-catch.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary `catch` clauses", + description: "Disallow unnecessary `catch` clauses", recommended: true, url: "https://eslint.org/docs/rules/no-useless-catch" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js b/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js index 7ebbe09de26bb7..e7a3dc1db6d488 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js @@ -91,7 +91,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary computed property keys in objects and classes", + description: "Disallow unnecessary computed property keys in objects and classes", recommended: false, url: "https://eslint.org/docs/rules/no-useless-computed-key" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-concat.js b/tools/node_modules/eslint/lib/rules/no-useless-concat.js index 36ca84f90cbacf..26c5206df365a9 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-concat.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-concat.js @@ -70,7 +70,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary concatenation of literals or template literals", + description: "Disallow unnecessary concatenation of literals or template literals", recommended: false, url: "https://eslint.org/docs/rules/no-useless-concat" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-constructor.js b/tools/node_modules/eslint/lib/rules/no-useless-constructor.js index 6512c8b1fefbf9..38c3bc3a05cde0 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-constructor.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-constructor.js @@ -138,7 +138,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary constructors", + description: "Disallow unnecessary constructors", recommended: false, url: "https://eslint.org/docs/rules/no-useless-constructor" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-escape.js b/tools/node_modules/eslint/lib/rules/no-useless-escape.js index 123bc5b8a0169c..2046a148a17fd1 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-escape.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-escape.js @@ -84,7 +84,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow unnecessary escape characters", + description: "Disallow unnecessary escape characters", recommended: true, url: "https://eslint.org/docs/rules/no-useless-escape" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-rename.js b/tools/node_modules/eslint/lib/rules/no-useless-rename.js index 2489f57bcf52cc..908605f74cbae5 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-rename.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-rename.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow renaming import, export, and destructured assignments to the same name", + description: "Disallow renaming import, export, and destructured assignments to the same name", recommended: false, url: "https://eslint.org/docs/rules/no-useless-rename" }, diff --git a/tools/node_modules/eslint/lib/rules/no-useless-return.js b/tools/node_modules/eslint/lib/rules/no-useless-return.js index 0baa6b2942d172..be8d4dfd3a52b4 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-return.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-return.js @@ -67,7 +67,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow redundant return statements", + description: "Disallow redundant return statements", recommended: false, url: "https://eslint.org/docs/rules/no-useless-return" }, diff --git a/tools/node_modules/eslint/lib/rules/no-var.js b/tools/node_modules/eslint/lib/rules/no-var.js index 83a1f62eb6f952..2185610ea10331 100644 --- a/tools/node_modules/eslint/lib/rules/no-var.js +++ b/tools/node_modules/eslint/lib/rules/no-var.js @@ -185,7 +185,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `let` or `const` instead of `var`", + description: "Require `let` or `const` instead of `var`", recommended: false, url: "https://eslint.org/docs/rules/no-var" }, diff --git a/tools/node_modules/eslint/lib/rules/no-void.js b/tools/node_modules/eslint/lib/rules/no-void.js index 8631caf70cf96e..15c4730612d617 100644 --- a/tools/node_modules/eslint/lib/rules/no-void.js +++ b/tools/node_modules/eslint/lib/rules/no-void.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `void` operators", + description: "Disallow `void` operators", recommended: false, url: "https://eslint.org/docs/rules/no-void" }, diff --git a/tools/node_modules/eslint/lib/rules/no-warning-comments.js b/tools/node_modules/eslint/lib/rules/no-warning-comments.js index 5f3ea21d7d0e86..40c89b19eb6b2d 100644 --- a/tools/node_modules/eslint/lib/rules/no-warning-comments.js +++ b/tools/node_modules/eslint/lib/rules/no-warning-comments.js @@ -20,7 +20,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow specified warning terms in comments", + description: "Disallow specified warning terms in comments", recommended: false, url: "https://eslint.org/docs/rules/no-warning-comments" }, diff --git a/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js b/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js index 95e920f27ea9bc..67323816f85bbe 100644 --- a/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js +++ b/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "disallow whitespace before properties", + description: "Disallow whitespace before properties", recommended: false, url: "https://eslint.org/docs/rules/no-whitespace-before-property" }, diff --git a/tools/node_modules/eslint/lib/rules/no-with.js b/tools/node_modules/eslint/lib/rules/no-with.js index fc93f199f87ac0..33de68d9c05ec3 100644 --- a/tools/node_modules/eslint/lib/rules/no-with.js +++ b/tools/node_modules/eslint/lib/rules/no-with.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `with` statements", + description: "Disallow `with` statements", recommended: true, url: "https://eslint.org/docs/rules/no-with" }, diff --git a/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js b/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js index c177cf34cee880..cefecf302a6944 100644 --- a/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +++ b/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "enforce the location of single-line statements", + description: "Enforce the location of single-line statements", recommended: false, url: "https://eslint.org/docs/rules/nonblock-statement-body-position" }, diff --git a/tools/node_modules/eslint/lib/rules/object-curly-newline.js b/tools/node_modules/eslint/lib/rules/object-curly-newline.js index e052cd86493f38..2f8004918a96e4 100644 --- a/tools/node_modules/eslint/lib/rules/object-curly-newline.js +++ b/tools/node_modules/eslint/lib/rules/object-curly-newline.js @@ -150,7 +150,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent line breaks after opening and before closing braces", + description: "Enforce consistent line breaks after opening and before closing braces", recommended: false, url: "https://eslint.org/docs/rules/object-curly-newline" }, diff --git a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js index 9122da3ef3dbfc..d6a8e5956aeb43 100644 --- a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js +++ b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing inside braces", + description: "Enforce consistent spacing inside braces", recommended: false, url: "https://eslint.org/docs/rules/object-curly-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/object-property-newline.js b/tools/node_modules/eslint/lib/rules/object-property-newline.js index dac084c3f651d1..bc079a16f45929 100644 --- a/tools/node_modules/eslint/lib/rules/object-property-newline.js +++ b/tools/node_modules/eslint/lib/rules/object-property-newline.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "enforce placing object properties on separate lines", + description: "Enforce placing object properties on separate lines", recommended: false, url: "https://eslint.org/docs/rules/object-property-newline" }, diff --git a/tools/node_modules/eslint/lib/rules/object-shorthand.js b/tools/node_modules/eslint/lib/rules/object-shorthand.js index aa03450d071909..8cd3978ca354c0 100644 --- a/tools/node_modules/eslint/lib/rules/object-shorthand.js +++ b/tools/node_modules/eslint/lib/rules/object-shorthand.js @@ -28,7 +28,7 @@ module.exports = { type: "suggestion", docs: { - description: "require or disallow method and property shorthand syntax for object literals", + description: "Require or disallow method and property shorthand syntax for object literals", recommended: false, url: "https://eslint.org/docs/rules/object-shorthand" }, diff --git a/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js b/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js index 440146b92c1c65..65be0929e715c8 100644 --- a/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +++ b/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js @@ -14,7 +14,7 @@ module.exports = { type: "suggestion", docs: { - description: "require or disallow newlines around variable declarations", + description: "Require or disallow newlines around variable declarations", recommended: false, url: "https://eslint.org/docs/rules/one-var-declaration-per-line" }, diff --git a/tools/node_modules/eslint/lib/rules/one-var.js b/tools/node_modules/eslint/lib/rules/one-var.js index 1818c02e6e1415..a8e2a1de05ab92 100644 --- a/tools/node_modules/eslint/lib/rules/one-var.js +++ b/tools/node_modules/eslint/lib/rules/one-var.js @@ -34,7 +34,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce variables to be declared either together or separately in functions", + description: "Enforce variables to be declared either together or separately in functions", recommended: false, url: "https://eslint.org/docs/rules/one-var" }, diff --git a/tools/node_modules/eslint/lib/rules/operator-assignment.js b/tools/node_modules/eslint/lib/rules/operator-assignment.js index 8b9fb5bd73b800..ed9cb963bf282a 100644 --- a/tools/node_modules/eslint/lib/rules/operator-assignment.js +++ b/tools/node_modules/eslint/lib/rules/operator-assignment.js @@ -63,7 +63,7 @@ module.exports = { type: "suggestion", docs: { - description: "require or disallow assignment operator shorthand where possible", + description: "Require or disallow assignment operator shorthand where possible", recommended: false, url: "https://eslint.org/docs/rules/operator-assignment" }, diff --git a/tools/node_modules/eslint/lib/rules/operator-linebreak.js b/tools/node_modules/eslint/lib/rules/operator-linebreak.js index a04f85bdea96ba..03b603e75843db 100644 --- a/tools/node_modules/eslint/lib/rules/operator-linebreak.js +++ b/tools/node_modules/eslint/lib/rules/operator-linebreak.js @@ -21,7 +21,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent linebreak style for operators", + description: "Enforce consistent linebreak style for operators", recommended: false, url: "https://eslint.org/docs/rules/operator-linebreak" }, diff --git a/tools/node_modules/eslint/lib/rules/padded-blocks.js b/tools/node_modules/eslint/lib/rules/padded-blocks.js index 336adac9a02f19..5faf434387456e 100644 --- a/tools/node_modules/eslint/lib/rules/padded-blocks.js +++ b/tools/node_modules/eslint/lib/rules/padded-blocks.js @@ -21,7 +21,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow padding within blocks", + description: "Require or disallow padding within blocks", recommended: false, url: "https://eslint.org/docs/rules/padded-blocks" }, diff --git a/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js b/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js index 7b442bff64a0ce..9d730bffcd9025 100644 --- a/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js +++ b/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js @@ -431,7 +431,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow padding lines between statements", + description: "Require or disallow padding lines between statements", recommended: false, url: "https://eslint.org/docs/rules/padding-line-between-statements" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js b/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js index 55a098a60979ce..9667139a88d3fd 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js +++ b/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js @@ -151,7 +151,7 @@ module.exports = { type: "suggestion", docs: { - description: "require using arrow functions for callbacks", + description: "Require using arrow functions for callbacks", recommended: false, url: "https://eslint.org/docs/rules/prefer-arrow-callback" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-const.js b/tools/node_modules/eslint/lib/rules/prefer-const.js index cf07d6ce714f52..08f4492aaea685 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-const.js +++ b/tools/node_modules/eslint/lib/rules/prefer-const.js @@ -332,7 +332,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `const` declarations for variables that are never reassigned after declared", + description: "Require `const` declarations for variables that are never reassigned after declared", recommended: false, url: "https://eslint.org/docs/rules/prefer-const" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-destructuring.js b/tools/node_modules/eslint/lib/rules/prefer-destructuring.js index 1f68313d6b178d..fdf46f65f59b72 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-destructuring.js +++ b/tools/node_modules/eslint/lib/rules/prefer-destructuring.js @@ -26,7 +26,7 @@ module.exports = { type: "suggestion", docs: { - description: "require destructuring from arrays and/or objects", + description: "Require destructuring from arrays and/or objects", recommended: false, url: "https://eslint.org/docs/rules/prefer-destructuring" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js b/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js index a291e8dec15164..fec5319723e44d 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +++ b/tools/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js @@ -90,7 +90,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow the use of `Math.pow` in favor of the `**` operator", + description: "Disallow the use of `Math.pow` in favor of the `**` operator", recommended: false, url: "https://eslint.org/docs/rules/prefer-exponentiation-operator" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js b/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js index cff2d8f45d270a..1a13ffa858292d 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js +++ b/tools/node_modules/eslint/lib/rules/prefer-named-capture-group.js @@ -33,7 +33,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce using named capture group in regular expression", + description: "Enforce using named capture group in regular expression", recommended: false, url: "https://eslint.org/docs/rules/prefer-named-capture-group" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-numeric-literals.js b/tools/node_modules/eslint/lib/rules/prefer-numeric-literals.js index 53a515368960fc..5f70158126c961 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-numeric-literals.js +++ b/tools/node_modules/eslint/lib/rules/prefer-numeric-literals.js @@ -45,7 +45,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow `parseInt()` and `Number.parseInt()` in favor of binary, octal, and hexadecimal literals", + description: "Disallow `parseInt()` and `Number.parseInt()` in favor of binary, octal, and hexadecimal literals", recommended: false, url: "https://eslint.org/docs/rules/prefer-numeric-literals" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js b/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js index 19abdb315655c2..023d0a64f4c5b7 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js +++ b/tools/node_modules/eslint/lib/rules/prefer-object-has-own.js @@ -50,7 +50,7 @@ module.exports = { type: "suggestion", docs: { description: - "disallow use of `Object.prototype.hasOwnProperty.call()` and prefer use of `Object.hasOwn()`", + "Disallow use of `Object.prototype.hasOwnProperty.call()` and prefer use of `Object.hasOwn()`", recommended: false, url: "https://eslint.org/docs/rules/prefer-object-has-own" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-object-spread.js b/tools/node_modules/eslint/lib/rules/prefer-object-spread.js index b63474ef2bd376..08192001a2b8d7 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-object-spread.js +++ b/tools/node_modules/eslint/lib/rules/prefer-object-spread.js @@ -247,7 +247,7 @@ module.exports = { docs: { description: - "disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead.", + "Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead.", recommended: false, url: "https://eslint.org/docs/rules/prefer-object-spread" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js b/tools/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js index 60e72f451019f8..bd7bdcbf5b7b86 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +++ b/tools/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js @@ -16,7 +16,7 @@ module.exports = { type: "suggestion", docs: { - description: "require using Error objects as Promise rejection reasons", + description: "Require using Error objects as Promise rejection reasons", recommended: false, url: "https://eslint.org/docs/rules/prefer-promise-reject-errors" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-reflect.js b/tools/node_modules/eslint/lib/rules/prefer-reflect.js index 377268900b4ece..68ffa88b352441 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-reflect.js +++ b/tools/node_modules/eslint/lib/rules/prefer-reflect.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `Reflect` methods where applicable", + description: "Require `Reflect` methods where applicable", recommended: false, url: "https://eslint.org/docs/rules/prefer-reflect" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js b/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js index aa7258997c54aa..f30eddbf8c503a 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js +++ b/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js @@ -123,7 +123,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow use of the `RegExp` constructor in favor of regular expression literals", + description: "Disallow use of the `RegExp` constructor in favor of regular expression literals", recommended: false, url: "https://eslint.org/docs/rules/prefer-regex-literals" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-rest-params.js b/tools/node_modules/eslint/lib/rules/prefer-rest-params.js index 371a28964f2739..df1be55879a194 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-rest-params.js +++ b/tools/node_modules/eslint/lib/rules/prefer-rest-params.js @@ -65,7 +65,7 @@ module.exports = { type: "suggestion", docs: { - description: "require rest parameters instead of `arguments`", + description: "Require rest parameters instead of `arguments`", recommended: false, url: "https://eslint.org/docs/rules/prefer-rest-params" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-spread.js b/tools/node_modules/eslint/lib/rules/prefer-spread.js index c5f9e1e6cbf674..c8909fc0612a6b 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-spread.js +++ b/tools/node_modules/eslint/lib/rules/prefer-spread.js @@ -49,7 +49,7 @@ module.exports = { type: "suggestion", docs: { - description: "require spread operators instead of `.apply()`", + description: "Require spread operators instead of `.apply()`", recommended: false, url: "https://eslint.org/docs/rules/prefer-spread" }, diff --git a/tools/node_modules/eslint/lib/rules/prefer-template.js b/tools/node_modules/eslint/lib/rules/prefer-template.js index e61eac1d65d855..167c187db6f70e 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-template.js +++ b/tools/node_modules/eslint/lib/rules/prefer-template.js @@ -128,7 +128,7 @@ module.exports = { type: "suggestion", docs: { - description: "require template literals instead of string concatenation", + description: "Require template literals instead of string concatenation", recommended: false, url: "https://eslint.org/docs/rules/prefer-template" }, diff --git a/tools/node_modules/eslint/lib/rules/quote-props.js b/tools/node_modules/eslint/lib/rules/quote-props.js index 0b66d761c47f82..db9423978bb380 100644 --- a/tools/node_modules/eslint/lib/rules/quote-props.js +++ b/tools/node_modules/eslint/lib/rules/quote-props.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "require quotes around object literal property names", + description: "Require quotes around object literal property names", recommended: false, url: "https://eslint.org/docs/rules/quote-props" }, diff --git a/tools/node_modules/eslint/lib/rules/quotes.js b/tools/node_modules/eslint/lib/rules/quotes.js index f1d30a044bcbdb..ab7b38b90bfb08 100644 --- a/tools/node_modules/eslint/lib/rules/quotes.js +++ b/tools/node_modules/eslint/lib/rules/quotes.js @@ -80,7 +80,7 @@ module.exports = { type: "layout", docs: { - description: "enforce the consistent use of either backticks, double, or single quotes", + description: "Enforce the consistent use of either backticks, double, or single quotes", recommended: false, url: "https://eslint.org/docs/rules/quotes" }, diff --git a/tools/node_modules/eslint/lib/rules/radix.js b/tools/node_modules/eslint/lib/rules/radix.js index f83c762c11d397..0618d9844ad295 100644 --- a/tools/node_modules/eslint/lib/rules/radix.js +++ b/tools/node_modules/eslint/lib/rules/radix.js @@ -80,7 +80,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce the consistent use of the radix argument when using `parseInt()`", + description: "Enforce the consistent use of the radix argument when using `parseInt()`", recommended: false, url: "https://eslint.org/docs/rules/radix" }, diff --git a/tools/node_modules/eslint/lib/rules/require-atomic-updates.js b/tools/node_modules/eslint/lib/rules/require-atomic-updates.js index 4dbd48dfc585a4..7a5f822ab28c9a 100644 --- a/tools/node_modules/eslint/lib/rules/require-atomic-updates.js +++ b/tools/node_modules/eslint/lib/rules/require-atomic-updates.js @@ -171,7 +171,7 @@ module.exports = { type: "problem", docs: { - description: "disallow assignments that can lead to race conditions due to usage of `await` or `yield`", + description: "Disallow assignments that can lead to race conditions due to usage of `await` or `yield`", recommended: false, url: "https://eslint.org/docs/rules/require-atomic-updates" }, diff --git a/tools/node_modules/eslint/lib/rules/require-await.js b/tools/node_modules/eslint/lib/rules/require-await.js index 1b17de0e197556..1add2552e58043 100644 --- a/tools/node_modules/eslint/lib/rules/require-await.js +++ b/tools/node_modules/eslint/lib/rules/require-await.js @@ -34,7 +34,7 @@ module.exports = { type: "suggestion", docs: { - description: "disallow async functions which have no `await` expression", + description: "Disallow async functions which have no `await` expression", recommended: false, url: "https://eslint.org/docs/rules/require-await" }, diff --git a/tools/node_modules/eslint/lib/rules/require-jsdoc.js b/tools/node_modules/eslint/lib/rules/require-jsdoc.js index 169b6f524139cb..755f6df5fee3a9 100644 --- a/tools/node_modules/eslint/lib/rules/require-jsdoc.js +++ b/tools/node_modules/eslint/lib/rules/require-jsdoc.js @@ -11,7 +11,7 @@ module.exports = { type: "suggestion", docs: { - description: "require JSDoc comments", + description: "Require JSDoc comments", recommended: false, url: "https://eslint.org/docs/rules/require-jsdoc" }, diff --git a/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js b/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js index 577ae6cf8271d1..4236af6db4775e 100644 --- a/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js +++ b/tools/node_modules/eslint/lib/rules/require-unicode-regexp.js @@ -26,7 +26,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce the use of `u` flag on RegExp", + description: "Enforce the use of `u` flag on RegExp", recommended: false, url: "https://eslint.org/docs/rules/require-unicode-regexp" }, diff --git a/tools/node_modules/eslint/lib/rules/require-yield.js b/tools/node_modules/eslint/lib/rules/require-yield.js index aba06140672d6a..ffb2229790d9bf 100644 --- a/tools/node_modules/eslint/lib/rules/require-yield.js +++ b/tools/node_modules/eslint/lib/rules/require-yield.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "require generator functions to contain `yield`", + description: "Require generator functions to contain `yield`", recommended: true, url: "https://eslint.org/docs/rules/require-yield" }, diff --git a/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js b/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js index ace1ec521415ab..17f9aa0c3c5ea6 100644 --- a/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js +++ b/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "enforce spacing between rest and spread operators and their expressions", + description: "Enforce spacing between rest and spread operators and their expressions", recommended: false, url: "https://eslint.org/docs/rules/rest-spread-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/semi-spacing.js b/tools/node_modules/eslint/lib/rules/semi-spacing.js index 4f0afbb11a3db4..875cb62443d1da 100644 --- a/tools/node_modules/eslint/lib/rules/semi-spacing.js +++ b/tools/node_modules/eslint/lib/rules/semi-spacing.js @@ -17,7 +17,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing before and after semicolons", + description: "Enforce consistent spacing before and after semicolons", recommended: false, url: "https://eslint.org/docs/rules/semi-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/semi-style.js b/tools/node_modules/eslint/lib/rules/semi-style.js index 7952a9adff1632..424858b4ba125d 100644 --- a/tools/node_modules/eslint/lib/rules/semi-style.js +++ b/tools/node_modules/eslint/lib/rules/semi-style.js @@ -73,7 +73,7 @@ module.exports = { type: "layout", docs: { - description: "enforce location of semicolons", + description: "Enforce location of semicolons", recommended: false, url: "https://eslint.org/docs/rules/semi-style" }, diff --git a/tools/node_modules/eslint/lib/rules/semi.js b/tools/node_modules/eslint/lib/rules/semi.js index 86ff8d74ee12d7..1e49273c2e9617 100644 --- a/tools/node_modules/eslint/lib/rules/semi.js +++ b/tools/node_modules/eslint/lib/rules/semi.js @@ -21,7 +21,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow semicolons instead of ASI", + description: "Require or disallow semicolons instead of ASI", recommended: false, url: "https://eslint.org/docs/rules/semi" }, diff --git a/tools/node_modules/eslint/lib/rules/sort-imports.js b/tools/node_modules/eslint/lib/rules/sort-imports.js index 13cb63681cb8a6..bfb0765baa5e6f 100644 --- a/tools/node_modules/eslint/lib/rules/sort-imports.js +++ b/tools/node_modules/eslint/lib/rules/sort-imports.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce sorted import declarations within modules", + description: "Enforce sorted import declarations within modules", recommended: false, url: "https://eslint.org/docs/rules/sort-imports" }, diff --git a/tools/node_modules/eslint/lib/rules/sort-keys.js b/tools/node_modules/eslint/lib/rules/sort-keys.js index 2fc19635271759..5cda81d0a7d068 100644 --- a/tools/node_modules/eslint/lib/rules/sort-keys.js +++ b/tools/node_modules/eslint/lib/rules/sort-keys.js @@ -81,7 +81,7 @@ module.exports = { type: "suggestion", docs: { - description: "require object keys to be sorted", + description: "Require object keys to be sorted", recommended: false, url: "https://eslint.org/docs/rules/sort-keys" }, diff --git a/tools/node_modules/eslint/lib/rules/sort-vars.js b/tools/node_modules/eslint/lib/rules/sort-vars.js index 8246558c5478f7..ec0718ee578c74 100644 --- a/tools/node_modules/eslint/lib/rules/sort-vars.js +++ b/tools/node_modules/eslint/lib/rules/sort-vars.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "require variables within the same declaration block to be sorted", + description: "Require variables within the same declaration block to be sorted", recommended: false, url: "https://eslint.org/docs/rules/sort-vars" }, diff --git a/tools/node_modules/eslint/lib/rules/space-before-blocks.js b/tools/node_modules/eslint/lib/rules/space-before-blocks.js index 5cc7266654f5fc..ffd33ddcaeac5a 100644 --- a/tools/node_modules/eslint/lib/rules/space-before-blocks.js +++ b/tools/node_modules/eslint/lib/rules/space-before-blocks.js @@ -40,7 +40,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing before blocks", + description: "Enforce consistent spacing before blocks", recommended: false, url: "https://eslint.org/docs/rules/space-before-blocks" }, diff --git a/tools/node_modules/eslint/lib/rules/space-before-function-paren.js b/tools/node_modules/eslint/lib/rules/space-before-function-paren.js index fdd45be241d464..b56ac3c52c7aaa 100644 --- a/tools/node_modules/eslint/lib/rules/space-before-function-paren.js +++ b/tools/node_modules/eslint/lib/rules/space-before-function-paren.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing before `function` definition opening parenthesis", + description: "Enforce consistent spacing before `function` definition opening parenthesis", recommended: false, url: "https://eslint.org/docs/rules/space-before-function-paren" }, diff --git a/tools/node_modules/eslint/lib/rules/space-in-parens.js b/tools/node_modules/eslint/lib/rules/space-in-parens.js index 1509d600f1d58d..42d9bb58e7e4ca 100644 --- a/tools/node_modules/eslint/lib/rules/space-in-parens.js +++ b/tools/node_modules/eslint/lib/rules/space-in-parens.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing inside parentheses", + description: "Enforce consistent spacing inside parentheses", recommended: false, url: "https://eslint.org/docs/rules/space-in-parens" }, diff --git a/tools/node_modules/eslint/lib/rules/space-infix-ops.js b/tools/node_modules/eslint/lib/rules/space-infix-ops.js index c526b7e2b0a406..141c269df6b0fc 100644 --- a/tools/node_modules/eslint/lib/rules/space-infix-ops.js +++ b/tools/node_modules/eslint/lib/rules/space-infix-ops.js @@ -16,7 +16,7 @@ module.exports = { type: "layout", docs: { - description: "require spacing around infix operators", + description: "Require spacing around infix operators", recommended: false, url: "https://eslint.org/docs/rules/space-infix-ops" }, diff --git a/tools/node_modules/eslint/lib/rules/space-unary-ops.js b/tools/node_modules/eslint/lib/rules/space-unary-ops.js index 04487c49e0d8c6..1d9141d2b97fae 100644 --- a/tools/node_modules/eslint/lib/rules/space-unary-ops.js +++ b/tools/node_modules/eslint/lib/rules/space-unary-ops.js @@ -20,7 +20,7 @@ module.exports = { type: "layout", docs: { - description: "enforce consistent spacing before or after unary operators", + description: "Enforce consistent spacing before or after unary operators", recommended: false, url: "https://eslint.org/docs/rules/space-unary-ops" }, diff --git a/tools/node_modules/eslint/lib/rules/spaced-comment.js b/tools/node_modules/eslint/lib/rules/spaced-comment.js index d858fc47cf85b2..6aedeae871d7ba 100644 --- a/tools/node_modules/eslint/lib/rules/spaced-comment.js +++ b/tools/node_modules/eslint/lib/rules/spaced-comment.js @@ -152,7 +152,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce consistent spacing after the `//` or `/*` in a comment", + description: "Enforce consistent spacing after the `//` or `/*` in a comment", recommended: false, url: "https://eslint.org/docs/rules/spaced-comment" }, diff --git a/tools/node_modules/eslint/lib/rules/strict.js b/tools/node_modules/eslint/lib/rules/strict.js index 0ea1da5677ed6d..e677c95e71739d 100644 --- a/tools/node_modules/eslint/lib/rules/strict.js +++ b/tools/node_modules/eslint/lib/rules/strict.js @@ -69,7 +69,7 @@ module.exports = { type: "suggestion", docs: { - description: "require or disallow strict mode directives", + description: "Require or disallow strict mode directives", recommended: false, url: "https://eslint.org/docs/rules/strict" }, diff --git a/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js b/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js index cd2ca7018d284f..c1df496fd9407d 100644 --- a/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js +++ b/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js @@ -21,7 +21,7 @@ module.exports = { type: "layout", docs: { - description: "enforce spacing around colons of switch statements", + description: "Enforce spacing around colons of switch statements", recommended: false, url: "https://eslint.org/docs/rules/switch-colon-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/symbol-description.js b/tools/node_modules/eslint/lib/rules/symbol-description.js index 07bb8cd27355fe..1c8a364986c8e2 100644 --- a/tools/node_modules/eslint/lib/rules/symbol-description.js +++ b/tools/node_modules/eslint/lib/rules/symbol-description.js @@ -22,7 +22,7 @@ module.exports = { type: "suggestion", docs: { - description: "require symbol descriptions", + description: "Require symbol descriptions", recommended: false, url: "https://eslint.org/docs/rules/symbol-description" }, diff --git a/tools/node_modules/eslint/lib/rules/template-curly-spacing.js b/tools/node_modules/eslint/lib/rules/template-curly-spacing.js index c842b76a41f38b..35d4bbab4d789c 100644 --- a/tools/node_modules/eslint/lib/rules/template-curly-spacing.js +++ b/tools/node_modules/eslint/lib/rules/template-curly-spacing.js @@ -21,7 +21,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow spacing around embedded expressions of template strings", + description: "Require or disallow spacing around embedded expressions of template strings", recommended: false, url: "https://eslint.org/docs/rules/template-curly-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/template-tag-spacing.js b/tools/node_modules/eslint/lib/rules/template-tag-spacing.js index fa1a613b894905..3140fa0eed77d5 100644 --- a/tools/node_modules/eslint/lib/rules/template-tag-spacing.js +++ b/tools/node_modules/eslint/lib/rules/template-tag-spacing.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow spacing between template tags and their literals", + description: "Require or disallow spacing between template tags and their literals", recommended: false, url: "https://eslint.org/docs/rules/template-tag-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/unicode-bom.js b/tools/node_modules/eslint/lib/rules/unicode-bom.js index d480f1bcdc8575..482d3bbf50b34e 100644 --- a/tools/node_modules/eslint/lib/rules/unicode-bom.js +++ b/tools/node_modules/eslint/lib/rules/unicode-bom.js @@ -14,7 +14,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow Unicode byte order mark (BOM)", + description: "Require or disallow Unicode byte order mark (BOM)", recommended: false, url: "https://eslint.org/docs/rules/unicode-bom" }, diff --git a/tools/node_modules/eslint/lib/rules/use-isnan.js b/tools/node_modules/eslint/lib/rules/use-isnan.js index 92903500c18336..219d695374e16a 100644 --- a/tools/node_modules/eslint/lib/rules/use-isnan.js +++ b/tools/node_modules/eslint/lib/rules/use-isnan.js @@ -37,7 +37,7 @@ module.exports = { type: "problem", docs: { - description: "require calls to `isNaN()` when checking for `NaN`", + description: "Require calls to `isNaN()` when checking for `NaN`", recommended: true, url: "https://eslint.org/docs/rules/use-isnan" }, diff --git a/tools/node_modules/eslint/lib/rules/valid-jsdoc.js b/tools/node_modules/eslint/lib/rules/valid-jsdoc.js index 8662bf0eae704e..25be39fdd516b5 100644 --- a/tools/node_modules/eslint/lib/rules/valid-jsdoc.js +++ b/tools/node_modules/eslint/lib/rules/valid-jsdoc.js @@ -21,7 +21,7 @@ module.exports = { type: "suggestion", docs: { - description: "enforce valid JSDoc comments", + description: "Enforce valid JSDoc comments", recommended: false, url: "https://eslint.org/docs/rules/valid-jsdoc" }, diff --git a/tools/node_modules/eslint/lib/rules/valid-typeof.js b/tools/node_modules/eslint/lib/rules/valid-typeof.js index 2286d8926cc6fe..908d5725e224c6 100644 --- a/tools/node_modules/eslint/lib/rules/valid-typeof.js +++ b/tools/node_modules/eslint/lib/rules/valid-typeof.js @@ -14,7 +14,7 @@ module.exports = { type: "problem", docs: { - description: "enforce comparing `typeof` expressions against valid strings", + description: "Enforce comparing `typeof` expressions against valid strings", recommended: true, url: "https://eslint.org/docs/rules/valid-typeof" }, diff --git a/tools/node_modules/eslint/lib/rules/vars-on-top.js b/tools/node_modules/eslint/lib/rules/vars-on-top.js index 09e9932b4ca5a8..99e2b4ac0dd181 100644 --- a/tools/node_modules/eslint/lib/rules/vars-on-top.js +++ b/tools/node_modules/eslint/lib/rules/vars-on-top.js @@ -15,7 +15,7 @@ module.exports = { type: "suggestion", docs: { - description: "require `var` declarations be placed at the top of their containing scope", + description: "Require `var` declarations be placed at the top of their containing scope", recommended: false, url: "https://eslint.org/docs/rules/vars-on-top" }, diff --git a/tools/node_modules/eslint/lib/rules/wrap-iife.js b/tools/node_modules/eslint/lib/rules/wrap-iife.js index 8523796722a187..4c2c9275d879cf 100644 --- a/tools/node_modules/eslint/lib/rules/wrap-iife.js +++ b/tools/node_modules/eslint/lib/rules/wrap-iife.js @@ -43,7 +43,7 @@ module.exports = { type: "layout", docs: { - description: "require parentheses around immediate `function` invocations", + description: "Require parentheses around immediate `function` invocations", recommended: false, url: "https://eslint.org/docs/rules/wrap-iife" }, diff --git a/tools/node_modules/eslint/lib/rules/wrap-regex.js b/tools/node_modules/eslint/lib/rules/wrap-regex.js index b10f2ec53bd8d8..b24d36025ed55f 100644 --- a/tools/node_modules/eslint/lib/rules/wrap-regex.js +++ b/tools/node_modules/eslint/lib/rules/wrap-regex.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "require parenthesis around regex literals", + description: "Require parenthesis around regex literals", recommended: false, url: "https://eslint.org/docs/rules/wrap-regex" }, diff --git a/tools/node_modules/eslint/lib/rules/yield-star-spacing.js b/tools/node_modules/eslint/lib/rules/yield-star-spacing.js index 884a3a4ed01601..c2e07aaaa22c79 100644 --- a/tools/node_modules/eslint/lib/rules/yield-star-spacing.js +++ b/tools/node_modules/eslint/lib/rules/yield-star-spacing.js @@ -15,7 +15,7 @@ module.exports = { type: "layout", docs: { - description: "require or disallow spacing around the `*` in `yield*` expressions", + description: "Require or disallow spacing around the `*` in `yield*` expressions", recommended: false, url: "https://eslint.org/docs/rules/yield-star-spacing" }, diff --git a/tools/node_modules/eslint/lib/rules/yoda.js b/tools/node_modules/eslint/lib/rules/yoda.js index 5b64287a151b8d..eb9a32ad5c3001 100644 --- a/tools/node_modules/eslint/lib/rules/yoda.js +++ b/tools/node_modules/eslint/lib/rules/yoda.js @@ -121,7 +121,7 @@ module.exports = { type: "suggestion", docs: { - description: 'require or disallow "Yoda" conditions', + description: 'Require or disallow "Yoda" conditions', recommended: false, url: "https://eslint.org/docs/rules/yoda" }, diff --git a/tools/node_modules/eslint/node_modules/.bin/browserslist-lint b/tools/node_modules/eslint/node_modules/.bin/browserslist-lint new file mode 120000 index 00000000000000..b11e16f3d5c54b --- /dev/null +++ b/tools/node_modules/eslint/node_modules/.bin/browserslist-lint @@ -0,0 +1 @@ +../update-browserslist-db/cli.js \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/code-frame/package.json b/tools/node_modules/eslint/node_modules/@babel/code-frame/package.json index ee1b3820a68fd8..18d8db1229cea4 100644 --- a/tools/node_modules/eslint/node_modules/@babel/code-frame/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/code-frame/package.json @@ -1,6 +1,6 @@ { "name": "@babel/code-frame", - "version": "7.16.7", + "version": "7.18.6", "description": "Generate errors that contain a code frame that point to source locations.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-code-frame", @@ -16,7 +16,7 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/highlight": "^7.16.7" + "@babel/highlight": "^7.18.6" }, "devDependencies": { "@types/chalk": "^2.0.0", @@ -25,5 +25,6 @@ }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file 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 512f422d495375..2bfa78253c9ce2 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.18.5", + "version": "7.18.6", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", "description": "", @@ -35,5 +35,6 @@ }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/cache-contexts.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/cache-contexts.js index e69de29bb2d1d6..d28d24ce7e71ad 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/cache-contexts.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/cache-contexts.js @@ -0,0 +1 @@ +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/caching.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/caching.js index 16c6e9edb9d4a3..22bc72e36d362c 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/caching.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/caching.js @@ -322,4 +322,6 @@ class Lock { this._resolve(value); } -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-chain.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-chain.js index aa5c5f22a9aefa..dce70e1f40376a 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-chain.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-chain.js @@ -561,4 +561,6 @@ function matchPattern(pattern, dirname, pathToTest, context) { } return pattern.test(pathToTest); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js index 2f0a7a58ed5ac2..82d80b38b7ac91 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js @@ -241,4 +241,6 @@ function assertNoDuplicates(items) { nameMap.add(item.name); } -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js index f6cbf0c62c7be4..6a4ad781c0e166 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/configuration.js @@ -355,4 +355,6 @@ module.exports = function(api) { // Return the value that will be cached. return { }; };`); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js index 6e1c9056507b20..63e19ad6ad155f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import-meta-resolve.js @@ -38,4 +38,6 @@ function _resolve() { return (yield importMetaResolveP)(specifier, parent); }); return _resolve.apply(this, arguments); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import.js index c0acc2b666dbdc..b760227ceaf707 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/import.js @@ -7,4 +7,6 @@ exports.default = import_; function import_(filepath) { return import(filepath); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index-browser.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index-browser.js index c73168bfbd59d1..023adbe8dd5a28 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index-browser.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index-browser.js @@ -64,4 +64,6 @@ function loadPlugin(name, dirname) { function loadPreset(name, dirname) { throw new Error(`Cannot load preset ${name} relative to ${dirname} in a browser`); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index.js index 075410c028cdff..cc93307c1d89c8 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/index.js @@ -83,4 +83,5 @@ exports.resolvePlugin = resolvePlugin; const resolvePreset = _gensync()(plugins.resolvePreset).sync; -exports.resolvePreset = resolvePreset; \ No newline at end of file +exports.resolvePreset = resolvePreset; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js index 35d8220a3ff6fe..dea3354c257211 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/module-types.js @@ -38,6 +38,16 @@ function _module() { return data; } +function _semver() { + const data = require("semver"); + + _semver = function () { + return data; + }; + + return data; +} + function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } @@ -48,7 +58,8 @@ try { import_ = require("./import").default; } catch (_unused) {} -const supportsESM = !!import_; +const supportsESM = _semver().satisfies(process.versions.node, "^12.17 || >=13.2"); + exports.supportsESM = supportsESM; function* loadCjsOrMjsDefault(filepath, asyncError, fallbackToTranspiledModule = false) { @@ -105,4 +116,6 @@ function _loadMjsDefault() { return module.default; }); return _loadMjsDefault.apply(this, arguments); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/package.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/package.js index 0e08bfe331ff76..c6b7f4747494ee 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/package.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/package.js @@ -73,4 +73,5 @@ const readConfigPackage = (0, _utils.makeStaticFileCache)((filepath, content) => dirname: _path().dirname(filepath), options }; -}); \ No newline at end of file +}); +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js index 5d7f2154303614..8cfa436aa764ab 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/plugins.js @@ -270,4 +270,6 @@ function* requireModule(type, name) { LOADING_MODULES.delete(name); } } -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/types.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/types.js index e69de29bb2d1d6..d28d24ce7e71ad 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/types.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/types.js @@ -0,0 +1 @@ +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/utils.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/utils.js index 6da68c0a7304df..84dbe02baa07e8 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/utils.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/files/utils.js @@ -41,4 +41,6 @@ function fileMtime(filepath) { } return null; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file 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 443fcea5a3696c..cab5fd6ce4dc7e 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 @@ -375,4 +375,6 @@ function chain(a, b) { fn.apply(this, args); } }; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/config-api.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/config-api.js index f8dedbcb44b994..5fafead72a559d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/config-api.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/config-api.js @@ -31,8 +31,7 @@ function makeConfigAPI(cache) { return (0, _caching.assertSimpleType)(value(data.envName)); } - if (!Array.isArray(value)) value = [value]; - return value.some(entry => { + return (Array.isArray(value) ? value : [value]).some(entry => { if (typeof entry !== "string") { throw new Error("Unexpected non-string value"); } @@ -105,4 +104,6 @@ function assertVersion(range) { version: _.version, range }); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/deep-array.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/deep-array.js index 9455e32c3f8ff9..4aa198c3e5ff92 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/deep-array.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/deep-array.js @@ -21,4 +21,6 @@ function flattenToSet(arr) { } return result; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/environment.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/environment.js index e4bfdbc7a725cd..75910a770e130d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/environment.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/helpers/environment.js @@ -7,4 +7,6 @@ exports.getEnv = getEnv; function getEnv(defaultValue = "development") { return process.env.BABEL_ENV || process.env.NODE_ENV || defaultValue; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js index 696850dba2a1d1..09eb5dc45831f9 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/index.js @@ -72,4 +72,6 @@ function createConfigItem(target, options, callback) { } else { return createConfigItemRunner.sync(target, options); } -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/item.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/item.js index 238035461911bb..f0a185ea09a6f1 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/item.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/item.js @@ -73,4 +73,5 @@ class ConfigItem { } -Object.freeze(ConfigItem.prototype); \ No newline at end of file +Object.freeze(ConfigItem.prototype); +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/partial.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/partial.js index e8c52e103b64cc..2269da2b350584 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/partial.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/partial.js @@ -194,4 +194,5 @@ class PartialConfig { } -Object.freeze(PartialConfig.prototype); \ No newline at end of file +Object.freeze(PartialConfig.prototype); +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/pattern-to-regex.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/pattern-to-regex.js index ec5db8fd5d2ac2..f24d955bcd2837 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/pattern-to-regex.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/pattern-to-regex.js @@ -41,4 +41,6 @@ function pathToPattern(pattern, dirname) { return escapeRegExp(part) + (last ? endSep : sep); })].join("")); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/plugin.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/plugin.js index 40e054019840ba..e0f2d34ea4da68 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/plugin.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/plugin.js @@ -31,4 +31,5 @@ class Plugin { } -exports.default = Plugin; \ No newline at end of file +exports.default = Plugin; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/printer.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/printer.js index 54911a349ee136..51d7c1b67b5d25 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/printer.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/printer.js @@ -136,4 +136,5 @@ class ConfigPrinter { } -exports.ConfigPrinter = ConfigPrinter; \ No newline at end of file +exports.ConfigPrinter = ConfigPrinter; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets-browser.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets-browser.js index cc4e518029970e..1fd3f9e140036b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets-browser.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets-browser.js @@ -21,22 +21,27 @@ function resolveBrowserslistConfigFile(browserslistConfigFile, configFilePath) { } function resolveTargets(options, root) { - let targets = options.targets; + const optTargets = options.targets; + let targets; - if (typeof targets === "string" || Array.isArray(targets)) { + if (typeof optTargets === "string" || Array.isArray(optTargets)) { targets = { - browsers: targets + browsers: optTargets }; - } - - if (targets && targets.esmodules) { - targets = Object.assign({}, targets, { - esmodules: "intersect" - }); + } else if (optTargets) { + if ("esmodules" in optTargets) { + targets = Object.assign({}, optTargets, { + esmodules: "intersect" + }); + } else { + targets = optTargets; + } } return (0, _helperCompilationTargets().default)(targets, { ignoreBrowserslistConfig: true, browserslistEnv: options.browserslistEnv }); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets.js index 973e3d57641df7..585d86bc72468a 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/resolve-targets.js @@ -33,18 +33,21 @@ function resolveBrowserslistConfigFile(browserslistConfigFile, configFileDir) { } function resolveTargets(options, root) { - let targets = options.targets; + const optTargets = options.targets; + let targets; - if (typeof targets === "string" || Array.isArray(targets)) { + if (typeof optTargets === "string" || Array.isArray(optTargets)) { targets = { - browsers: targets + browsers: optTargets }; - } - - if (targets && targets.esmodules) { - targets = Object.assign({}, targets, { - esmodules: "intersect" - }); + } else if (optTargets) { + if ("esmodules" in optTargets) { + targets = Object.assign({}, optTargets, { + esmodules: "intersect" + }); + } else { + targets = optTargets; + } } const { @@ -65,4 +68,6 @@ function resolveTargets(options, root) { configPath: root, browserslistEnv: options.browserslistEnv }); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/util.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/util.js index 1fc2d3d79c6c9f..98b58708ae45c9 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/util.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/util.js @@ -28,4 +28,6 @@ function mergeDefaultFields(target, source) { function isIterableIterator(value) { return !!value && typeof value.next === "function" && typeof value[Symbol.iterator] === "function"; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/option-assertions.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/option-assertions.js index 9a0b4a47994b60..8761d29590d2f5 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/option-assertions.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/option-assertions.js @@ -349,4 +349,6 @@ function assertAssumptions(loc, value) { } return value; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/options.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/options.js index 5ea3033a5d31f8..7aa1582966eca6 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/options.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/options.js @@ -208,4 +208,6 @@ function checkNoUnwrappedItemOptionPairs(items, index, type, e) { if (lastItem.file && lastItem.options === undefined && typeof thisItem.value === "object") { e.message += `\n- Maybe you meant to use\n` + `"${type}s": [\n ["${lastItem.file.request}", ${JSON.stringify(thisItem.value, undefined, 2)}]\n]\n` + `To be a valid ${type}, its name and options should be wrapped in a pair of brackets`; } -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/plugins.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/plugins.js index a70cc676fab148..32c05c22104fa9 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/plugins.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/plugins.js @@ -68,4 +68,6 @@ function validatePluginObject(obj) { } }); return obj; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/removed.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/removed.js index f0fcd7de391f9d..2419f2bd2a052f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/removed.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/validation/removed.js @@ -63,4 +63,5 @@ var _default = { message: "The `sourceMapTarget` option has been removed because it makes more sense for the tooling " + "that calls Babel to assign `map.file` themselves." } }; -exports.default = _default; \ No newline at end of file +exports.default = _default; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/async.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/async.js index 7deb1863a12e4c..c95aa3b0451ed0 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/async.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/async.js @@ -91,4 +91,6 @@ exports.waitFor = waitFor; function isThenable(val) { return !!val && (typeof val === "object" || typeof val === "function") && !!val.then && typeof val.then === "function"; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/fs.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/fs.js index 056ae34da1bb6c..1d393c8495ac20 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/fs.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/fs.js @@ -37,4 +37,5 @@ const stat = _gensync()({ errback: _fs().stat }); -exports.stat = stat; \ No newline at end of file +exports.stat = stat; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js index 837db96fd78340..d35bfe9ae3ac1d 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 @@ -108,13 +108,13 @@ Object.defineProperty(exports, "resolvePreset", { return _files.resolvePreset; } }); -Object.defineProperty(exports, "template", { +Object.defineProperty((0, exports), "template", { enumerable: true, get: function () { return _template().default; } }); -Object.defineProperty(exports, "tokTypes", { +Object.defineProperty((0, exports), "tokTypes", { enumerable: true, get: function () { return _parser().tokTypes; @@ -174,7 +174,7 @@ Object.defineProperty(exports, "transformSync", { return _transform.transformSync; } }); -Object.defineProperty(exports, "traverse", { +Object.defineProperty((0, exports), "traverse", { enumerable: true, get: function () { return _traverse().default; @@ -200,7 +200,7 @@ function _types() { return data; } -Object.defineProperty(exports, "types", { +Object.defineProperty((0, exports), "types", { enumerable: true, get: function () { return _types(); @@ -247,7 +247,7 @@ var _transformAst = require("./transform-ast"); var _parse = require("./parse"); -const version = "7.18.5"; +const version = "7.18.6"; exports.version = version; const DEFAULT_EXTENSIONS = Object.freeze([".js", ".jsx", ".es6", ".es", ".mjs", ".cjs"]); exports.DEFAULT_EXTENSIONS = DEFAULT_EXTENSIONS; @@ -263,4 +263,6 @@ exports.OptionManager = OptionManager; function Plugin(alias) { throw new Error(`The (${alias}) Babel 5 plugin is being run with an unsupported Babel version.`); -} \ No newline at end of file +} + +0 && (exports.types = exports.traverse = exports.tokTypes = exports.template = 0); \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js index a64d2297e198a5..feb85157741ed7 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/parse.js @@ -50,4 +50,5 @@ exports.parse = parse; const parseSync = parseRunner.sync; exports.parseSync = parseSync; const parseAsync = parseRunner.async; -exports.parseAsync = parseAsync; \ No newline at end of file +exports.parseAsync = parseAsync; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/index.js index 254122a14c8009..29fca4acc5089d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/index.js @@ -92,4 +92,6 @@ function* parser(pluginPasses, { throw err; } -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js index 11c4c770483a5c..740ff22ddc700f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js @@ -320,4 +320,6 @@ If you want to leave it as-is, add ${syntaxPluginInfo} to the 'plugins' section } return helpMessage; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/tools/build-external-helpers.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/tools/build-external-helpers.js index 94d85e7e65e9f4..cdd7214d71543d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/tools/build-external-helpers.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/tools/build-external-helpers.js @@ -161,4 +161,6 @@ function _default(allowlist, outputType = "global") { } return (0, _generator().default)(tree).code; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js index 5d9184d53c02b8..bc88af4a064e01 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-ast.js @@ -26,10 +26,16 @@ const transformFromAstRunner = _gensync()(function* (ast, code, opts) { return yield* (0, _transformation.run)(config, code, ast); }); -const transformFromAst = function transformFromAst(ast, code, opts, callback) { - if (typeof opts === "function") { - callback = opts; +const transformFromAst = function transformFromAst(ast, code, optsOrCallback, maybeCallback) { + let opts; + let callback; + + if (typeof optsOrCallback === "function") { + callback = optsOrCallback; opts = undefined; + } else { + opts = optsOrCallback; + callback = maybeCallback; } if (callback === undefined) { @@ -45,4 +51,5 @@ exports.transformFromAst = transformFromAst; const transformFromAstSync = transformFromAstRunner.sync; exports.transformFromAstSync = transformFromAstSync; const transformFromAstAsync = transformFromAstRunner.async; -exports.transformFromAstAsync = transformFromAstAsync; \ No newline at end of file +exports.transformFromAstAsync = transformFromAstAsync; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file-browser.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file-browser.js index 3371a1e7921e8d..5912b5c27655aa 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file-browser.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file-browser.js @@ -23,4 +23,6 @@ function transformFileSync() { function transformFileAsync() { return Promise.reject(new Error("Transforming files is not supported in browsers")); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js index 18075fffa7c99f..ab9920285379f3 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform-file.js @@ -38,4 +38,5 @@ exports.transformFile = transformFile; const transformFileSync = transformFileRunner.sync; exports.transformFileSync = transformFileSync; const transformFileAsync = transformFileRunner.async; -exports.transformFileAsync = transformFileAsync; \ No newline at end of file +exports.transformFileAsync = transformFileAsync; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js index c7aa407d8ebe75..7cc33b33a4b9d3 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transform.js @@ -25,10 +25,16 @@ const transformRunner = _gensync()(function* transform(code, opts) { return yield* (0, _transformation.run)(config, code); }); -const transform = function transform(code, opts, callback) { - if (typeof opts === "function") { - callback = opts; +const transform = function transform(code, optsOrCallback, maybeCallback) { + let opts; + let callback; + + if (typeof optsOrCallback === "function") { + callback = optsOrCallback; opts = undefined; + } else { + opts = optsOrCallback; + callback = maybeCallback; } if (callback === undefined) { @@ -44,4 +50,5 @@ exports.transform = transform; const transformSync = transformRunner.sync; exports.transformSync = transformSync; const transformAsync = transformRunner.async; -exports.transformAsync = transformAsync; \ No newline at end of file +exports.transformAsync = transformAsync; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js index a3b0b411aeb51c..cc20fe41a72053 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js @@ -91,4 +91,5 @@ const blockHoistPlugin = { } } -}; \ No newline at end of file +}; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/file.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/file.js index 3728ec56c0ce49..22ee007c974483 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/file.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/file.js @@ -91,12 +91,12 @@ class File { this._map = new Map(); this.opts = void 0; this.declarations = {}; - this.path = null; - this.ast = {}; + this.path = void 0; + this.ast = void 0; this.scope = void 0; this.metadata = {}; this.code = ""; - this.inputMap = null; + this.inputMap = void 0; this.hub = { file: this, getCode: () => this.code, @@ -251,4 +251,5 @@ class File { } -exports.default = File; \ No newline at end of file +exports.default = File; +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/generate.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/generate.js index 20e71be42b08c5..9e30d97a4d8f5a 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/generate.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/generate.js @@ -91,4 +91,6 @@ function generateCode(pluginPasses, file) { outputCode, outputMap }; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/merge-map.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/merge-map.js index af1da890223441..9a031191b6f3d1 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/merge-map.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/file/merge-map.js @@ -40,4 +40,6 @@ function rootless(map) { return Object.assign({}, map, { sourceRoot: null }); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/index.js index 1f8422e2dd5ae9..1b78101b6d7848 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/index.js @@ -124,4 +124,6 @@ function* transformFile(file, pluginPasses) { function isThenable(val) { return !!val && (typeof val === "object" || typeof val === "function") && !!val.then && typeof val.then === "function"; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js index 3b04cc4b077778..51d0ca6d710e82 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-file.js @@ -164,4 +164,6 @@ function extractComments(regex, ast) { [node.trailingComments, lastComment] = extractCommentsFromList(regex, node.trailingComments, lastComment); }); return lastComment; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-opts.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-opts.js index 6e2cb000ca85a7..7773d63232eeb7 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-opts.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/normalize-opts.js @@ -59,4 +59,6 @@ function normalizeOptions(config) { } return options; -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js index 920558a051a914..87cfc7fa85474b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/plugin-pass.js @@ -51,4 +51,5 @@ exports.default = PluginPass; PluginPass.prototype.getModuleName = function getModuleName() { return this.file.getModuleName(); }; -} \ No newline at end of file +} +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep-browser.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep-browser.js deleted file mode 100644 index a42de824d8995c..00000000000000 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep-browser.js +++ /dev/null @@ -1,25 +0,0 @@ -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = _default; -const serialized = "$$ babel internal serialized type" + Math.random(); - -function serialize(key, value) { - if (typeof value !== "bigint") return value; - return { - [serialized]: "BigInt", - value: value.toString() - }; -} - -function revive(key, value) { - if (!value || typeof value !== "object") return value; - if (value[serialized] !== "BigInt") return value; - return BigInt(value.value); -} - -function _default(value) { - return JSON.parse(JSON.stringify(value, serialize), revive); -} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep.js index 35fbd093ebaa1c..d32505dda09fe6 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/transformation/util/clone-deep.js @@ -5,22 +5,37 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = _default; -function _v() { - const data = require("v8"); +function deepClone(value, cache) { + if (value !== null) { + if (cache.has(value)) return cache.get(value); + let cloned; - _v = function () { - return data; - }; + if (Array.isArray(value)) { + cloned = new Array(value.length); - return data; -} + for (let i = 0; i < value.length; i++) { + cloned[i] = typeof value[i] !== "object" ? value[i] : deepClone(value[i], cache); + } + } else { + cloned = {}; + const keys = Object.keys(value); -var _cloneDeepBrowser = require("./clone-deep-browser"); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + cloned[key] = typeof value[key] !== "object" ? value[key] : deepClone(value[key], cache); + } + } -function _default(value) { - if (_v().deserialize && _v().serialize) { - return _v().deserialize(_v().serialize(value)); + cache.set(value, cloned); + return cloned; } - return (0, _cloneDeepBrowser.default)(value); -} \ No newline at end of file + return value; +} + +function _default(value) { + if (typeof value !== "object") return value; + return deepClone(value, new Map()); +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js index 979d7b8bb36085..f16f1bee1f75de 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js @@ -3426,4 +3426,6 @@ function _resolve() { } }); return _resolve.apply(this, arguments); -} \ No newline at end of file +} + +0 && 0; \ No newline at end of file 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 761e9e510d6583..35629db7ce3654 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.18.5", + "version": "7.18.6", "description": "Babel compiler core.", "main": "./lib/index.js", "author": "The Babel Team (https://babel.dev/team)", @@ -41,23 +41,21 @@ "./lib/config/files/index.js": "./lib/config/files/index-browser.js", "./lib/config/resolve-targets.js": "./lib/config/resolve-targets-browser.js", "./lib/transform-file.js": "./lib/transform-file-browser.js", - "./lib/transformation/util/clone-deep.js": "./lib/transformation/util/clone-deep-browser.js", "./src/config/files/index.ts": "./src/config/files/index-browser.ts", "./src/config/resolve-targets.ts": "./src/config/resolve-targets-browser.ts", - "./src/transform-file.ts": "./src/transform-file-browser.ts", - "./src/transformation/util/clone-deep.ts": "./src/transformation/util/clone-deep-browser.ts" + "./src/transform-file.ts": "./src/transform-file-browser.ts" }, "dependencies": { "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.18.2", - "@babel/helper-compilation-targets": "^7.18.2", - "@babel/helper-module-transforms": "^7.18.0", - "@babel/helpers": "^7.18.2", - "@babel/parser": "^7.18.5", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.18.5", - "@babel/types": "^7.18.4", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.6", + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helpers": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -65,13 +63,17 @@ "semver": "^6.3.0" }, "devDependencies": { - "@babel/helper-transform-fixture-test-runner": "^7.18.5", - "@babel/plugin-transform-modules-commonjs": "^7.18.2", + "@babel/helper-transform-fixture-test-runner": "^7.18.6", + "@babel/plugin-syntax-flow": "^7.18.6", + "@babel/plugin-transform-flow-strip-types": "^7.18.6", + "@babel/plugin-transform-modules-commonjs": "^7.18.6", + "@babel/preset-env": "^7.18.6", "@jridgewell/trace-mapping": "^0.3.8", "@types/convert-source-map": "^1.5.1", "@types/debug": "^4.1.0", "@types/resolve": "^1.3.2", "@types/semver": "^5.4.0", "rimraf": "^3.0.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js index 99d9afea853a2a..c9c2022e2f86ba 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/buffer.js @@ -40,7 +40,9 @@ class Buffer { decodedMap: map == null ? void 0 : map.getDecoded(), get map() { - return result.map = map ? map.get() : null; + const resultMap = map ? map.get() : null; + result.map = resultMap; + return resultMap; }, set map(value) { @@ -51,7 +53,9 @@ class Buffer { }, get rawMappings() { - return result.rawMappings = map == null ? void 0 : map.getRawMappings(); + const mappings = map == null ? void 0 : map.getRawMappings(); + result.rawMappings = mappings; + return mappings; }, set rawMappings(value) { diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/base.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/base.js index be9285cc6cabc1..0b773c34b4351f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/base.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/base.js @@ -63,7 +63,7 @@ const unescapedDoubleQuoteRE = /(?:^|[^\\])(?:\\\\)*"/; function DirectiveLiteral(node) { const raw = this.getPossibleRaw(node); - if (!this.format.minified && raw != null) { + if (!this.format.minified && raw !== undefined) { this.token(raw); return; } diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/classes.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/classes.js index 141dfdaf1c988c..0c2c7c402807f3 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/classes.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/classes.js @@ -21,8 +21,10 @@ const { } = _t; function ClassDeclaration(node, parent) { - if (!this.format.decoratorsBeforeExport || !isExportDefaultDeclaration(parent) && !isExportNamedDeclaration(parent)) { - this.printJoin(node.decorators, node); + { + if (!this.format.decoratorsBeforeExport || !isExportDefaultDeclaration(parent) && !isExportNamedDeclaration(parent)) { + this.printJoin(node.decorators, node); + } } if (node.declare) { @@ -83,7 +85,7 @@ function ClassBody(node) { function ClassProperty(node) { this.printJoin(node.decorators, node); this.source("end", node.key.loc); - this.tsPrintClassMemberModifiers(node, true); + this.tsPrintClassMemberModifiers(node); if (node.computed) { this.token("["); @@ -118,7 +120,7 @@ function ClassProperty(node) { function ClassAccessorProperty(node) { this.printJoin(node.decorators, node); this.source("end", node.key.loc); - this.tsPrintClassMemberModifiers(node, true); + this.tsPrintClassMemberModifiers(node); this.word("accessor"); this.printInnerComments(node); this.space(); @@ -191,7 +193,7 @@ function ClassPrivateMethod(node) { function _classMethodHead(node) { this.printJoin(node.decorators, node); this.source("end", node.key.loc); - this.tsPrintClassMemberModifiers(node, false); + this.tsPrintClassMemberModifiers(node); this._methodHead(node); } 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 c1caf0d2ff19d0..a9ce096949c622 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 @@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", { }); exports.LogicalExpression = exports.BinaryExpression = exports.AssignmentExpression = AssignmentExpression; exports.AssignmentPattern = AssignmentPattern; -exports.AwaitExpression = void 0; +exports.AwaitExpression = AwaitExpression; exports.BindExpression = BindExpression; exports.CallExpression = CallExpression; exports.ConditionalExpression = ConditionalExpression; @@ -28,7 +28,7 @@ exports.ThisExpression = ThisExpression; exports.UnaryExpression = UnaryExpression; exports.UpdateExpression = UpdateExpression; exports.V8IntrinsicIdentifier = V8IntrinsicIdentifier; -exports.YieldExpression = void 0; +exports.YieldExpression = YieldExpression; var _t = require("@babel/types"); @@ -74,9 +74,7 @@ function UpdateExpression(node) { this.token(node.operator); this.print(node.argument, node); } else { - this.startTerminatorless(true); - this.print(node.argument, node); - this.endTerminatorless(); + this.printTerminatorless(node.argument, node, true); this.token(node.operator); } } @@ -227,27 +225,27 @@ function Import() { this.word("import"); } -function buildYieldAwait(keyword) { - return function (node) { - this.word(keyword); - - if (node.delegate) { - this.token("*"); - } +function AwaitExpression(node) { + this.word("await"); - if (node.argument) { - this.space(); - const terminatorState = this.startTerminatorless(); - this.print(node.argument, node); - this.endTerminatorless(terminatorState); - } - }; + if (node.argument) { + this.space(); + this.printTerminatorless(node.argument, node, false); + } } -const YieldExpression = buildYieldAwait("yield"); -exports.YieldExpression = YieldExpression; -const AwaitExpression = buildYieldAwait("await"); -exports.AwaitExpression = AwaitExpression; +function YieldExpression(node) { + this.word("yield"); + + if (node.delegate) { + this.token("*"); + } + + if (node.argument) { + this.space(); + this.printTerminatorless(node.argument, node, false); + } +} function EmptyStatement() { this.semicolon(true); 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 7c0bc7d30305e4..b554bb9f7ec4a4 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 @@ -219,14 +219,14 @@ function DeclareExportDeclaration(node) { this.space(); } - FlowExportDeclaration.apply(this, arguments); + FlowExportDeclaration.call(this, node); } -function DeclareExportAllDeclaration() { +function DeclareExportAllDeclaration(node) { this.word("declare"); this.space(); - _modules.ExportAllDeclaration.apply(this, arguments); + _modules.ExportAllDeclaration.call(this, node); } function EnumDeclaration(node) { diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js index 3c11f59c8744cb..bd7c4c5923e6e0 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js @@ -67,7 +67,7 @@ function JSXSpreadChild(node) { function JSXText(node) { const raw = this.getPossibleRaw(node); - if (raw != null) { + if (raw !== undefined) { this.token(raw); } else { this.token(node.value); diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/methods.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/methods.js index d31e7fad658c09..27fa102ee2e3ed 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/methods.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/methods.js @@ -42,7 +42,11 @@ function _parameters(parameters, parent) { function _param(parameter, parent) { this.printJoin(parameter.decorators, parameter); this.print(parameter, parent); - if (parameter.optional) this.token("?"); + + if (parameter.optional) { + this.token("?"); + } + this.print(parameter.typeAnnotation, parameter); } @@ -111,7 +115,9 @@ function _functionHead(node) { this._params(node); - this._predicate(node); + if (node.type !== "TSDeclareFunction") { + this._predicate(node); + } } function FunctionExpression(node) { diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/modules.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/modules.js index 3224debacafc7c..9a918265cf3230 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/modules.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/modules.js @@ -93,28 +93,14 @@ function ExportAllDeclaration(node) { } function ExportNamedDeclaration(node) { - if (this.format.decoratorsBeforeExport && isClassDeclaration(node.declaration)) { - this.printJoin(node.declaration.decorators, node); + { + if (this.format.decoratorsBeforeExport && isClassDeclaration(node.declaration)) { + this.printJoin(node.declaration.decorators, node); + } } - this.word("export"); this.space(); - ExportDeclaration.apply(this, arguments); -} - -function ExportDefaultDeclaration(node) { - if (this.format.decoratorsBeforeExport && isClassDeclaration(node.declaration)) { - this.printJoin(node.declaration.decorators, node); - } - this.word("export"); - this.space(); - this.word("default"); - this.space(); - ExportDeclaration.apply(this, arguments); -} - -function ExportDeclaration(node) { if (node.declaration) { const declar = node.declaration; this.print(declar, node); @@ -168,6 +154,21 @@ function ExportDeclaration(node) { } } +function ExportDefaultDeclaration(node) { + { + if (this.format.decoratorsBeforeExport && isClassDeclaration(node.declaration)) { + this.printJoin(node.declaration.decorators, node); + } + } + this.word("export"); + this.space(); + this.word("default"); + this.space(); + const declar = node.declaration; + this.print(declar, node); + if (!isStatement(declar)) this.semicolon(); +} + function ImportDeclaration(node) { this.word("import"); this.space(); diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/statements.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/statements.js index 8b7b8fd7338861..338048e935c560 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/statements.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/statements.js @@ -3,19 +3,19 @@ Object.defineProperty(exports, "__esModule", { value: true }); -exports.BreakStatement = void 0; +exports.BreakStatement = BreakStatement; exports.CatchClause = CatchClause; -exports.ContinueStatement = void 0; +exports.ContinueStatement = ContinueStatement; exports.DebuggerStatement = DebuggerStatement; exports.DoWhileStatement = DoWhileStatement; exports.ForOfStatement = exports.ForInStatement = void 0; exports.ForStatement = ForStatement; exports.IfStatement = IfStatement; exports.LabeledStatement = LabeledStatement; -exports.ReturnStatement = void 0; +exports.ReturnStatement = ReturnStatement; exports.SwitchCase = SwitchCase; exports.SwitchStatement = SwitchStatement; -exports.ThrowStatement = void 0; +exports.ThrowStatement = ThrowStatement; exports.TryStatement = TryStatement; exports.VariableDeclaration = VariableDeclaration; exports.VariableDeclarator = VariableDeclarator; @@ -72,8 +72,15 @@ function IfStatement(node) { } function getLastStatement(statement) { - if (!isStatement(statement.body)) return statement; - return getLastStatement(statement.body); + const { + body + } = statement; + + if (isStatement(body) === false) { + return statement; + } + + return getLastStatement(body); } function ForStatement(node) { @@ -110,30 +117,29 @@ function WhileStatement(node) { this.printBlock(node); } -const buildForXStatement = function (op) { - return function (node) { - this.word("for"); - this.space(); - - if (op === "of" && node.await) { - this.word("await"); - this.space(); - } +function ForXStatement(node) { + this.word("for"); + this.space(); + const isForOf = node.type === "ForOfStatement"; - this.token("("); - this.print(node.left, node); - this.space(); - this.word(op); + if (isForOf && node.await) { + this.word("await"); this.space(); - this.print(node.right, node); - this.token(")"); - this.printBlock(node); - }; -}; + } + + this.token("("); + this.print(node.left, node); + this.space(); + this.word(isForOf ? "of" : "in"); + this.space(); + this.print(node.right, node); + this.token(")"); + this.printBlock(node); +} -const ForInStatement = buildForXStatement("in"); +const ForInStatement = ForXStatement; exports.ForInStatement = ForInStatement; -const ForOfStatement = buildForXStatement("of"); +const ForOfStatement = ForXStatement; exports.ForOfStatement = ForOfStatement; function DoWhileStatement(node) { @@ -149,31 +155,34 @@ function DoWhileStatement(node) { this.semicolon(); } -function buildLabelStatement(prefix, key = "label") { - return function (node) { - this.word(prefix); - const label = node[key]; - - if (label) { - this.space(); - const isLabel = key == "label"; - const terminatorState = this.startTerminatorless(isLabel); - this.print(label, node); - this.endTerminatorless(terminatorState); - } +function printStatementAfterKeyword(printer, node, parent, isLabel) { + if (node) { + printer.space(); + printer.printTerminatorless(node, parent, isLabel); + } - this.semicolon(); - }; + printer.semicolon(); } -const ContinueStatement = buildLabelStatement("continue"); -exports.ContinueStatement = ContinueStatement; -const ReturnStatement = buildLabelStatement("return", "argument"); -exports.ReturnStatement = ReturnStatement; -const BreakStatement = buildLabelStatement("break"); -exports.BreakStatement = BreakStatement; -const ThrowStatement = buildLabelStatement("throw", "argument"); -exports.ThrowStatement = ThrowStatement; +function BreakStatement(node) { + this.word("break"); + printStatementAfterKeyword(this, node.label, node, true); +} + +function ContinueStatement(node) { + this.word("continue"); + printStatementAfterKeyword(this, node.label, node, true); +} + +function ReturnStatement(node) { + this.word("return"); + printStatementAfterKeyword(this, node.argument, node, false); +} + +function ThrowStatement(node) { + this.word("throw"); + printStatementAfterKeyword(this, node.argument, node, false); +} function LabeledStatement(node) { this.print(node.label, node); diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js index a56fb47ecc68d4..0aeb0a1c9da941 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/types.js @@ -213,7 +213,7 @@ function NumericLiteral(node) { function StringLiteral(node) { const raw = this.getPossibleRaw(node); - if (!this.format.minified && raw != null) { + if (!this.format.minified && raw !== undefined) { this.token(raw); return; } @@ -228,7 +228,7 @@ function StringLiteral(node) { function BigIntLiteral(node) { const raw = this.getPossibleRaw(node); - if (!this.format.minified && raw != null) { + if (!this.format.minified && raw !== undefined) { this.word(raw); return; } @@ -239,7 +239,7 @@ function BigIntLiteral(node) { function DecimalLiteral(node) { const raw = this.getPossibleRaw(node); - if (!this.format.minified && raw != null) { + if (!this.format.minified && raw !== undefined) { this.word(raw); return; } diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/typescript.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/typescript.js index 1ab647141f4d50..bf3f78faa1c634 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/typescript.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/typescript.js @@ -66,13 +66,11 @@ exports.TSUndefinedKeyword = TSUndefinedKeyword; exports.TSUnionType = TSUnionType; exports.TSUnknownKeyword = TSUnknownKeyword; exports.TSVoidKeyword = TSVoidKeyword; -exports.tsPrintBraced = tsPrintBraced; exports.tsPrintClassMemberModifiers = tsPrintClassMemberModifiers; exports.tsPrintFunctionOrConstructorType = tsPrintFunctionOrConstructorType; exports.tsPrintPropertyOrMethodName = tsPrintPropertyOrMethodName; exports.tsPrintSignatureDeclarationBase = tsPrintSignatureDeclarationBase; exports.tsPrintTypeLiteralOrInterfaceBody = tsPrintTypeLiteralOrInterfaceBody; -exports.tsPrintUnionOrIntersectionType = tsPrintUnionOrIntersectionType; function TSTypeAnnotation(node) { this.token(":"); @@ -374,25 +372,25 @@ function TSTypeLiteral(node) { } function tsPrintTypeLiteralOrInterfaceBody(members, node) { - this.tsPrintBraced(members, node); + tsPrintBraced(this, members, node); } -function tsPrintBraced(members, node) { - this.token("{"); +function tsPrintBraced(printer, members, node) { + printer.token("{"); if (members.length) { - this.indent(); - this.newline(); + printer.indent(); + printer.newline(); for (const member of members) { - this.print(member, node); - this.newline(); + printer.print(member, node); + printer.newline(); } - this.dedent(); - this.rightBrace(); + printer.dedent(); + printer.rightBrace(); } else { - this.token("}"); + printer.token("}"); } } @@ -426,15 +424,15 @@ function TSNamedTupleMember(node) { } function TSUnionType(node) { - this.tsPrintUnionOrIntersectionType(node, "|"); + tsPrintUnionOrIntersectionType(this, node, "|"); } function TSIntersectionType(node) { - this.tsPrintUnionOrIntersectionType(node, "&"); + tsPrintUnionOrIntersectionType(this, node, "&"); } -function tsPrintUnionOrIntersectionType(node, sep) { - this.printJoin(node.types, node, { +function tsPrintUnionOrIntersectionType(printer, node, sep) { + printer.printJoin(node.types, node, { separator() { this.space(); this.token(sep); @@ -653,7 +651,7 @@ function TSEnumDeclaration(node) { this.space(); this.print(id, node); this.space(); - this.tsPrintBraced(members, node); + tsPrintBraced(this, members, node); } function TSEnumMember(node) { @@ -709,7 +707,7 @@ function TSModuleDeclaration(node) { } function TSModuleBlock(node) { - this.tsPrintBraced(node.body, node); + tsPrintBraced(this, node.body, node); } function TSImportType(node) { @@ -800,7 +798,9 @@ function tsPrintSignatureDeclarationBase(node) { this.print(returnType, node); } -function tsPrintClassMemberModifiers(node, isField) { +function tsPrintClassMemberModifiers(node) { + const isField = node.type === "ClassAccessorProperty" || node.type === "ClassProperty"; + if (isField && node.declare) { this.word("declare"); 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 ca8a0bd79034e4..d5e0143471468b 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 @@ -41,7 +41,6 @@ function normalizeOptions(code, opts) { style: " ", base: 0 }, - decoratorsBeforeExport: !!opts.decoratorsBeforeExport, jsescOption: Object.assign({ quotes: "double", wrap: true, @@ -51,6 +50,7 @@ function normalizeOptions(code, opts) { topicToken: opts.topicToken }; { + format.decoratorsBeforeExport = !!opts.decoratorsBeforeExport; format.jsonCompatibleStrings = opts.jsonCompatibleStrings; } diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/index.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/index.js index b594ae441c081c..41bb6ea47e2cd4 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/index.js @@ -66,7 +66,7 @@ function isOrHasCallExpression(node) { } function needsWhitespace(node, parent, type) { - if (!node) return 0; + if (!node) return false; if (isExpressionStatement(node)) { node = node.expression; @@ -86,10 +86,10 @@ function needsWhitespace(node, parent, type) { } if (typeof linesInfo === "object" && linesInfo !== null) { - return linesInfo[type] || 0; + return linesInfo[type] || false; } - return 0; + return false; } function needsWhitespaceBefore(node, parent) { diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/parentheses.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/parentheses.js index 8ba2e644d79324..9d2b9918bf1b55 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/parentheses.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/parentheses.js @@ -40,7 +40,7 @@ const { isBinaryExpression, isUpdateExpression, isCallExpression, - isClassDeclaration, + isClass, isClassExpression, isConditional, isConditionalExpression, @@ -86,6 +86,7 @@ const { const PRECEDENCE = { "||": 0, "??": 0, + "|>": 0, "&&": 1, "|": 2, "^": 3, @@ -111,7 +112,9 @@ const PRECEDENCE = { "**": 10 }; -const isClassExtendsClause = (node, parent) => (isClassDeclaration(parent) || isClassExpression(parent)) && parent.superClass === node; +const isClassExtendsClause = (node, parent) => isClass(parent, { + superClass: node +}); const hasPostfixPart = (node, parent) => (isMemberExpression(parent) || isOptionalMemberExpression(parent)) && parent.object === node || (isCallExpression(parent) || isOptionalCallExpression(parent) || isNewExpression(parent)) && parent.callee === node || isTaggedTemplateExpression(parent) && parent.tag === node || isTSNonNullExpression(parent); diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/whitespace.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/whitespace.js index 80e2da9c498225..42320303d3ad57 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/whitespace.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/node/whitespace.js @@ -199,16 +199,12 @@ const list = { }; exports.list = list; [["Function", true], ["Class", true], ["Loop", true], ["LabeledStatement", true], ["SwitchStatement", true], ["TryStatement", true]].forEach(function ([type, amounts]) { - if (typeof amounts === "boolean") { - amounts = { - after: amounts, - before: amounts - }; - } - [type].concat(FLIPPED_ALIAS_KEYS[type] || []).forEach(function (type) { nodes[type] = function () { - return amounts; + return { + after: amounts, + before: amounts + }; }; }); }); \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js index 011460b7609c4d..4ece9b30fdfebc 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js @@ -253,24 +253,23 @@ class Printer { return this.format.indent.style.repeat(this._indent); } - startTerminatorless(isLabel = false) { + printTerminatorless(node, parent, isLabel) { if (isLabel) { this._noLineTerminator = true; - return null; + this.print(node, parent); + this._noLineTerminator = false; } else { - return this._parenPushNewlineState = { + const terminatorState = { printed: false }; - } - } - - endTerminatorless(state) { - this._noLineTerminator = false; + this._parenPushNewlineState = terminatorState; + this.print(node, parent); - if (state != null && state.printed) { - this.dedent(); - this.newline(); - this.token(")"); + if (terminatorState.printed) { + this.dedent(); + this.newline(); + this.token(")"); + } } } diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping/package.json b/tools/node_modules/eslint/node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping/package.json index 3b709f65688023..4934de5c7b0a1d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping/package.json @@ -1,6 +1,6 @@ { "name": "@jridgewell/gen-mapping", - "version": "0.3.1", + "version": "0.3.2", "description": "Generate source maps", "keywords": [ "source", @@ -13,16 +13,20 @@ "module": "dist/gen-mapping.mjs", "typings": "dist/types/gen-mapping.d.ts", "exports": { - ".": { - "types": "./dist/types/gen-mapping.d.ts", - "browser": "./dist/gen-mapping.umd.js", - "require": "./dist/gen-mapping.umd.js", - "import": "./dist/gen-mapping.mjs" - }, + ".": [ + { + "types": "./dist/types/gen-mapping.d.ts", + "browser": "./dist/gen-mapping.umd.js", + "require": "./dist/gen-mapping.umd.js", + "import": "./dist/gen-mapping.mjs" + }, + "./dist/gen-mapping.umd.js" + ], "./package.json": "./package.json" }, "files": [ - "dist" + "dist", + "src" ], "engines": { "node": ">=6.0.0" @@ -67,7 +71,7 @@ "typescript": "4.6.3" }, "dependencies": { - "@jridgewell/set-array": "^1.0.0", + "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" } 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 07f8154b7a58a5..bcced6830f48d8 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.18.2", + "version": "7.18.7", "description": "Turns an AST into code.", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -19,18 +19,19 @@ "lib" ], "dependencies": { - "@babel/types": "^7.18.2", - "@jridgewell/gen-mapping": "^0.3.0", + "@babel/types": "^7.18.7", + "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "devDependencies": { - "@babel/helper-fixtures": "^7.17.10", - "@babel/parser": "^7.18.0", + "@babel/helper-fixtures": "^7.18.6", + "@babel/parser": "^7.18.6", "@jridgewell/trace-mapping": "^0.3.8", "@types/jsesc": "^2.5.0", "charcodes": "^0.2.0" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/index.js index ae7be9be226f9b..1a39ee49ee2f12 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/index.js @@ -88,31 +88,31 @@ function validateBrowsers(browsers) { function getLowestVersions(browsers) { return browsers.reduce((all, browser) => { const [browserName, browserVersion] = browser.split(" "); - const normalizedBrowserName = _targets.browserNameMap[browserName]; + const target = _targets.browserNameMap[browserName]; - if (!normalizedBrowserName) { + if (!target) { return all; } try { const splitVersion = browserVersion.split("-")[0].toLowerCase(); - const isSplitUnreleased = (0, _utils.isUnreleasedVersion)(splitVersion, browserName); + const isSplitUnreleased = (0, _utils.isUnreleasedVersion)(splitVersion, target); - if (!all[normalizedBrowserName]) { - all[normalizedBrowserName] = isSplitUnreleased ? splitVersion : (0, _utils.semverify)(splitVersion); + if (!all[target]) { + all[target] = isSplitUnreleased ? splitVersion : (0, _utils.semverify)(splitVersion); return all; } - const version = all[normalizedBrowserName]; - const isUnreleased = (0, _utils.isUnreleasedVersion)(version, browserName); + const version = all[target]; + const isUnreleased = (0, _utils.isUnreleasedVersion)(version, target); if (isUnreleased && isSplitUnreleased) { - all[normalizedBrowserName] = (0, _utils.getLowestUnreleased)(version, splitVersion, browserName); + all[target] = (0, _utils.getLowestUnreleased)(version, splitVersion, target); } else if (isUnreleased) { - all[normalizedBrowserName] = (0, _utils.semverify)(splitVersion); + all[target] = (0, _utils.semverify)(splitVersion); } else if (!isUnreleased && !isSplitUnreleased) { const parsedBrowserVersion = (0, _utils.semverify)(splitVersion); - all[normalizedBrowserName] = (0, _utils.semverMin)(version, parsedBrowserVersion); + all[target] = (0, _utils.semverMin)(version, parsedBrowserVersion); } } catch (e) {} @@ -144,18 +144,15 @@ function semverifyTarget(target, value) { } } -const targetParserMap = { - __default(target, value) { - const version = (0, _utils.isUnreleasedVersion)(value, target) ? value.toLowerCase() : semverifyTarget(target, value); - return [target, version]; - }, - - node(target, value) { - const parsed = value === true || value === "current" ? process.versions.node : semverifyTarget(target, value); - return [target, parsed]; - } +function nodeTargetParser(value) { + const parsed = value === true || value === "current" ? process.versions.node : semverifyTarget("node", value); + return ["node", parsed]; +} -}; +function defaultTargetParser(target, value) { + const version = (0, _utils.isUnreleasedVersion)(value, target) ? value.toLowerCase() : semverifyTarget(target, value); + return [target, version]; +} function generateTargets(inputTargets) { const input = Object.assign({}, inputTargets); @@ -215,9 +212,10 @@ function getTargets(inputTargets = {}, options = {}) { if (esmodules === "intersect") { for (const browser of Object.keys(queryBrowsers)) { const version = queryBrowsers[browser]; + const esmSupportVersion = ESM_SUPPORT[browser]; - if (ESM_SUPPORT[browser]) { - queryBrowsers[browser] = (0, _utils.getHighestUnreleased)(version, (0, _utils.semverify)(ESM_SUPPORT[browser]), browser); + if (esmSupportVersion) { + queryBrowsers[browser] = (0, _utils.getHighestUnreleased)(version, (0, _utils.semverify)(esmSupportVersion), browser); } else { delete queryBrowsers[browser]; } @@ -231,8 +229,6 @@ function getTargets(inputTargets = {}, options = {}) { const decimalWarnings = []; for (const target of Object.keys(targets).sort()) { - var _targetParserMap$targ; - const value = targets[target]; if (typeof value === "number" && value % 1 !== 0) { @@ -242,8 +238,7 @@ function getTargets(inputTargets = {}, options = {}) { }); } - const parser = (_targetParserMap$targ = targetParserMap[target]) != null ? _targetParserMap$targ : targetParserMap.__default; - const [parsedTarget, parsedValue] = parser(target, value); + const [parsedTarget, parsedValue] = target === "node" ? nodeTargetParser(value) : defaultTargetParser(target, value); if (parsedValue) { result[parsedTarget] = parsedValue; diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/utils.js b/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/utils.js index 711a84f433a515..e14e7f986b9031 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/utils.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/utils.js @@ -45,10 +45,13 @@ function isUnreleasedVersion(version, env) { function getLowestUnreleased(a, b, env) { const unreleasedLabel = _targets.unreleasedLabels[env]; - const hasUnreleased = [a, b].some(item => item === unreleasedLabel); - if (hasUnreleased) { - return a === hasUnreleased ? b : a || b; + if (a === unreleasedLabel) { + return b; + } + + if (b === unreleasedLabel) { + return a; } return semverMin(a, b); 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 50abfaaf40ea38..c5d6fb020b4946 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.18.2", + "version": "7.18.6", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", "description": "Helper functions on Babel compilation targets", @@ -22,8 +22,8 @@ "babel-plugin" ], "dependencies": { - "@babel/compat-data": "^7.17.10", - "@babel/helper-validator-option": "^7.16.7", + "@babel/compat-data": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.20.2", "semver": "^6.3.0" }, @@ -31,11 +31,12 @@ "@babel/core": "^7.0.0" }, "devDependencies": { - "@babel/core": "^7.18.2", - "@babel/helper-plugin-test-runner": "^7.16.7", + "@babel/core": "^7.18.6", + "@babel/helper-plugin-test-runner": "^7.18.6", "@types/semver": "^5.5.0" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-environment-visitor/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-environment-visitor/package.json index 820c9df7845209..0caf56434d2242 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-environment-visitor/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-environment-visitor/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-environment-visitor", - "version": "7.18.2", + "version": "7.18.6", "description": "Helper visitor to only visit nodes in the current 'this' context", "repository": { "type": "git", @@ -18,11 +18,12 @@ "./package.json": "./package.json" }, "devDependencies": { - "@babel/traverse": "^7.18.2", - "@babel/types": "^7.18.2" + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, - "author": "The Babel Team (https://babel.dev/team)" + "author": "The Babel Team (https://babel.dev/team)", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-function-name/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/helper-function-name/lib/index.js index 749812feb063f5..2ad731682dfe7b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-function-name/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-function-name/lib/index.js @@ -33,7 +33,7 @@ function getFunctionArity(node) { return count === -1 ? node.params.length : count; } -const buildPropertyMethodAssignmentWrapper = (0, _template.default)(` +const buildPropertyMethodAssignmentWrapper = _template.default.statement(` (function (FUNCTION_KEY) { function FUNCTION_ID() { return FUNCTION_KEY.apply(this, arguments); @@ -46,7 +46,8 @@ const buildPropertyMethodAssignmentWrapper = (0, _template.default)(` return FUNCTION_ID; })(FUNCTION) `); -const buildGeneratorPropertyMethodAssignmentWrapper = (0, _template.default)(` + +const buildGeneratorPropertyMethodAssignmentWrapper = _template.default.statement(` (function (FUNCTION_KEY) { function* FUNCTION_ID() { return yield* FUNCTION_KEY.apply(this, arguments); @@ -59,6 +60,7 @@ const buildGeneratorPropertyMethodAssignmentWrapper = (0, _template.default)(` return FUNCTION_ID; })(FUNCTION) `); + const visitor = { "ReferencedIdentifier|BindingIdentifier"(path, state) { if (path.node.name !== state.name) return; @@ -126,7 +128,6 @@ function visit(node, name, scope) { selfAssignment: false, selfReference: false, outerDeclar: scope.getBindingIdentifier(name), - references: [], name: name }; const binding = scope.getOwnBinding(name); @@ -191,8 +192,8 @@ function _default({ } name = toBindingIdentifierName(name); - id = identifier(name); - id[NOT_LOCAL_BINDING] = true; + const newId = identifier(name); + newId[NOT_LOCAL_BINDING] = true; const state = visit(node, name, scope); - return wrap(state, node, id, scope) || node; + return wrap(state, node, newId, scope) || node; } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-function-name/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-function-name/package.json index a4c9646b5f2a30..4432993593b196 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-function-name/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-function-name/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-function-name", - "version": "7.17.9", + "version": "7.18.6", "description": "Helper function to change the property 'name' of every function", "repository": { "type": "git", @@ -14,11 +14,12 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/template": "^7.16.7", - "@babel/types": "^7.17.0" + "@babel/template": "^7.18.6", + "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, - "author": "The Babel Team (https://babel.dev/team)" + "author": "The Babel Team (https://babel.dev/team)", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-hoist-variables/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-hoist-variables/package.json index ec99d90ed3bbc4..0d925300296ce7 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-hoist-variables/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-hoist-variables/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-hoist-variables", - "version": "7.16.7", + "version": "7.18.6", "description": "Helper function to hoist variables", "repository": { "type": "git", @@ -14,14 +14,15 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" }, "TODO": "The @babel/traverse dependency is only needed for the NodePath TS type. We can consider exporting it from @babel/core.", "devDependencies": { - "@babel/traverse": "^7.16.7" + "@babel/traverse": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, - "author": "The Babel Team (https://babel.dev/team)" + "author": "The Babel Team (https://babel.dev/team)", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-builder.js b/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-builder.js index 8a1800e64cb324..907f6fd2bb724b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-builder.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-builder.js @@ -28,8 +28,6 @@ class ImportBuilder { constructor(importedSource, scope, hub) { this._statements = []; this._resultName = null; - this._scope = null; - this._hub = null; this._importedSource = void 0; this._scope = scope; this._hub = hub; @@ -70,34 +68,38 @@ class ImportBuilder { } default(name) { - name = this._scope.generateUidIdentifier(name); + const id = this._scope.generateUidIdentifier(name); + const statement = this._statements[this._statements.length - 1]; _assert(statement.type === "ImportDeclaration"); _assert(statement.specifiers.length === 0); - statement.specifiers = [importDefaultSpecifier(name)]; - this._resultName = cloneNode(name); + statement.specifiers = [importDefaultSpecifier(id)]; + this._resultName = cloneNode(id); return this; } named(name, importName) { if (importName === "default") return this.default(name); - name = this._scope.generateUidIdentifier(name); + + const id = this._scope.generateUidIdentifier(name); + const statement = this._statements[this._statements.length - 1]; _assert(statement.type === "ImportDeclaration"); _assert(statement.specifiers.length === 0); - statement.specifiers = [importSpecifier(name, identifier(importName))]; - this._resultName = cloneNode(name); + statement.specifiers = [importSpecifier(id, identifier(importName))]; + this._resultName = cloneNode(id); return this; } var(name) { - name = this._scope.generateUidIdentifier(name); + const id = this._scope.generateUidIdentifier(name); + let statement = this._statements[this._statements.length - 1]; if (statement.type !== "ExpressionStatement") { @@ -108,8 +110,8 @@ class ImportBuilder { this._statements.push(statement); } - this._statements[this._statements.length - 1] = variableDeclaration("var", [variableDeclarator(name, statement.expression)]); - this._resultName = cloneNode(name); + this._statements[this._statements.length - 1] = variableDeclaration("var", [variableDeclarator(id, statement.expression)]); + this._resultName = cloneNode(id); return this; } diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-injector.js b/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-injector.js index adb9627ef390be..cb3bf59859089a 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-injector.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/lib/import-injector.js @@ -51,35 +51,25 @@ class ImportInjector { } addSideEffect(importedSourceIn, opts) { - return this._generateImport(this._applyDefaults(importedSourceIn, opts), false); + return this._generateImport(this._applyDefaults(importedSourceIn, opts), void 0); } _applyDefaults(importedSource, opts, isInit = false) { - const optsList = []; + let newOpts; if (typeof importedSource === "string") { - optsList.push({ + newOpts = Object.assign({}, this._defaultOpts, { importedSource - }); - optsList.push(opts); + }, opts); } else { _assert(!opts, "Unexpected secondary arguments."); - optsList.push(importedSource); + newOpts = Object.assign({}, this._defaultOpts, importedSource); } - const newOpts = Object.assign({}, this._defaultOpts); - - for (const opts of optsList) { - if (!opts) continue; - Object.keys(newOpts).forEach(key => { - if (opts[key] !== undefined) newOpts[key] = opts[key]; - }); - - if (!isInit) { - if (opts.nameHint !== undefined) newOpts.nameHint = opts.nameHint; - if (opts.blockHoist !== undefined) newOpts.blockHoist = opts.blockHoist; - } + if (!isInit && opts) { + if (opts.nameHint !== undefined) newOpts.nameHint = opts.nameHint; + if (opts.blockHoist !== undefined) newOpts.blockHoist = opts.blockHoist; } return newOpts; diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/package.json index 7814505e62028a..9301d3e17d9ca2 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-module-imports/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-module-imports", - "version": "7.16.7", + "version": "7.18.6", "description": "Babel helper functions for inserting module loads", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-module-imports", @@ -15,13 +15,14 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" }, "devDependencies": { - "@babel/core": "^7.16.7", - "@babel/traverse": "^7.16.7" + "@babel/core": "^7.18.6", + "@babel/traverse": "^7.18.6" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js index af3b3a6c087b57..5187a30a3f579f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js @@ -270,7 +270,9 @@ function getLocalExportMetadata(programPath, initializeReexports, stringSpecifie if (child.isImportDeclaration()) { kind = "import"; } else { - if (child.isExportDefaultDeclaration()) child = child.get("declaration"); + if (child.isExportDefaultDeclaration()) { + child = child.get("declaration"); + } if (child.isExportNamedDeclaration()) { if (child.node.declaration) { diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js index aba8a64906d502..cf7cb5cebdce76 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js @@ -102,7 +102,10 @@ function rewriteLiveReferences(programPath, metadata) { const meta = metadata.source.get(source); if (localName) { - if (meta.lazy) identNode = callExpression(identNode, []); + if (meta.lazy) { + identNode = callExpression(identNode, []); + } + return identNode; } @@ -302,7 +305,7 @@ const rewriteReferencesVisitor = { const assignment = path.node; if (importData) { - assignment.left = buildImportReference(importData, assignment.left); + assignment.left = buildImportReference(importData, left.node); assignment.right = sequenceExpression([assignment.right, buildImportThrow(localName)]); } diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json index eb8b4c11036686..11875d4e87be9a 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-module-transforms", - "version": "7.18.0", + "version": "7.18.6", "description": "Babel helper functions for implementing ES6 module transformations", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-module-transforms", @@ -15,16 +15,17 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-simple-access": "^7.17.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/helper-validator-identifier": "^7.16.7", - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.18.0", - "@babel/types": "^7.18.0" + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/lib/index.js index 7acf144ea362fd..02df6923fb9680 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/lib/index.js @@ -33,7 +33,9 @@ const apiPolyfills = { targets: () => () => { return {}; }, - assumption: () => () => {} + assumption: () => () => { + return undefined; + } }; function copyApiObject(api) { diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json index 859134ebc94faf..f0ec3040081d0b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-plugin-utils", - "version": "7.17.12", + "version": "7.18.6", "description": "General utilities for plugins to use", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-plugin-utils", @@ -16,5 +16,6 @@ "main": "./lib/index.js", "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json index f6520705c9d16b..b360910a849884 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-simple-access", - "version": "7.18.2", + "version": "7.18.6", "description": "Babel helper for ensuring that access to a given value is performed through simple accesses", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-simple-access", @@ -15,12 +15,13 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.18.2" + "@babel/types": "^7.18.6" }, "devDependencies": { - "@babel/traverse": "^7.18.2" + "@babel/traverse": "^7.18.6" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/lib/index.js index 6007f89c28dacd..89cb62fed09c84 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/lib/index.js @@ -17,16 +17,13 @@ const { } = _t; function splitExportDeclaration(exportDeclaration) { - if (!exportDeclaration.isExportDeclaration()) { - throw new Error("Only export declarations can be split."); + if (!exportDeclaration.isExportDeclaration() || exportDeclaration.isExportAllDeclaration()) { + throw new Error("Only default and named export declarations can be split."); } - const isDefault = exportDeclaration.isExportDefaultDeclaration(); - const declaration = exportDeclaration.get("declaration"); - const isClassDeclaration = declaration.isClassDeclaration(); - - if (isDefault) { - const standaloneDeclaration = declaration.isFunctionDeclaration() || isClassDeclaration; + if (exportDeclaration.isExportDefaultDeclaration()) { + const declaration = exportDeclaration.get("declaration"); + const standaloneDeclaration = declaration.isFunctionDeclaration() || declaration.isClassDeclaration(); const scope = declaration.isScope() ? declaration.scope.parent : declaration.scope; let id = declaration.node.id; let needBindingRegistration = false; @@ -40,7 +37,7 @@ function splitExportDeclaration(exportDeclaration) { } } - const updatedDeclaration = standaloneDeclaration ? declaration : variableDeclaration("var", [variableDeclarator(cloneNode(id), declaration.node)]); + const updatedDeclaration = standaloneDeclaration ? declaration.node : variableDeclaration("var", [variableDeclarator(cloneNode(id), declaration.node)]); const updatedExportDeclaration = exportNamedDeclaration(null, [exportSpecifier(cloneNode(id), identifier("default"))]); exportDeclaration.insertAfter(updatedExportDeclaration); exportDeclaration.replaceWith(updatedDeclaration); @@ -50,12 +47,11 @@ function splitExportDeclaration(exportDeclaration) { } return exportDeclaration; - } - - if (exportDeclaration.get("specifiers").length > 0) { + } else if (exportDeclaration.get("specifiers").length > 0) { throw new Error("It doesn't make sense to split exported specifiers."); } + const declaration = exportDeclaration.get("declaration"); const bindingIdentifiers = declaration.getOuterBindingIdentifiers(); const specifiers = Object.keys(bindingIdentifiers).map(name => { return exportSpecifier(identifier(name), identifier(name)); diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json index 3836b192d4d0d1..d2edb7fbcd4cf5 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-split-export-declaration", - "version": "7.16.7", + "version": "7.18.6", "description": "", "repository": { "type": "git", @@ -14,10 +14,11 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.16.7" + "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, - "author": "The Babel Team (https://babel.dev/team)" + "author": "The Babel Team (https://babel.dev/team)", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json index 972fdf11d5b002..27b388c23d12e9 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-validator-identifier", - "version": "7.16.7", + "version": "7.18.6", "description": "Validate identifier/keywords name", "repository": { "type": "git", @@ -23,5 +23,6 @@ "engines": { "node": ">=6.9.0" }, - "author": "The Babel Team (https://babel.dev/team)" + "author": "The Babel Team (https://babel.dev/team)", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-validator-option/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-validator-option/package.json index 1fe2da845ceca8..15eb32752502da 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-validator-option/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-validator-option/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-validator-option", - "version": "7.16.7", + "version": "7.18.6", "description": "Validate plugin/preset options", "repository": { "type": "git", @@ -19,5 +19,6 @@ "engines": { "node": ">=6.9.0" }, - "author": "The Babel Team (https://babel.dev/team)" + "author": "The Babel Team (https://babel.dev/team)", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helpers/package.json b/tools/node_modules/eslint/node_modules/@babel/helpers/package.json index 3113bf3077a1de..551043c0f077a4 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helpers/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helpers", - "version": "7.18.2", + "version": "7.18.6", "description": "Collection of helper functions used by Babel transforms.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helpers", @@ -15,18 +15,19 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/template": "^7.16.7", - "@babel/traverse": "^7.18.2", - "@babel/types": "^7.18.2" + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" }, "devDependencies": { - "@babel/generator": "^7.18.2", - "@babel/helper-plugin-test-runner": "^7.16.7", - "@babel/parser": "^7.18.0", + "@babel/generator": "^7.18.6", + "@babel/helper-plugin-test-runner": "^7.18.6", + "@babel/parser": "^7.18.6", "regenerator-runtime": "^0.13.9", "terser": "^5.9.0" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helpers/scripts/generate-helpers.js b/tools/node_modules/eslint/node_modules/@babel/helpers/scripts/generate-helpers.js index aadc9786f4d343..e0b37019320fd5 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helpers/scripts/generate-helpers.js +++ b/tools/node_modules/eslint/node_modules/@babel/helpers/scripts/generate-helpers.js @@ -14,7 +14,7 @@ export default async function generateHelpers() { import template from "@babel/template"; -function helper(minVersion, source) { +function helper(minVersion: string, source: string) { return Object.freeze({ minVersion, ast: () => template.program.ast(source, { preserveComments: true }), diff --git a/tools/node_modules/eslint/node_modules/@babel/highlight/package.json b/tools/node_modules/eslint/node_modules/@babel/highlight/package.json index 2aa44e3422e980..65c97d91268a12 100644 --- a/tools/node_modules/eslint/node_modules/@babel/highlight/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/highlight/package.json @@ -1,6 +1,6 @@ { "name": "@babel/highlight", - "version": "7.17.12", + "version": "7.18.6", "description": "Syntax highlight JavaScript strings for output in terminals.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-highlight", @@ -15,7 +15,7 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -25,5 +25,6 @@ }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file 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 7fe93e65b3fab8..134e39e6a28b65 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 @@ -170,6 +170,7 @@ var StandardErrors = (_ => ({ }) => `\`import()\` requires exactly ${maxArgumentCount === 1 ? "one argument" : "one or two arguments"}.`), ImportCallNotNewExpression: _("Cannot use new with import(...)."), ImportCallSpreadArgument: _("`...` is not allowed in `import()`."), + ImportJSONBindingNotDefault: _("A JSON module can only be imported with `default`."), IncompatibleRegExpUVFlags: _("The 'u' and 'v' regular expression flags cannot be enabled at the same time."), InvalidBigIntLiteral: _("Invalid BigIntLiteral."), InvalidCodePoint: _("Code point out of bounds."), @@ -1354,9 +1355,6 @@ function tokenLabelName(token) { function tokenOperatorPrecedence(token) { return tokenBinops[token]; } -function tokenIsBinaryOperator(token) { - return tokenBinops[token] !== -1; -} function tokenIsRightAssociative(token) { return token === 57; } @@ -8202,10 +8200,6 @@ function assert(x) { } } -function tsTokenCanStartExpression(token) { - return tokenCanStartExpression(token) || tokenIsBinaryOperator(token); -} - const TSErrors = ParseErrorEnum`typescript`(_ => ({ AbstractMethodHasImplementation: _(({ methodName @@ -8263,6 +8257,7 @@ const TSErrors = ParseErrorEnum`typescript`(_ => ({ InvalidModifiersOrder: _(({ orderedModifiers }) => `'${orderedModifiers[0]}' modifier must precede '${orderedModifiers[1]}' modifier.`), + InvalidPropertyAccessAfterInstantiationExpression: _("Invalid property access after an instantiation expression. " + "You can either wrap the instantiation expression in parentheses, or delete the type arguments."), InvalidTupleMemberLabel: _("Tuple members must be labeled with a simple identifier."), MissingInterfaceName: _("'interface' declarations must be followed by an identifier."), MixedLabeledAndUnlabeledElements: _("Tuple members must all have names or all not have names."), @@ -10137,11 +10132,11 @@ var typescript = (superClass => class extends superClass { } const typeArguments = this.tsParseTypeArgumentsInExpression(); - if (!typeArguments) throw this.unexpected(); + if (!typeArguments) return; if (isOptionalCall && !this.match(10)) { missingParenErrorLoc = this.state.curPosition(); - throw this.unexpected(); + return; } if (tokenIsTemplate(this.state.type)) { @@ -10164,8 +10159,10 @@ var typescript = (superClass => class extends superClass { return this.finishCallExpression(node, state.optionalChainMember); } - if (tsTokenCanStartExpression(this.state.type) && this.state.type !== 10) { - throw this.unexpected(); + const tokenType = this.state.type; + + if (tokenType === 48 || tokenType !== 10 && tokenCanStartExpression(tokenType) && !this.hasPrecedingLineBreak()) { + return; } const node = this.startNodeAt(startPos, startLoc); @@ -10178,7 +10175,15 @@ var typescript = (superClass => class extends superClass { this.unexpected(missingParenErrorLoc, 10); } - if (result) return result; + if (result) { + if (result.type === "TSInstantiationExpression" && (this.match(16) || this.match(18) && this.lookaheadCharCode() !== 40)) { + this.raise(TSErrors.InvalidPropertyAccessAfterInstantiationExpression, { + at: this.state.startLoc + }); + } + + return result; + } } return super.parseSubscript(base, startPos, startLoc, noCalls, state); @@ -16065,6 +16070,7 @@ class StatementParser extends ExpressionParser { if (assertions) { node.assertions = assertions; + this.checkJSONModuleImport(node); } } else if (expect) { this.unexpected(); @@ -16250,6 +16256,49 @@ class StatementParser extends ExpressionParser { return this.parseIdentifier(true); } + isJSONModuleImport(node) { + if (node.assertions != null) { + return node.assertions.some(({ + key, + value + }) => { + return value.value === "json" && (key.type === "Identifier" ? key.name === "type" : key.value === "type"); + }); + } + + return false; + } + + checkJSONModuleImport(node) { + if (this.isJSONModuleImport(node) && node.type !== "ExportAllDeclaration") { + const { + specifiers + } = node; + + if (node.specifiers != null) { + const nonDefaultNamedSpecifier = specifiers.find(specifier => { + let imported; + + if (specifier.type === "ExportSpecifier") { + imported = specifier.local; + } else if (specifier.type === "ImportSpecifier") { + imported = specifier.imported; + } + + if (imported !== undefined) { + return imported.type === "Identifier" ? imported.name !== "default" : imported.value !== "default"; + } + }); + + if (nonDefaultNamedSpecifier !== undefined) { + this.raise(Errors.ImportJSONBindingNotDefault, { + at: nonDefaultNamedSpecifier.loc.start + }); + } + } + } + } + parseImport(node) { node.specifiers = []; @@ -16274,6 +16323,7 @@ class StatementParser extends ExpressionParser { } } + this.checkJSONModuleImport(node); this.semicolon(); return this.finishNode(node, "ImportDeclaration"); } 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 ae72de5b409ef2..bd77f6fd26a82e 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.18.5", + "version": "7.18.6", "description": "A JavaScript parser", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-parser", @@ -33,11 +33,12 @@ "node": ">=6.0.0" }, "devDependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/helper-check-duplicate-nodes": "^7.18.4", - "@babel/helper-fixtures": "^7.17.10", - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/code-frame": "^7.18.6", + "@babel/helper-check-duplicate-nodes": "^7.18.6", + "@babel/helper-fixtures": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", "charcodes": "^0.2.0" }, - "bin": "./bin/babel-parser.js" + "bin": "./bin/babel-parser.js", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/plugin-syntax-import-assertions/package.json b/tools/node_modules/eslint/node_modules/@babel/plugin-syntax-import-assertions/package.json index eb31cea1b3091c..508e5bf7f6470f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/plugin-syntax-import-assertions/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/plugin-syntax-import-assertions/package.json @@ -1,6 +1,6 @@ { "name": "@babel/plugin-syntax-import-assertions", - "version": "7.17.12", + "version": "7.18.6", "description": "Allow parsing of the module assertion attributes in the import statement", "repository": { "type": "git", @@ -16,16 +16,17 @@ "babel-plugin" ], "dependencies": { - "@babel/helper-plugin-utils": "^7.17.12" + "@babel/helper-plugin-utils": "^7.18.6" }, "peerDependencies": { "@babel/core": "^7.0.0-0" }, "devDependencies": { - "@babel/core": "^7.17.12" + "@babel/core": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, - "author": "The Babel Team (https://babel.dev/team)" + "author": "The Babel Team (https://babel.dev/team)", + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/template/package.json b/tools/node_modules/eslint/node_modules/@babel/template/package.json index 9aca58a5a308dc..7c6794a22c0d5d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/template/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/template/package.json @@ -1,6 +1,6 @@ { "name": "@babel/template", - "version": "7.16.7", + "version": "7.18.6", "description": "Generate an AST from a string template.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-template", @@ -16,11 +16,12 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/context.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/context.js index 25e2e0a750122c..85fac2209d80db 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/context.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/context.js @@ -31,17 +31,19 @@ class TraversalContext { if (!(keys != null && keys.length)) return false; for (const key of keys) { - if (node[key]) return true; + if (node[key]) { + return true; + } } return false; } - create(node, obj, key, listKey) { + create(node, container, key, listKey) { return _path.default.get({ parentPath: this.parentPath, parent: node, - container: obj, + container, key: key, listKey }); diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js index 6a3ed54a97f5e5..9b61ab72b69e9b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/context.js @@ -181,7 +181,10 @@ function _resyncParent() { function _resyncKey() { if (!this.container) return; - if (this.node === this.container[this.key]) return; + + if (this.node === this.container[this.key]) { + return; + } if (Array.isArray(this.container)) { for (let i = 0; i < this.container.length; i++) { diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/conversion.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/conversion.js index a019d221f5cf5a..467637641ba1c4 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/conversion.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/conversion.js @@ -251,10 +251,11 @@ function hoistFunctionEnvironment(fnPath, noNewArrows = true, allowInsertArrow = const flatSuperProps = superProps.reduce((acc, superProp) => acc.concat(standardizeSuperProperty(superProp)), []); flatSuperProps.forEach(superProp => { const key = superProp.node.computed ? "" : superProp.get("property").node.name; - const isAssignment = superProp.parentPath.isAssignmentExpression({ + const superParentPath = superProp.parentPath; + const isAssignment = superParentPath.isAssignmentExpression({ left: superProp.node }); - const isCall = superProp.parentPath.isCallExpression({ + const isCall = superParentPath.isCallExpression({ callee: superProp.node }); const superBinding = getSuperPropBinding(thisEnvFn, isAssignment, key); @@ -265,18 +266,18 @@ function hoistFunctionEnvironment(fnPath, noNewArrows = true, allowInsertArrow = } if (isAssignment) { - const value = superProp.parentPath.node.right; + const value = superParentPath.node.right; args.push(value); } const call = callExpression(identifier(superBinding), args); if (isCall) { - superProp.parentPath.unshiftContainer("arguments", thisExpression()); + superParentPath.unshiftContainer("arguments", thisExpression()); superProp.replaceWith(memberExpression(call, identifier("call"))); - thisPaths.push(superProp.parentPath.get("arguments.0")); + thisPaths.push(superParentPath.get("arguments.0")); } else if (isAssignment) { - superProp.parentPath.replaceWith(call); + superParentPath.replaceWith(call); } else { superProp.replaceWith(call); } diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js index abbbe050f59425..9979356afc5e63 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js @@ -8,6 +8,14 @@ exports.evaluateTruthy = evaluateTruthy; const VALID_CALLEES = ["String", "Number", "Math"]; const INVALID_METHODS = ["random"]; +function isValidCallee(val) { + return VALID_CALLEES.includes(val); +} + +function isInvalidMethod(val) { + return INVALID_METHODS.includes(val); +} + function evaluateTruthy() { const res = this.evaluate(); if (res.confident) return !!res.value; @@ -336,7 +344,7 @@ function _evaluate(path, state) { let context; let func; - if (callee.isIdentifier() && !path.scope.getBinding(callee.node.name) && VALID_CALLEES.indexOf(callee.node.name) >= 0) { + if (callee.isIdentifier() && !path.scope.getBinding(callee.node.name) && isValidCallee(callee.node.name)) { func = global[callee.node.name]; } @@ -344,7 +352,7 @@ function _evaluate(path, state) { const object = callee.get("object"); const property = callee.get("property"); - if (object.isIdentifier() && property.isIdentifier() && VALID_CALLEES.indexOf(object.node.name) >= 0 && INVALID_METHODS.indexOf(property.node.name) < 0) { + if (object.isIdentifier() && property.isIdentifier() && isValidCallee(object.node.name) && !isInvalidMethod(property.node.name)) { context = global[object.node.name]; func = context[property.node.name]; } diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js index c328dc150f425a..0273106f03abce 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js @@ -202,5 +202,5 @@ function getConditionalAnnotation(binding, path, name) { }; } - return getConditionalAnnotation(ifStatement, name); + return getConditionalAnnotation(binding, ifStatement, name); } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferers.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferers.js index 68180ac548bd2a..be0a3e512c65a3 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferers.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/inference/inferers.js @@ -87,7 +87,7 @@ function TypeCastExpression(node) { TypeCastExpression.validParent = true; function NewExpression(node) { - if (this.get("callee").isIdentifier()) { + if (node.callee.type === "Identifier") { return genericTypeAnnotation(node.callee); } } diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js index 23ec8fe6d7eb8f..36e4a4e324d9b6 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js @@ -4,6 +4,9 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.hooks = void 0; + +var _ = require(".."); + const hooks = [function (self, parent) { const removeParent = self.key === "test" && (parent.isWhile() || parent.isSwitchCase()) || self.key === "declaration" && parent.isExportDeclaration() || self.key === "body" && parent.isLabeledStatement() || self.listKey === "declarations" && parent.isVariableDeclaration() && parent.node.declarations.length === 1 || self.key === "expression" && parent.isExpressionStatement(); diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/replacement.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/replacement.js index ee5cdce8e19605..66506f29beaeba 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/replacement.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/replacement.js @@ -69,10 +69,11 @@ function replaceWithMultiple(nodes) { function replaceWithSourceString(replacement) { this.resync(); + let ast; try { replacement = `(${replacement})`; - replacement = (0, _parser.parse)(replacement); + ast = (0, _parser.parse)(replacement); } catch (err) { const loc = err.loc; @@ -89,23 +90,21 @@ function replaceWithSourceString(replacement) { throw err; } - replacement = replacement.program.body[0].expression; + const expressionAST = ast.program.body[0].expression; - _index.default.removeProperties(replacement); + _index.default.removeProperties(expressionAST); - return this.replaceWith(replacement); + return this.replaceWith(expressionAST); } -function replaceWith(replacement) { +function replaceWith(replacementPath) { this.resync(); if (this.removed) { throw new Error("You can't replace this node, we've already removed it"); } - if (replacement instanceof _index2.default) { - replacement = replacement.node; - } + let replacement = replacementPath instanceof _index2.default ? replacementPath.node : replacementPath; if (!replacement) { throw new Error("You passed `path.replaceWith()` a falsy node, use `path.remove()` instead"); diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js index b38b165d56754e..cdc09eee3f8c01 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js @@ -38,9 +38,11 @@ const { isMethod, isModuleDeclaration, isModuleSpecifier, + isNullLiteral, isObjectExpression, isProperty, isPureish, + isRegExpLiteral, isSuper, isTaggedTemplateExpression, isTemplateLiteral, @@ -75,7 +77,7 @@ function gatherNodeParts(node, parts) { } } else if (isModuleSpecifier(node)) { gatherNodeParts(node.local, parts); - } else if (isLiteral(node)) { + } else if (isLiteral(node) && !isNullLiteral(node) && !isRegExpLiteral(node) && !isTemplateLiteral(node)) { parts.push(node.value); } @@ -185,7 +187,7 @@ function gatherNodeParts(node, parts) { break; case "JSXOpeningElement": - parts.push(node.name); + gatherNodeParts(node.name, parts); break; case "JSXFragment": diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/lib/renamer.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/lib/renamer.js index dffc2909c06cd7..0b34e8d2c81211 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/lib/renamer.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/lib/renamer.js @@ -9,17 +9,10 @@ var _binding = require("../binding"); var _helperSplitExportDeclaration = require("@babel/helper-split-export-declaration"); -var _t = require("@babel/types"); +var t = require("@babel/types"); var _helperEnvironmentVisitor = require("@babel/helper-environment-visitor"); -const { - assignmentExpression, - identifier, - toExpression, - variableDeclaration, - variableDeclarator -} = _t; const renameVisitor = { ReferencedIdentifier({ node @@ -64,7 +57,17 @@ class Renamer { return; } - if (maybeExportDeclar.isExportDefaultDeclaration() && !maybeExportDeclar.get("declaration").node.id) { + if (maybeExportDeclar.isExportDefaultDeclaration()) { + const { + declaration + } = maybeExportDeclar.node; + + if (t.isDeclaration(declaration) && !declaration.id) { + return; + } + } + + if (maybeExportDeclar.isExportAllDeclaration()) { return; } @@ -72,23 +75,11 @@ class Renamer { } maybeConvertFromClassFunctionDeclaration(path) { - return; - if (!path.isFunctionDeclaration() && !path.isClassDeclaration()) return; - if (this.binding.kind !== "hoisted") return; - path.node.id = identifier(this.oldName); - path.node._blockHoist = 3; - path.replaceWith(variableDeclaration("let", [variableDeclarator(identifier(this.newName), toExpression(path.node))])); + return path; } maybeConvertFromClassFunctionExpression(path) { - return; - if (!path.isFunctionExpression() && !path.isClassExpression()) return; - if (this.binding.kind !== "local") return; - path.node.id = identifier(this.oldName); - this.binding.scope.parent.push({ - id: identifier(this.newName) - }); - path.replaceWith(assignmentExpression("=", identifier(this.newName), path.node)); + return path; } rename(block) { @@ -128,8 +119,8 @@ class Renamer { } if (parentDeclar) { - this.maybeConvertFromClassFunctionDeclaration(parentDeclar); - this.maybeConvertFromClassFunctionExpression(parentDeclar); + this.maybeConvertFromClassFunctionDeclaration(path); + this.maybeConvertFromClassFunctionExpression(path); } } 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 e874255cc3adb6..fdcb80c8d641a3 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.18.5", + "version": "7.18.6", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-traverse", @@ -16,21 +16,22 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.18.2", - "@babel/helper-environment-visitor": "^7.18.2", - "@babel/helper-function-name": "^7.17.9", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.18.5", - "@babel/types": "^7.18.4", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6", "debug": "^4.1.0", "globals": "^11.1.0" }, "devDependencies": { - "@babel/helper-plugin-test-runner": "^7.16.7" + "@babel/helper-plugin-test-runner": "^7.18.6" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/asserts.js b/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/asserts.js index f10b33eede2389..20bb24c632a2aa 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/asserts.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/asserts.js @@ -1,4 +1,4 @@ -import t from "@babel/types"; +import * as t from "@babel/types"; export default function generateAsserts() { let output = `/* diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/validators.js b/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/validators.js index f0e4e239d72c6b..3a2dbe29dae04f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/validators.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/validators.js @@ -1,5 +1,5 @@ -import t from "@babel/types"; -import virtualTypes from "../../lib/path/lib/virtual-types.js"; +import * as t from "@babel/types"; +import * as virtualTypes from "../../lib/path/lib/virtual-types.js"; export default function generateValidators() { let output = `/* @@ -18,6 +18,9 @@ export interface NodePathValidators { } for (const type of Object.keys(virtualTypes)) { + // TODO: Remove this check once we stop compiling to CJS + if (type === "default" || type === "__esModule") continue; + const { types } = virtualTypes[type]; if (type[0] === "_") continue; if (t.NODE_FIELDS[type] || t.FLIPPED_ALIAS_KEYS[type]) { diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/virtual-types.js b/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/virtual-types.js index 6d55f54caaf90a..ff873f0203c594 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/virtual-types.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/scripts/generators/virtual-types.js @@ -1,4 +1,4 @@ -import virtualTypes from "../../lib/path/lib/virtual-types.js"; +import * as virtualTypes from "../../lib/path/lib/virtual-types.js"; export default function generateValidators() { let output = `/* @@ -11,6 +11,9 @@ export interface VirtualTypeAliases { `; for (const type of Object.keys(virtualTypes)) { + // TODO: Remove this check once we stop compiling to CJS + if (type === "default" || type === "__esModule") continue; + output += ` ${type}: ${(virtualTypes[type].types || ["Node"]) .map(t => `t.${t}`) .join(" | ")};`; diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/converters/Scope.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/converters/Scope.js deleted file mode 100644 index e69de29bb2d1d6..00000000000000 diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/converters/ensureBlock.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/converters/ensureBlock.js index 56fdf1fdb4367d..ceeac235e53a17 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/converters/ensureBlock.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/converters/ensureBlock.js @@ -8,5 +8,7 @@ exports.default = ensureBlock; var _toBlock = require("./toBlock"); function ensureBlock(node, key = "body") { - return node[key] = (0, _toBlock.default)(node[key], node); + const result = (0, _toBlock.default)(node[key], node); + node[key] = result; + return result; } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js index 285fcfeffabe04..7bc54f722dd058 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js @@ -63,13 +63,12 @@ defineType("BinaryExpression", { validate: function () { const expression = (0, _utils.assertNodeType)("Expression"); const inOp = (0, _utils.assertNodeType)("Expression", "PrivateName"); - - const validator = function (node, key, val) { + const validator = Object.assign(function (node, key, val) { const validator = node.operator === "in" ? inOp : expression; validator(node, key, val); - }; - - validator.oneOfNodeTypes = ["Expression", "PrivateName"]; + }, { + oneOfNodeTypes: ["Expression", "PrivateName"] + }); return validator; }() }, @@ -632,13 +631,12 @@ defineType("ObjectProperty", { validate: function () { const normal = (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "DecimalLiteral", "PrivateName"); const computed = (0, _utils.assertNodeType)("Expression"); - - const validator = function (node, key, val) { + const validator = Object.assign(function (node, key, val) { const validator = node.computed ? computed : normal; validator(node, key, val); - }; - - validator.oneOfNodeTypes = ["Expression", "Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "DecimalLiteral", "PrivateName"]; + }, { + oneOfNodeTypes: ["Expression", "Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "DecimalLiteral", "PrivateName"] + }); return validator; }() }, @@ -701,7 +699,7 @@ defineType("RestElement", { if (!match) throw new Error("Internal Babel error: malformed key."); const [, listKey, index] = match; - if (parent[listKey].length > index + 1) { + if (parent[listKey].length > +index + 1) { throw new TypeError(`RestElement must be last element of ${listKey}`); } } @@ -1472,13 +1470,12 @@ defineType("OptionalMemberExpression", { validate: function () { const normal = (0, _utils.assertNodeType)("Identifier"); const computed = (0, _utils.assertNodeType)("Expression"); - - const validator = function (node, key, val) { + const validator = Object.assign(function (node, key, val) { const validator = node.computed ? computed : normal; validator(node, key, val); - }; - - validator.oneOfNodeTypes = ["Expression", "Identifier"]; + }, { + oneOfNodeTypes: ["Expression", "Identifier"] + }); return validator; }() }, diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/flow.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/flow.js index 5bf3b1fb8368eb..832763c4ffba8c 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/flow.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/flow.js @@ -4,14 +4,14 @@ var _utils = require("./utils"); const defineType = (0, _utils.defineAliasedType)("Flow"); -const defineInterfaceishType = (name, typeParameterType = "TypeParameterDeclaration") => { +const defineInterfaceishType = name => { defineType(name, { builder: ["id", "typeParameters", "extends", "body"], visitor: ["id", "typeParameters", "extends", "mixins", "implements", "body"], aliases: ["FlowDeclaration", "Statement", "Declaration"], fields: { id: (0, _utils.validateType)("Identifier"), - typeParameters: (0, _utils.validateOptionalType)(typeParameterType), + typeParameters: (0, _utils.validateOptionalType)("TypeParameterDeclaration"), extends: (0, _utils.validateOptional)((0, _utils.arrayOfType)("InterfaceExtends")), mixins: (0, _utils.validateOptional)((0, _utils.arrayOfType)("InterfaceExtends")), implements: (0, _utils.validateOptional)((0, _utils.arrayOfType)("ClassImplements")), diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/typescript.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/typescript.js index 38dbbe12a6d429..d7bbd60e2d6e8d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/typescript.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/typescript.js @@ -261,9 +261,9 @@ defineType("TSMappedType", { aliases: ["TSType"], visitor: ["typeParameter", "typeAnnotation", "nameType"], fields: { - readonly: (0, _utils.validateOptional)(bool), + readonly: (0, _utils.validateOptional)((0, _utils.assertOneOf)(true, false, "+", "-")), typeParameter: (0, _utils.validateType)("TSTypeParameter"), - optional: (0, _utils.validateOptional)(bool), + optional: (0, _utils.validateOptional)((0, _utils.assertOneOf)(true, false, "+", "-")), typeAnnotation: (0, _utils.validateOptionalType)("TSType"), nameType: (0, _utils.validateOptionalType)("TSType") } diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow b/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow index 9ba004a71a5264..0e394faa6ba1dd 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow @@ -1471,8 +1471,8 @@ declare class BabelNodeTSMappedType extends BabelNode { typeParameter: BabelNodeTSTypeParameter; typeAnnotation?: BabelNodeTSType; nameType?: BabelNodeTSType; - optional?: boolean; - readonly?: boolean; + optional?: true | false | "+" | "-"; + readonly?: true | false | "+" | "-"; } declare class BabelNodeTSLiteralType extends BabelNode { diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/inherits.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/inherits.js index 8701897d0e21cd..ca71e96ba2fa27 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/inherits.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/inherits.js @@ -19,7 +19,9 @@ function inherits(child, parent) { } for (const key of Object.keys(parent)) { - if (key[0] === "_" && key !== "__clone") child[key] = parent[key]; + if (key[0] === "_" && key !== "__clone") { + child[key] = parent[key]; + } } for (const key of _constants.INHERIT_KEYS.force) { diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/removeProperties.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/removeProperties.js index f9cf8e6065daa1..cff92aa4787a04 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/removeProperties.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/modifications/removeProperties.js @@ -8,8 +8,7 @@ exports.default = removeProperties; var _constants = require("../constants"); const CLEAR_KEYS = ["tokens", "start", "end", "loc", "raw", "rawValue"]; - -const CLEAR_KEYS_PLUS_COMMENTS = _constants.COMMENT_KEYS.concat(["comments"]).concat(CLEAR_KEYS); +const CLEAR_KEYS_PLUS_COMMENTS = [..._constants.COMMENT_KEYS, "comments", ...CLEAR_KEYS]; function removeProperties(node, opts = {}) { const map = opts.preserveComments ? CLEAR_KEYS : CLEAR_KEYS_PLUS_COMMENTS; diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js index 4daaf8bf0fe6e7..d111f5f7e42c8c 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js @@ -8,7 +8,7 @@ exports.default = getBindingIdentifiers; var _generated = require("../validators/generated"); function getBindingIdentifiers(node, duplicates, outerOnly) { - let search = [].concat(node); + const search = [].concat(node); const ids = Object.create(null); while (search.length) { @@ -50,9 +50,10 @@ function getBindingIdentifiers(node, duplicates, outerOnly) { if (keys) { for (let i = 0; i < keys.length; i++) { const key = keys[i]; + const nodes = id[key]; - if (id[key]) { - search = search.concat(id[key]); + if (nodes) { + Array.isArray(nodes) ? search.push(...nodes) : search.push(nodes); } } } diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/validators/isNodesEquivalent.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/validators/isNodesEquivalent.js index f829834e91084c..93fee3cc9a75ea 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/validators/isNodesEquivalent.js @@ -20,27 +20,30 @@ function isNodesEquivalent(a, b) { const visitorKeys = _definitions.VISITOR_KEYS[a.type]; for (const field of fields) { - if (typeof a[field] !== typeof b[field]) { + const val_a = a[field]; + const val_b = b[field]; + + if (typeof val_a !== typeof val_b) { return false; } - if (a[field] == null && b[field] == null) { + if (val_a == null && val_b == null) { continue; - } else if (a[field] == null || b[field] == null) { + } else if (val_a == null || val_b == null) { return false; } - if (Array.isArray(a[field])) { - if (!Array.isArray(b[field])) { + if (Array.isArray(val_a)) { + if (!Array.isArray(val_b)) { return false; } - if (a[field].length !== b[field].length) { + if (val_a.length !== val_b.length) { return false; } - for (let i = 0; i < a[field].length; i++) { - if (!isNodesEquivalent(a[field][i], b[field][i])) { + for (let i = 0; i < val_a.length; i++) { + if (!isNodesEquivalent(val_a[i], val_b[i])) { return false; } } @@ -48,9 +51,9 @@ function isNodesEquivalent(a, b) { continue; } - if (typeof a[field] === "object" && !(visitorKeys != null && visitorKeys.includes(field))) { - for (const key of Object.keys(a[field])) { - if (a[field][key] !== b[field][key]) { + if (typeof val_a === "object" && !(visitorKeys != null && visitorKeys.includes(field))) { + for (const key of Object.keys(val_a)) { + if (val_a[key] !== val_b[key]) { return false; } } @@ -58,7 +61,7 @@ function isNodesEquivalent(a, b) { continue; } - if (!isNodesEquivalent(a[field], b[field])) { + if (!isNodesEquivalent(val_a, val_b)) { return false; } } 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 3fbb85f04afd7d..6a1e5808dd5cdc 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.18.4", + "version": "7.18.7", "description": "Babel Types is a Lodash-esque utility library for AST nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-types", @@ -24,16 +24,17 @@ } }, "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", + "@babel/helper-validator-identifier": "^7.18.6", "to-fast-properties": "^2.0.0" }, "devDependencies": { - "@babel/generator": "^7.18.2", - "@babel/parser": "^7.18.4", + "@babel/generator": "^7.18.7", + "@babel/parser": "^7.18.6", "chalk": "^4.1.0", "glob": "^7.1.7" }, "engines": { "node": ">=6.9.0" - } + }, + "type": "commonjs" } \ No newline at end of file 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 bdfd94857fcfbc..1d862e417601df 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,4 +1,4 @@ -import definitions from "../../lib/definitions/index.js"; +import * as definitions from "../../lib/definitions/index.js"; function addAssertHelper(type) { const result = diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/ast-types.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/ast-types.js index 49b67bba38a8ed..901e3d2d56d340 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/ast-types.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/ast-types.js @@ -1,4 +1,4 @@ -import t from "../../lib/index.js"; +import * as t from "../../lib/index.js"; import stringifyValidator from "../utils/stringifyValidator.js"; export default function generateAstTypes() { @@ -7,9 +7,11 @@ export default function generateAstTypes() { interface BaseComment { value: string; - start: number; - end: number; - loc: SourceLocation; + start?: number; + end?: number; + loc?: SourceLocation; + // generator will skip the comment if ignore is true + ignore?: boolean; type: "CommentBlock" | "CommentLine"; } @@ -37,9 +39,9 @@ export interface SourceLocation { interface BaseNode { type: Node["type"]; - leadingComments?: ReadonlyArray | null; - innerComments?: ReadonlyArray | null; - trailingComments?: ReadonlyArray | null; + leadingComments?: Comment[] | null; + innerComments?: Comment[] | null; + trailingComments?: Comment[] | null; start?: number | null; end?: number | null; loc?: SourceLocation | null; 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 0576b8b72ecaf5..46566f58c4c667 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,5 @@ -import t from "../../lib/index.js"; -import definitions from "../../lib/definitions/index.js"; +import * as t from "../../lib/index.js"; +import * as definitions from "../../lib/definitions/index.js"; import formatBuilderName from "../utils/formatBuilderName.js"; import lowerFirst from "../utils/lowerFirst.js"; import stringifyValidator from "../utils/stringifyValidator.js"; 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 68abdbd837fbea..65b7a905d77eab 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 definitions from "../../lib/definitions/index.js"; +import * as definitions from "../../lib/definitions/index.js"; export default function generateConstants() { let output = `/* diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/docs.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/docs.js index eda0feda03e18d..528ac0b4f858d2 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/docs.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/docs.js @@ -2,7 +2,7 @@ import util from "util"; import stringifyValidator from "../utils/stringifyValidator.js"; import toFunctionName from "../utils/toFunctionName.js"; -import t from "../../lib/index.js"; +import * as t from "../../lib/index.js"; const readme = [ `--- diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/flow.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/flow.js index 7fabcc67c52efd..06cd388cea91e6 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/flow.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/flow.js @@ -1,4 +1,4 @@ -import t from "../../lib/index.js"; +import * as t from "../../lib/index.js"; import stringifyValidator from "../utils/stringifyValidator.js"; import toFunctionName from "../utils/toFunctionName.js"; diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/typescript-legacy.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/typescript-legacy.js index 40da48f4e7d5fe..7701047158a833 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/typescript-legacy.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/typescript-legacy.js @@ -1,4 +1,4 @@ -import t from "../../lib/index.js"; +import * as t from "../../lib/index.js"; import stringifyValidator from "../utils/stringifyValidator.js"; import toFunctionName from "../utils/toFunctionName.js"; 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 acd6da65750410..85c8b4906c8d1c 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,4 @@ -import definitions from "../../lib/definitions/index.js"; +import * as definitions from "../../lib/definitions/index.js"; const has = Function.call.bind(Object.prototype.hasOwnProperty); diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/resolve-uri/package.json b/tools/node_modules/eslint/node_modules/@jridgewell/resolve-uri/package.json index 00cf2a47e73881..13391f40145932 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/resolve-uri/package.json +++ b/tools/node_modules/eslint/node_modules/@jridgewell/resolve-uri/package.json @@ -1,6 +1,6 @@ { "name": "@jridgewell/resolve-uri", - "version": "3.0.7", + "version": "3.0.8", "description": "Resolve a URI relative to an optional base URI", "keywords": [ "resolve", @@ -15,15 +15,19 @@ "module": "dist/resolve-uri.mjs", "typings": "dist/types/resolve-uri.d.ts", "exports": { - ".": { - "types": "./dist/types/resolve-uri.d.ts", - "browser": "./dist/resolve-uri.umd.js", - "require": "./dist/resolve-uri.umd.js", - "import": "./dist/resolve-uri.mjs" - }, + ".": [ + { + "types": "./dist/types/resolve-uri.d.ts", + "browser": "./dist/resolve-uri.umd.js", + "require": "./dist/resolve-uri.umd.js", + "import": "./dist/resolve-uri.mjs" + }, + "./dist/resolve-uri.umd.js" + ], "./package.json": "./package.json" }, "files": [ + "src", "dist" ], "engines": { diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/set-array/package.json b/tools/node_modules/eslint/node_modules/@jridgewell/set-array/package.json index 0f0e5b59a2ae75..aec4ee029ef792 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/set-array/package.json +++ b/tools/node_modules/eslint/node_modules/@jridgewell/set-array/package.json @@ -1,6 +1,6 @@ { "name": "@jridgewell/set-array", - "version": "1.1.1", + "version": "1.1.2", "description": "Like a Set, but provides the index of the `key` in the backing array", "keywords": [], "author": "Justin Ridgewell ", @@ -10,16 +10,20 @@ "module": "dist/set-array.mjs", "typings": "dist/types/set-array.d.ts", "exports": { - ".": { - "types": "./dist/types/set-array.d.ts", - "browser": "./dist/set-array.umd.js", - "require": "./dist/set-array.umd.js", - "import": "./dist/set-array.mjs" - }, + ".": [ + { + "types": "./dist/types/set-array.d.ts", + "browser": "./dist/set-array.umd.js", + "require": "./dist/set-array.umd.js", + "import": "./dist/set-array.mjs" + }, + "./dist/set-array.umd.js" + ], "./package.json": "./package.json" }, "files": [ - "dist" + "dist", + "src" ], "engines": { "node": ">=6.0.0" diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/sourcemap-codec/package.json b/tools/node_modules/eslint/node_modules/@jridgewell/sourcemap-codec/package.json index f110ec0648cdfa..59450728782dbd 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/sourcemap-codec/package.json +++ b/tools/node_modules/eslint/node_modules/@jridgewell/sourcemap-codec/package.json @@ -1,6 +1,6 @@ { "name": "@jridgewell/sourcemap-codec", - "version": "1.4.13", + "version": "1.4.14", "description": "Encode/decode sourcemap mappings", "keywords": [ "sourcemap", @@ -10,15 +10,19 @@ "module": "dist/sourcemap-codec.mjs", "typings": "dist/types/sourcemap-codec.d.ts", "files": [ - "dist" + "dist", + "src" ], "exports": { - ".": { - "types": "./dist/types/sourcemap-codec.d.ts", - "browser": "./dist/sourcemap-codec.umd.js", - "import": "./dist/sourcemap-codec.mjs", - "require": "./dist/sourcemap-codec.umd.js" - }, + ".": [ + { + "types": "./dist/types/sourcemap-codec.d.ts", + "browser": "./dist/sourcemap-codec.umd.js", + "import": "./dist/sourcemap-codec.mjs", + "require": "./dist/sourcemap-codec.umd.js" + }, + "./dist/sourcemap-codec.umd.js" + ], "./package.json": "./package.json" }, "scripts": { 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 76a17b80b0fcf9..b8429300b191f0 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.13", + "version": "0.3.14", "description": "Trace the original position through a source map", "keywords": [ "source", @@ -10,15 +10,19 @@ "module": "dist/trace-mapping.mjs", "typings": "dist/types/trace-mapping.d.ts", "files": [ - "dist" + "dist", + "src" ], "exports": { - ".": { - "types": "./dist/types/trace-mapping.d.ts", - "browser": "./dist/trace-mapping.umd.js", - "require": "./dist/trace-mapping.umd.js", - "import": "./dist/trace-mapping.mjs" - }, + ".": [ + { + "types": "./dist/types/trace-mapping.d.ts", + "browser": "./dist/trace-mapping.umd.js", + "require": "./dist/trace-mapping.umd.js", + "import": "./dist/trace-mapping.mjs" + }, + "./dist/trace-mapping.umd.js" + ], "./package.json": "./package.json" }, "author": "Justin Ridgewell ", diff --git a/tools/node_modules/eslint/node_modules/browserslist/cli.js b/tools/node_modules/eslint/node_modules/browserslist/cli.js index e4a707656de747..c54aa9879288e9 100755 --- a/tools/node_modules/eslint/node_modules/browserslist/cli.js +++ b/tools/node_modules/eslint/node_modules/browserslist/cli.js @@ -1,9 +1,9 @@ #!/usr/bin/env node +var updateDb = require('update-browserslist-db') var fs = require('fs') var browserslist = require('./') -var updateDb = require('./update-db') var pkg = require('./package.json') var args = process.argv.slice(2) @@ -20,8 +20,7 @@ var USAGE = ' npx browserslist --env="environment name defined in config"\n' + ' npx browserslist --stats="path/to/browserlist/stats/file"\n' + ' npx browserslist --mobile-to-desktop\n' + - ' npx browserslist --ignore-unknown-versions\n' + - ' npx browserslist --update-db' + ' npx browserslist --ignore-unknown-versions\n' function isArg(arg) { return args.some(function (str) { @@ -93,7 +92,7 @@ if (isArg('--help') || isArg('-h')) { } catch (e) { if (e.name === 'BrowserslistError') { error(e.message) - } else /* c8 ignore start */ { + } /* c8 ignore start */ else { throw e } /* c8 ignore end */ } diff --git a/tools/node_modules/eslint/node_modules/browserslist/index.js b/tools/node_modules/eslint/node_modules/browserslist/index.js index e28d5e2154adef..70096ca15b093a 100644 --- a/tools/node_modules/eslint/node_modules/browserslist/index.js +++ b/tools/node_modules/eslint/node_modules/browserslist/index.js @@ -5,13 +5,13 @@ var path = require('path') var e2c = require('electron-to-chromium/versions') var BrowserslistError = require('./error') +var parse = require('./parse') var env = require('./node') // Will load browser.js in webpack var YEAR = 365.259641 * 24 * 60 * 60 * 1000 var ANDROID_EVERGREEN_FIRST = 37 -var QUERY_OR = 1 -var QUERY_AND = 2 +// Helpers function isVersionsMatch(versionA, versionB) { return (versionA + '.').indexOf(versionB + '.') === 0 @@ -71,8 +71,6 @@ function uniq(array) { return filtered } -// Helpers - function fillUsage(result, name, data) { for (var i in data) { result[name + ' ' + i] = data[i] @@ -302,117 +300,62 @@ function filterAndroid(list, versions, context) { } } -/** - * Resolves queries into a browser list. - * @param {string|string[]} queries Queries to combine. - * Either an array of queries or a long string of queries. - * @param {object} [context] Optional arguments to - * the select function in `queries`. - * @returns {string[]} A list of browsers - */ function resolve(queries, context) { - if (Array.isArray(queries)) { - queries = flatten(queries.map(parse)) - } else { - queries = parse(queries) - } - - return queries.reduce(function (result, query, index) { - var selection = query.queryString - - var isExclude = selection.indexOf('not ') === 0 - if (isExclude) { - if (index === 0) { - throw new BrowserslistError( - 'Write any browsers query (for instance, `defaults`) ' + - 'before `' + - selection + - '`' - ) - } - selection = selection.slice(4) + return parse(QUERIES, queries).reduce(function (result, node, index) { + if (node.not && index === 0) { + throw new BrowserslistError( + 'Write any browsers query (for instance, `defaults`) ' + + 'before `' + + node.query + + '`' + ) } + var type = QUERIES[node.type] + var array = type.select.call(browserslist, context, node).map(function (j) { + var parts = j.split(' ') + if (parts[1] === '0') { + return parts[0] + ' ' + byName(parts[0], context).versions[0] + } else { + return j + } + }) - for (var i = 0; i < QUERIES.length; i++) { - var type = QUERIES[i] - var match = selection.match(type.regexp) - if (match) { - var args = [context].concat(match.slice(1)) - var array = type.select.apply(browserslist, args).map(function (j) { - var parts = j.split(' ') - if (parts[1] === '0') { - return parts[0] + ' ' + byName(parts[0], context).versions[0] - } else { - return j - } + if (node.compose === 'and') { + if (node.not) { + return result.filter(function (j) { + return array.indexOf(j) === -1 + }) + } else { + return result.filter(function (j) { + return array.indexOf(j) !== -1 + }) + } + } else { + if (node.not) { + var filter = {} + array.forEach(function (j) { + filter[j] = true + }) + return result.filter(function (j) { + return !filter[j] }) - - switch (query.type) { - case QUERY_AND: - if (isExclude) { - return result.filter(function (j) { - return array.indexOf(j) === -1 - }) - } else { - return result.filter(function (j) { - return array.indexOf(j) !== -1 - }) - } - case QUERY_OR: - default: - if (isExclude) { - var filter = {} - array.forEach(function (j) { - filter[j] = true - }) - return result.filter(function (j) { - return !filter[j] - }) - } - return result.concat(array) - } } + return result.concat(array) } - - throw unknownQuery(selection) }, []) } -var cache = {} - -/** - * Return array of browsers by selection queries. - * - * @param {(string|string[])} [queries=browserslist.defaults] Browser queries. - * @param {object} [opts] Options. - * @param {string} [opts.path="."] Path to processed file. - * It will be used to find config files. - * @param {string} [opts.env="production"] Processing environment. - * It will be used to take right - * queries from config file. - * @param {string} [opts.config] Path to config file with queries. - * @param {object} [opts.stats] Custom browser usage statistics - * for "> 1% in my stats" query. - * @param {boolean} [opts.ignoreUnknownVersions=false] Do not throw on unknown - * version in direct query. - * @param {boolean} [opts.dangerousExtend] Disable security checks - * for extend query. - * @param {boolean} [opts.throwOnMissing] Throw error on missing env. - * @param {boolean} [opts.mobileToDesktop] Alias mobile browsers to the desktop - * version when Can I Use doesn't have - * data about the specified version. - * @returns {string[]} Array with browser names in Can I Use. - * - * @example - * browserslist('IE >= 10, IE 8') //=> ['ie 11', 'ie 10', 'ie 8'] - */ -function browserslist(queries, opts) { +function prepareOpts(opts) { if (typeof opts === 'undefined') opts = {} if (typeof opts.path === 'undefined') { opts.path = path.resolve ? path.resolve('.') : '.' } + return opts +} + +function prepareQueries(queries, opts) { if (typeof queries === 'undefined' || queries === null) { var config = browserslist.loadConfig(opts) if (config) { @@ -422,11 +365,23 @@ function browserslist(queries, opts) { } } + return queries +} + +function checkQueries(queries) { if (!(typeof queries === 'string' || Array.isArray(queries))) { throw new BrowserslistError( 'Browser queries must be an array or string. Got ' + typeof queries + '.' ) } +} + +var cache = {} + +function browserslist(queries, opts) { + opts = prepareOpts(opts) + queries = prepareQueries(queries, opts) + checkQueries(queries) var context = { ignoreUnknownVersions: opts.ignoreUnknownVersions, @@ -468,48 +423,11 @@ function browserslist(queries, opts) { return result } -function parse(queries) { - var qs = [] - do { - queries = doMatch(queries, qs) - } while (queries) - return qs -} - -function doMatch(string, qs) { - var or = /^(?:,\s*|\s+or\s+)(.*)/i - var and = /^\s+and\s+(.*)/i - - return find(string, function (parsed, n, max) { - if (and.test(parsed)) { - qs.unshift({ type: QUERY_AND, queryString: parsed.match(and)[1] }) - return true - } else if (or.test(parsed)) { - qs.unshift({ type: QUERY_OR, queryString: parsed.match(or)[1] }) - return true - } else if (n === max) { - qs.unshift({ type: QUERY_OR, queryString: parsed.trim() }) - return true - } - return false - }) -} - -function find(string, predicate) { - for (var n = 1, max = string.length; n <= max; n++) { - var parsed = string.substr(-n, n) - if (predicate(parsed, n, max)) { - return string.slice(0, -n) - } - } - return '' -} - -function flatten(array) { - if (!Array.isArray(array)) return [array] - return array.reduce(function (a, b) { - return a.concat(flatten(b)) - }, []) +browserslist.parse = function (queries, opts) { + opts = prepareOpts(opts) + queries = prepareQueries(queries, opts) + checkQueries(queries) + return parse(QUERIES, queries) } // Will be filled by Can I Use data below @@ -558,20 +476,6 @@ browserslist.readConfig = env.readConfig browserslist.findConfig = env.findConfig browserslist.loadConfig = env.loadConfig -/** - * Return browsers market coverage. - * - * @param {string[]} browsers Browsers names in Can I Use. - * @param {string|object} [stats="global"] Which statistics should be used. - * Country code or custom statistics. - * Pass `"my stats"` to load statistics - * from Browserslist files. - * - * @return {number} Total market coverage for all selected browsers. - * - * @example - * browserslist.coverage(browserslist('> 1% in US'), 'US') //=> 83.1 - */ browserslist.coverage = function (browsers, stats) { var data if (typeof stats === 'undefined') { @@ -616,42 +520,44 @@ browserslist.coverage = function (browsers, stats) { }, 0) } -function nodeQuery(context, version) { +function nodeQuery(context, node) { var matched = browserslist.nodeVersions.filter(function (i) { - return isVersionsMatch(i, version) + return isVersionsMatch(i, node.version) }) if (matched.length === 0) { if (context.ignoreUnknownVersions) { return [] } else { - throw new BrowserslistError('Unknown version ' + version + ' of Node.js') + throw new BrowserslistError( + 'Unknown version ' + node.version + ' of Node.js' + ) } } return ['node ' + matched[matched.length - 1]] } -function sinceQuery(context, year, month, date) { - year = parseInt(year) - month = parseInt(month || '01') - 1 - date = parseInt(date || '01') - return filterByYear(Date.UTC(year, month, date, 0, 0, 0), context) +function sinceQuery(context, node) { + var year = parseInt(node.year) + var month = parseInt(node.month || '01') - 1 + var day = parseInt(node.day || '01') + return filterByYear(Date.UTC(year, month, day, 0, 0, 0), context) } -function coverQuery(context, coverage, statMode) { - coverage = parseFloat(coverage) +function coverQuery(context, node) { + var coverage = parseFloat(node.coverage) var usage = browserslist.usage.global - if (statMode) { - if (statMode.match(/^my\s+stats$/i)) { + if (node.place) { + if (node.place.match(/^my\s+stats$/i)) { if (!context.customUsage) { throw new BrowserslistError('Custom usage statistics was not provided') } usage = context.customUsage } else { var place - if (statMode.length === 2) { - place = statMode.toUpperCase() + if (node.place.length === 2) { + place = node.place.toUpperCase() } else { - place = statMode.toLowerCase() + place = node.place.toLowerCase() } env.loadCountry(browserslist.usage, place, browserslist.data) usage = browserslist.usage[place] @@ -673,98 +579,109 @@ function coverQuery(context, coverage, statMode) { return result } -var QUERIES = [ - { +var QUERIES = { + last_major_versions: { + matches: ['versions'], regexp: /^last\s+(\d+)\s+major\s+versions?$/i, - select: function (context, versions) { + select: function (context, node) { return Object.keys(agents).reduce(function (selected, name) { var data = byName(name, context) if (!data) return selected - var list = getMajorVersions(data.released, versions) + var list = getMajorVersions(data.released, node.versions) list = list.map(nameMapper(data.name)) if (data.name === 'android') { - list = filterAndroid(list, versions, context) + list = filterAndroid(list, node.versions, context) } return selected.concat(list) }, []) } }, - { + last_versions: { + matches: ['versions'], regexp: /^last\s+(\d+)\s+versions?$/i, - select: function (context, versions) { + select: function (context, node) { return Object.keys(agents).reduce(function (selected, name) { var data = byName(name, context) if (!data) return selected - var list = data.released.slice(-versions) + var list = data.released.slice(-node.versions) list = list.map(nameMapper(data.name)) if (data.name === 'android') { - list = filterAndroid(list, versions, context) + list = filterAndroid(list, node.versions, context) } return selected.concat(list) }, []) } }, - { + last_electron_major_versions: { + matches: ['versions'], regexp: /^last\s+(\d+)\s+electron\s+major\s+versions?$/i, - select: function (context, versions) { - var validVersions = getMajorVersions(Object.keys(e2c), versions) + select: function (context, node) { + var validVersions = getMajorVersions(Object.keys(e2c), node.versions) return validVersions.map(function (i) { return 'chrome ' + e2c[i] }) } }, - { + last_node_major_versions: { + matches: ['versions'], regexp: /^last\s+(\d+)\s+node\s+major\s+versions?$/i, - select: function (context, versions) { - return getMajorVersions(browserslist.nodeVersions, versions).map( + select: function (context, node) { + return getMajorVersions(browserslist.nodeVersions, node.versions).map( function (version) { return 'node ' + version } ) } }, - { + last_browser_major_versions: { + matches: ['versions', 'browser'], regexp: /^last\s+(\d+)\s+(\w+)\s+major\s+versions?$/i, - select: function (context, versions, name) { - var data = checkName(name, context) - var validVersions = getMajorVersions(data.released, versions) + select: function (context, node) { + var data = checkName(node.browser, context) + var validVersions = getMajorVersions(data.released, node.versions) var list = validVersions.map(nameMapper(data.name)) if (data.name === 'android') { - list = filterAndroid(list, versions, context) + list = filterAndroid(list, node.versions, context) } return list } }, - { + last_electron_versions: { + matches: ['versions'], regexp: /^last\s+(\d+)\s+electron\s+versions?$/i, - select: function (context, versions) { + select: function (context, node) { return Object.keys(e2c) - .slice(-versions) + .slice(-node.versions) .map(function (i) { return 'chrome ' + e2c[i] }) } }, - { + last_node_versions: { + matches: ['versions'], regexp: /^last\s+(\d+)\s+node\s+versions?$/i, - select: function (context, versions) { - return browserslist.nodeVersions.slice(-versions).map(function (version) { - return 'node ' + version - }) + select: function (context, node) { + return browserslist.nodeVersions + .slice(-node.versions) + .map(function (version) { + return 'node ' + version + }) } }, - { + last_browser_versions: { + matches: ['versions', 'browser'], regexp: /^last\s+(\d+)\s+(\w+)\s+versions?$/i, - select: function (context, versions, name) { - var data = checkName(name, context) - var list = data.released.slice(-versions).map(nameMapper(data.name)) + select: function (context, node) { + var data = checkName(node.browser, context) + var list = data.released.slice(-node.versions).map(nameMapper(data.name)) if (data.name === 'android') { - list = filterAndroid(list, versions, context) + list = filterAndroid(list, node.versions, context) } return list } }, - { + unreleased_versions: { + matches: [], regexp: /^unreleased\s+versions$/i, select: function (context) { return Object.keys(agents).reduce(function (selected, name) { @@ -778,16 +695,18 @@ var QUERIES = [ }, []) } }, - { + unreleased_electron_versions: { + matches: [], regexp: /^unreleased\s+electron\s+versions?$/i, select: function () { return [] } }, - { + unreleased_browser_versions: { + matches: ['browser'], regexp: /^unreleased\s+(\w+)\s+versions?$/i, - select: function (context, name) { - var data = checkName(name, context) + select: function (context, node) { + var data = checkName(node.browser, context) return data.versions .filter(function (v) { return data.released.indexOf(v) === -1 @@ -795,39 +714,44 @@ var QUERIES = [ .map(nameMapper(data.name)) } }, - { + last_years: { + matches: ['years'], regexp: /^last\s+(\d*.?\d+)\s+years?$/i, - select: function (context, years) { - return filterByYear(Date.now() - YEAR * years, context) + select: function (context, node) { + return filterByYear(Date.now() - YEAR * node.years, context) } }, - { + since_y: { + matches: ['year'], regexp: /^since (\d+)$/i, select: sinceQuery }, - { + since_y_m: { + matches: ['year', 'month'], regexp: /^since (\d+)-(\d+)$/i, select: sinceQuery }, - { + since_y_m_d: { + matches: ['year', 'month', 'day'], regexp: /^since (\d+)-(\d+)-(\d+)$/i, select: sinceQuery }, - { + popularity: { + matches: ['sign', 'popularity'], regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%$/, - select: function (context, sign, popularity) { - popularity = parseFloat(popularity) + select: function (context, node) { + var popularity = parseFloat(node.popularity) var usage = browserslist.usage.global return Object.keys(usage).reduce(function (result, version) { - if (sign === '>') { + if (node.sign === '>') { if (usage[version] > popularity) { result.push(version) } - } else if (sign === '<') { + } else if (node.sign === '<') { if (usage[version] < popularity) { result.push(version) } - } else if (sign === '<=') { + } else if (node.sign === '<=') { if (usage[version] <= popularity) { result.push(version) } @@ -838,10 +762,11 @@ var QUERIES = [ }, []) } }, - { + popularity_in_my_stats: { + matches: ['sign', 'popularity'], regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+my\s+stats$/, - select: function (context, sign, popularity) { - popularity = parseFloat(popularity) + select: function (context, node) { + var popularity = parseFloat(node.popularity) if (!context.customUsage) { throw new BrowserslistError('Custom usage statistics was not provided') } @@ -852,15 +777,15 @@ var QUERIES = [ return result } - if (sign === '>') { + if (node.sign === '>') { if (percentage > popularity) { result.push(version) } - } else if (sign === '<') { + } else if (node.sign === '<') { if (percentage < popularity) { result.push(version) } - } else if (sign === '<=') { + } else if (node.sign === '<=') { if (percentage <= popularity) { result.push(version) } @@ -871,11 +796,12 @@ var QUERIES = [ }, []) } }, - { + popularity_in_config_stats: { + matches: ['sign', 'popularity', 'config'], regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+(\S+)\s+stats$/, - select: function (context, sign, popularity, name) { - popularity = parseFloat(popularity) - var stats = env.loadStat(context, name, browserslist.data) + select: function (context, node) { + var popularity = parseFloat(node.popularity) + var stats = env.loadStat(context, node.config, browserslist.data) if (stats) { context.customUsage = {} for (var browser in stats) { @@ -892,15 +818,15 @@ var QUERIES = [ return result } - if (sign === '>') { + if (node.sign === '>') { if (percentage > popularity) { result.push(version) } - } else if (sign === '<') { + } else if (node.sign === '<') { if (percentage < popularity) { result.push(version) } - } else if (sign === '<=') { + } else if (node.sign === '<=') { if (percentage <= popularity) { result.push(version) } @@ -911,10 +837,12 @@ var QUERIES = [ }, []) } }, - { + popularity_in_place: { + matches: ['sign', 'popularity', 'place'], regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+((alt-)?\w\w)$/, - select: function (context, sign, popularity, place) { - popularity = parseFloat(popularity) + select: function (context, node) { + var popularity = parseFloat(node.popularity) + var place = node.place if (place.length === 2) { place = place.toUpperCase() } else { @@ -928,15 +856,15 @@ var QUERIES = [ return result } - if (sign === '>') { + if (node.sign === '>') { if (percentage > popularity) { result.push(version) } - } else if (sign === '<') { + } else if (node.sign === '<') { if (percentage < popularity) { result.push(version) } - } else if (sign === '<=') { + } else if (node.sign === '<=') { if (percentage <= popularity) { result.push(version) } @@ -947,19 +875,22 @@ var QUERIES = [ }, []) } }, - { + cover: { + matches: ['coverage'], regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%$/i, select: coverQuery }, - { + cover_in: { + matches: ['coverage', 'place'], regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%\s+in\s+(my\s+stats|(alt-)?\w\w)$/i, select: coverQuery }, - { + supports: { + matches: ['feature'], regexp: /^supports\s+([\w-]+)$/, - select: function (context, feature) { - env.loadFeature(browserslist.cache, feature) - var features = browserslist.cache[feature] + select: function (context, node) { + env.loadFeature(browserslist.cache, node.feature) + var features = browserslist.cache[node.feature] return Object.keys(features).reduce(function (result, version) { var flags = features[version] if (flags.indexOf('y') >= 0 || flags.indexOf('a') >= 0) { @@ -969,19 +900,20 @@ var QUERIES = [ }, []) } }, - { + electron_range: { + matches: ['from', 'to'], regexp: /^electron\s+([\d.]+)\s*-\s*([\d.]+)$/i, - select: function (context, from, to) { - var fromToUse = normalizeElectron(from) - var toToUse = normalizeElectron(to) + select: function (context, node) { + var fromToUse = normalizeElectron(node.from) + var toToUse = normalizeElectron(node.to) + var from = parseFloat(node.from) + var to = parseFloat(node.to) if (!e2c[fromToUse]) { throw new BrowserslistError('Unknown version ' + from + ' of electron') } if (!e2c[toToUse]) { throw new BrowserslistError('Unknown version ' + to + ' of electron') } - from = parseFloat(from) - to = parseFloat(to) return Object.keys(e2c) .filter(function (i) { var parsed = parseFloat(i) @@ -992,23 +924,25 @@ var QUERIES = [ }) } }, - { + node_range: { + matches: ['from', 'to'], regexp: /^node\s+([\d.]+)\s*-\s*([\d.]+)$/i, - select: function (context, from, to) { + select: function (context, node) { return browserslist.nodeVersions - .filter(semverFilterLoose('>=', from)) - .filter(semverFilterLoose('<=', to)) + .filter(semverFilterLoose('>=', node.from)) + .filter(semverFilterLoose('<=', node.to)) .map(function (v) { return 'node ' + v }) } }, - { + browser_range: { + matches: ['browser', 'from', 'to'], regexp: /^(\w+)\s+([\d.]+)\s*-\s*([\d.]+)$/i, - select: function (context, name, from, to) { - var data = checkName(name, context) - from = parseFloat(normalizeVersion(data, from) || from) - to = parseFloat(normalizeVersion(data, to) || to) + select: function (context, node) { + var data = checkName(node.browser, context) + var from = parseFloat(normalizeVersion(data, node.from) || node.from) + var to = parseFloat(normalizeVersion(data, node.to) || node.to) function filter(v) { var parsed = parseFloat(v) return parsed >= from && parsed <= to @@ -1016,86 +950,96 @@ var QUERIES = [ return data.released.filter(filter).map(nameMapper(data.name)) } }, - { + electron_ray: { + matches: ['sign', 'version'], regexp: /^electron\s*(>=?|<=?)\s*([\d.]+)$/i, - select: function (context, sign, version) { - var versionToUse = normalizeElectron(version) + select: function (context, node) { + var versionToUse = normalizeElectron(node.version) return Object.keys(e2c) - .filter(generateFilter(sign, versionToUse)) + .filter(generateFilter(node.sign, versionToUse)) .map(function (i) { return 'chrome ' + e2c[i] }) } }, - { + node_ray: { + matches: ['sign', 'version'], regexp: /^node\s*(>=?|<=?)\s*([\d.]+)$/i, - select: function (context, sign, version) { + select: function (context, node) { return browserslist.nodeVersions - .filter(generateSemverFilter(sign, version)) + .filter(generateSemverFilter(node.sign, node.version)) .map(function (v) { return 'node ' + v }) } }, - { + browser_ray: { + matches: ['browser', 'sign', 'version'], regexp: /^(\w+)\s*(>=?|<=?)\s*([\d.]+)$/, - select: function (context, name, sign, version) { - var data = checkName(name, context) + select: function (context, node) { + var version = node.version + var data = checkName(node.browser, context) var alias = browserslist.versionAliases[data.name][version] - if (alias) { - version = alias - } + if (alias) version = alias return data.released - .filter(generateFilter(sign, version)) + .filter(generateFilter(node.sign, version)) .map(function (v) { return data.name + ' ' + v }) } }, - { + firefox_esr: { + matches: [], regexp: /^(firefox|ff|fx)\s+esr$/i, select: function () { return ['firefox 91'] } }, - { + opera_mini_all: { + matches: [], regexp: /(operamini|op_mini)\s+all/i, select: function () { return ['op_mini all'] } }, - { + electron_version: { + matches: ['version'], regexp: /^electron\s+([\d.]+)$/i, - select: function (context, version) { - var versionToUse = normalizeElectron(version) + select: function (context, node) { + var versionToUse = normalizeElectron(node.version) var chrome = e2c[versionToUse] if (!chrome) { throw new BrowserslistError( - 'Unknown version ' + version + ' of electron' + 'Unknown version ' + node.version + ' of electron' ) } return ['chrome ' + chrome] } }, - { + node_major_version: { + matches: ['version'], regexp: /^node\s+(\d+)$/i, select: nodeQuery }, - { + node_minor_version: { + matches: ['version'], regexp: /^node\s+(\d+\.\d+)$/i, select: nodeQuery }, - { + node_patch_version: { + matches: ['version'], regexp: /^node\s+(\d+\.\d+\.\d+)$/i, select: nodeQuery }, - { + current_node: { + matches: [], regexp: /^current\s+node$/i, select: function (context) { return [env.currentNode(resolve, context)] } }, - { + maintained_node: { + matches: [], regexp: /^maintained\s+node\s+versions$/i, select: function (context) { var now = Date.now() @@ -1113,23 +1057,27 @@ var QUERIES = [ return resolve(queries, context) } }, - { + phantomjs_1_9: { + matches: [], regexp: /^phantomjs\s+1.9$/i, select: function () { return ['safari 5'] } }, - { + phantomjs_2_1: { + matches: [], regexp: /^phantomjs\s+2.1$/i, select: function () { return ['safari 6'] } }, - { + browser_version: { + matches: ['browser', 'version'], regexp: /^(\w+)\s+(tp|[\d.]+)$/i, - select: function (context, name, version) { + select: function (context, node) { + var version = node.version if (/^tp$/i.test(version)) version = 'TP' - var data = checkName(name, context) + var data = checkName(node.browser, context) var alias = normalizeVersion(data, version) if (alias) { version = alias @@ -1146,37 +1094,41 @@ var QUERIES = [ return [] } else { throw new BrowserslistError( - 'Unknown version ' + version + ' of ' + name + 'Unknown version ' + version + ' of ' + node.browser ) } } return [data.name + ' ' + version] } }, - { + browserslist_config: { + matches: [], regexp: /^browserslist config$/i, select: function (context) { return browserslist(undefined, context) } }, - { + extends: { + matches: ['config'], regexp: /^extends (.+)$/i, - select: function (context, name) { - return resolve(env.loadQueries(context, name), context) + select: function (context, node) { + return resolve(env.loadQueries(context, node.config), context) } }, - { + defaults: { + matches: [], regexp: /^defaults$/i, select: function (context) { return resolve(browserslist.defaults, context) } }, - { + dead: { + matches: [], regexp: /^dead$/i, select: function (context) { var dead = [ 'Baidu >= 0', - 'ie <= 10', + 'ie <= 11', 'ie_mob <= 11', 'bb <= 10', 'op_mob <= 12.1', @@ -1185,19 +1137,20 @@ var QUERIES = [ return resolve(dead, context) } }, - { + unknown: { + matches: [], regexp: /^(\w+)$/i, - select: function (context, name) { - if (byName(name, context)) { + select: function (context, node) { + if (byName(node.query, context)) { throw new BrowserslistError( - 'Specify versions in Browserslist query for browser ' + name + 'Specify versions in Browserslist query for browser ' + node.query ) } else { - throw unknownQuery(name) + throw unknownQuery(node.query) } } } -] +} // Get and convert Can I Use data diff --git a/tools/node_modules/eslint/node_modules/browserslist/node.js b/tools/node_modules/eslint/node_modules/browserslist/node.js index 8eb6b650421ede..5db06a673fe900 100644 --- a/tools/node_modules/eslint/node_modules/browserslist/node.js +++ b/tools/node_modules/eslint/node_modules/browserslist/node.js @@ -94,7 +94,12 @@ function pickEnv(config, opts) { } function parsePackage(file) { - var config = JSON.parse(fs.readFileSync(file)) + var config = JSON.parse( + fs + .readFileSync(file) + .toString() + .replace(/^\uFEFF/m, '') + ) if (config.browserlist && !config.browserslist) { throw new BrowserslistError( '`browserlist` key instead of `browserslist` in ' + file @@ -380,9 +385,9 @@ module.exports = { if (latest !== 0 && latest < halfYearAgo) { console.warn( 'Browserslist: caniuse-lite is outdated. Please run:\n' + - ' npx browserslist@latest --update-db\n' + + ' npx update-browserslist-db@latest\n' + ' Why you should do it regularly: ' + - 'https://github.com/browserslist/browserslist#browsers-data-updating' + 'https://github.com/browserslist/update-db#readme' ) } }, diff --git a/tools/node_modules/eslint/node_modules/browserslist/package.json b/tools/node_modules/eslint/node_modules/browserslist/package.json index d0e1265a1d6fa8..0ba5111712fdeb 100644 --- a/tools/node_modules/eslint/node_modules/browserslist/package.json +++ b/tools/node_modules/eslint/node_modules/browserslist/package.json @@ -1,6 +1,6 @@ { "name": "browserslist", - "version": "4.20.4", + "version": "4.21.1", "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", "keywords": [ "caniuse", @@ -21,11 +21,10 @@ "license": "MIT", "repository": "browserslist/browserslist", "dependencies": { - "caniuse-lite": "^1.0.30001349", - "electron-to-chromium": "^1.4.147", - "escalade": "^3.1.1", + "caniuse-lite": "^1.0.30001359", + "electron-to-chromium": "^1.4.172", "node-releases": "^2.0.5", - "picocolors": "^1.0.0" + "update-browserslist-db": "^1.0.4" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" diff --git a/tools/node_modules/eslint/node_modules/browserslist/parse.js b/tools/node_modules/eslint/node_modules/browserslist/parse.js new file mode 100644 index 00000000000000..56b534ab4c9cd0 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/browserslist/parse.js @@ -0,0 +1,78 @@ +var AND_REGEXP = /^\s+and\s+(.*)/i +var OR_REGEXP = /^(?:,\s*|\s+or\s+)(.*)/i + +function flatten(array) { + if (!Array.isArray(array)) return [array] + return array.reduce(function (a, b) { + return a.concat(flatten(b)) + }, []) +} + +function find(string, predicate) { + for (var n = 1, max = string.length; n <= max; n++) { + var parsed = string.substr(-n, n) + if (predicate(parsed, n, max)) { + return string.slice(0, -n) + } + } + return '' +} + +function matchQuery(all, query) { + var node = { query: query } + if (query.indexOf('not ') === 0) { + node.not = true + query = query.slice(4) + } + + for (var name in all) { + var type = all[name] + var match = query.match(type.regexp) + if (match) { + node.type = name + for (var i = 0; i < type.matches.length; i++) { + node[type.matches[i]] = match[i + 1] + } + return node + } + } + + node.type = 'unknown' + return node +} + +function matchBlock(all, string, qs) { + var node + return find(string, function (parsed, n, max) { + if (AND_REGEXP.test(parsed)) { + node = matchQuery(all, parsed.match(AND_REGEXP)[1]) + node.compose = 'and' + qs.unshift(node) + return true + } else if (OR_REGEXP.test(parsed)) { + node = matchQuery(all, parsed.match(OR_REGEXP)[1]) + node.compose = 'or' + qs.unshift(node) + return true + } else if (n === max) { + node = matchQuery(all, parsed.trim()) + node.compose = 'or' + qs.unshift(node) + return true + } + return false + }) +} + +module.exports = function parse(all, queries) { + if (!Array.isArray(queries)) queries = [queries] + return flatten( + queries.map(function (block) { + var qs = [] + do { + block = matchBlock(all, block, qs) + } while (block) + return qs + }) + ) +} 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 3e31ff66cfa057..26e1c0379de55b 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.0166941,F:0.038953,A:0.00556471,B:0.8514,xB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","xB","J","D","E","F","A","B","","",""],E:"IE",F:{xB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.007734,K:0.004267,L:0.004268,G:0.058005,M:0.003867,N:0.007734,O:0.023202,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.007734,U:0.007734,V:0.003867,W:0.011601,Z:0.004318,a:0.007734,b:0.004118,c:0.003939,d:0.007734,e:0.004118,f:0.003939,g:0.007734,h:0.011601,i:0.015468,j:0.015468,k:0.054138,l:0.212685,H:3.52284,X:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","H","X","","",""],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,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,H:1651190400,X:1653955200},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004471,"1":0.009284,"2":0.004707,"3":0.009076,"4":0.003867,"5":0.004783,"6":0.004271,"7":0.004783,"8":0.00487,"9":0.005029,yB:0.004118,lB:0.004271,I:0.019335,m:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007734,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,n:0.004443,o:0.004283,p:0.008322,q:0.013698,r:0.004161,s:0.008786,t:0.004118,u:0.004317,v:0.004393,w:0.004418,x:0.008834,y:0.008322,z:0.008928,AB:0.0047,BB:0.023202,CB:0.007734,DB:0.003867,EB:0.004525,FB:0.004293,GB:0.003867,HB:0.004538,IB:0.008282,JB:0.011601,KB:0.069606,LB:0.011601,MB:0.007734,NB:0.015468,OB:0.011601,PB:0.011601,QB:0.003939,mB:0.007734,RB:0.003867,nB:0.004356,SB:0.004425,TB:0.008322,Y:0.00415,UB:0.004267,VB:0.003867,WB:0.004267,XB:0.007734,YB:0.00415,ZB:0.004293,aB:0.004425,bB:0.003867,cB:0.00415,dB:0.00415,eB:0.004318,fB:0.004356,gB:0.003867,hB:0.042537,P:0.007734,Q:0.007734,R:0.011601,oB:0.007734,S:0.003867,T:0.003867,U:0.004268,V:0.003867,W:0.011601,Z:0.011601,a:0.007734,b:0.007734,c:0.096675,d:0.003867,e:0.007734,f:0.03867,g:0.011601,h:0.015468,i:0.015468,j:0.034803,k:0.421503,l:1.84456,H:0.023202,X:0,pB:0,zB:0.008786,"0B":0.00487},B:"moz",C:["yB","lB","zB","0B","I","m","J","D","E","F","A","B","C","K","L","G","M","N","O","n","o","p","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","mB","RB","nB","SB","TB","Y","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","P","Q","R","oB","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","H","X","pB",""],E:"Firefox",F:{"0":1409616000,"1":1413244800,"2":1417392000,"3":1421107200,"4":1424736000,"5":1428278400,"6":1431475200,"7":1435881600,"8":1439251200,"9":1442880000,yB:1161648000,lB:1213660800,zB:1246320000,"0B":1264032000,I:1300752000,m: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,n:1357603200,o:1361232000,p:1364860800,q:1368489600,r:1372118400,s:1375747200,t:1379376000,u:1386633600,v:1391472000,w:1395100800,x:1398729600,y:1402358400,z:1405987200,AB:1446508800,BB:1450137600,CB:1453852800,DB:1457395200,EB:1461628800,FB:1465257600,GB:1470096000,HB:1474329600,IB:1479168000,JB:1485216000,KB:1488844800,LB:1492560000,MB:1497312000,NB:1502150400,OB:1506556800,PB:1510617600,QB:1516665600,mB:1520985600,RB:1525824000,nB:1529971200,SB:1536105600,TB:1540252800,Y:1544486400,UB:1548720000,VB:1552953600,WB:1558396800,XB:1562630400,YB:1567468800,ZB:1571788800,aB:1575331200,bB:1578355200,cB:1581379200,dB:1583798400,eB:1586304000,fB:1588636800,gB:1591056000,hB:1593475200,P:1595894400,Q:1598313600,R:1600732800,oB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,H:1653955200,X:null,pB:null}},D:{A:{"0":0.004566,"1":0.004118,"2":0.007734,"3":0.007878,"4":0.004335,"5":0.004464,"6":0.019335,"7":0.003867,"8":0.019335,"9":0.007734,I:0.004706,m: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,n:0.008322,o:0.004393,p:0.004317,q:0.007734,r:0.008786,s:0.003939,t:0.004461,u:0.004141,v:0.004326,w:0.0047,x:0.004538,y:0.008322,z:0.008596,AB:0.007734,BB:0.011601,CB:0.003867,DB:0.003867,EB:0.003867,FB:0.015468,GB:0.023202,HB:0.061872,IB:0.003867,JB:0.007734,KB:0.007734,LB:0.015468,MB:0.003867,NB:0.007734,OB:0.027069,PB:0.007734,QB:0.011601,mB:0.007734,RB:0.015468,nB:0.015468,SB:0.015468,TB:0.015468,Y:0.007734,UB:0.015468,VB:0.027069,WB:0.023202,XB:0.007734,YB:0.046404,ZB:0.019335,aB:0.011601,bB:0.019335,cB:0.007734,dB:0.023202,eB:0.058005,fB:0.073473,gB:0.011601,hB:0.030936,P:0.204951,Q:0.042537,R:0.03867,S:0.131478,T:0.081207,U:0.088941,V:0.092808,W:0.104409,Z:0.019335,a:0.058005,b:0.034803,c:0.081207,d:0.065739,e:0.054138,f:0.061872,g:0.042537,h:0.143079,i:0.143079,j:0.204951,k:0.351897,l:4.17636,H:15.4487,X:1.5468,pB:0.015468,"1B":0.007734,"2B":0},B:"webkit",C:["","","","","I","m","J","D","E","F","A","B","C","K","L","G","M","N","O","n","o","p","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","mB","RB","nB","SB","TB","Y","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","H","X","pB","1B","2B"],E:"Chrome",F:{"0":1389657600,"1":1392940800,"2":1397001600,"3":1400544000,"4":1405468800,"5":1409011200,"6":1412640000,"7":1416268800,"8":1421798400,"9":1425513600,I:1264377600,m: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,n:1332892800,o:1337040000,p:1340668800,q:1343692800,r:1348531200,s:1352246400,t:1357862400,u:1361404800,v:1364428800,w:1369094400,x:1374105600,y:1376956800,z:1384214400,AB:1429401600,BB:1432080000,CB:1437523200,DB:1441152000,EB:1444780800,FB:1449014400,GB:1453248000,HB:1456963200,IB:1460592000,JB:1464134400,KB:1469059200,LB:1472601600,MB:1476230400,NB:1480550400,OB:1485302400,PB:1489017600,QB:1492560000,mB:1496707200,RB:1500940800,nB:1504569600,SB:1508198400,TB:1512518400,Y:1516752000,UB:1520294400,VB:1523923200,WB:1527552000,XB:1532390400,YB:1536019200,ZB:1539648000,aB:1543968000,bB:1548720000,cB:1552348800,dB:1555977600,eB:1559606400,fB:1564444800,gB:1568073600,hB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,H:1650931200,X:1653350400,pB:null,"1B":null,"2B":null}},E:{A:{I:0,m:0.008322,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.003867,K:0.034803,L:0.158547,G:0.058005,"3B":0,qB:0.008692,"4B":0.007734,"5B":0.00456,"6B":0.004283,"7B":0.015468,rB:0.007734,iB:0.023202,jB:0.046404,"8B":0.266823,"9B":0.491109,AC:0.108276,sB:0.108276,tB:1.67054,uB:0.189483,kB:0,BC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3B","qB","I","m","4B","J","5B","D","6B","E","F","7B","A","rB","B","iB","C","jB","K","8B","L","9B","G","AC","sB","tB","uB","kB","BC",""],E:"Safari",F:{"3B":1205798400,qB:1226534400,I:1244419200,m:1275868800,"4B":1311120000,J:1343174400,"5B":1382400000,D:1382400000,"6B":1410998400,E:1413417600,F:1443657600,"7B":1458518400,A:1474329600,rB:1490572800,B:1505779200,iB:1522281600,C:1537142400,jB:1553472000,K:1568851200,"8B":1585008000,L:1600214400,"9B":1619395200,G:1632096000,AC:1635292800,sB:1639353600,tB:1647216000,uB:1652745600,kB:null,BC:null}},F:{A:{"0":0.005152,"1":0.005014,"2":0.009758,"3":0.004879,"4":0.003867,"5":0.004283,"6":0.004367,"7":0.004534,"8":0.007734,"9":0.004227,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,n:0.006015,o:0.004879,p:0.006597,q:0.006597,r:0.013434,s:0.006702,t:0.006015,u:0.005595,v:0.004393,w:0.007734,x:0.004879,y:0.004879,z:0.003867,AB:0.004418,BB:0.004161,CB:0.004227,DB:0.004725,EB:0.011601,FB:0.008942,GB:0.004707,HB:0.004827,IB:0.004707,JB:0.004707,KB:0.004326,LB:0.008922,MB:0.014349,NB:0.004425,OB:0.00472,PB:0.004425,QB:0.004425,RB:0.00472,SB:0.004532,TB:0.004566,Y:0.02283,UB:0.00867,VB:0.004656,WB:0.004642,XB:0.003867,YB:0.00944,ZB:0.004293,aB:0.003867,bB:0.004298,cB:0.096692,dB:0.004201,eB:0.004141,fB:0.004257,gB:0.003939,hB:0.008236,P:0.003939,Q:0.003939,R:0.008514,oB:0.003939,S:0.003939,T:0.007734,U:0.448572,V:0.475641,W:0.027069,CC:0.00685,DC:0,EC:0.008392,FC:0.004706,iB:0.006229,vB:0.004879,GC:0.008786,jB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","F","CC","DC","EC","FC","B","iB","vB","GC","C","jB","G","M","N","O","n","o","p","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","Y","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","P","Q","R","oB","S","T","U","V","W","",""],E:"Opera",F:{"0":1442448000,"1":1445904000,"2":1449100800,"3":1454371200,"4":1457308800,"5":1462320000,"6":1465344000,"7":1470096000,"8":1474329600,"9":1477267200,F:1150761600,CC:1223424000,DC:1251763200,EC:1267488000,FC:1277942400,B:1292457600,iB:1302566400,vB:1309219200,GC:1323129600,C:1323129600,jB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,n:1390867200,o:1393891200,p:1399334400,q:1401753600,r:1405987200,s:1409616000,t:1413331200,u:1417132800,v:1422316800,w:1425945600,x:1430179200,y:1433808000,z:1438646400,AB:1481587200,BB:1486425600,CB:1490054400,DB:1494374400,EB:1498003200,FB:1502236800,GB:1506470400,HB:1510099200,IB:1515024000,JB:1517961600,KB:1521676800,LB:1525910400,MB:1530144000,NB:1534982400,OB:1537833600,PB:1543363200,QB:1548201600,RB:1554768000,SB:1561593600,TB:1566259200,Y:1570406400,UB:1573689600,VB:1578441600,WB:1583971200,XB:1587513600,YB:1592956800,ZB:1595894400,aB:1600128000,bB:1603238400,cB:1613520000,dB:1612224000,eB:1616544000,fB:1619568000,gB:1623715200,hB:1627948800,P:1631577600,Q:1633392000,R:1635984000,oB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:null},D:{F:"o",B:"o",C:"o",CC:"o",DC:"o",EC:"o",FC:"o",iB:"o",vB:"o",GC:"o",jB:"o"}},G:{A:{E:0,qB:0.00303644,HC:0,wB:0.00151822,IC:0.00455466,JC:0.00455466,KC:0.0167004,LC:0.00759111,MC:0.0197369,NC:0.0774293,OC:0.013664,PC:0.0926115,QC:0.0379555,RC:0.0318826,SC:0.0303644,TC:0.57996,UC:0.0288462,VC:0.0121458,WC:0.0607288,XC:0.189778,YC:0.592106,ZC:1.50911,aC:0.513159,sB:1.20395,tB:10.1478,uB:0,kB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","qB","HC","wB","IC","JC","KC","E","LC","MC","NC","OC","PC","QC","RC","SC","TC","UC","VC","WC","XC","YC","ZC","aC","sB","tB","uB","kB","",""],E:"Safari on iOS",F:{qB:1270252800,HC:1283904000,wB:1299628800,IC:1331078400,JC:1359331200,KC:1394409600,E:1410912000,LC:1413763200,MC:1442361600,NC:1458518400,OC:1473724800,PC:1490572800,QC:1505779200,RC:1522281600,SC:1537142400,TC:1553472000,UC:1568851200,VC:1572220800,WC:1580169600,XC:1585008000,YC:1600214400,ZC:1619395200,aC:1632096000,sB:1639353600,tB:1647216000,uB:1652659200,kB:null}},H:{A:{bC:0.998688},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bC","","",""],E:"Opera Mini",F:{bC:1426464000}},I:{A:{lB:0,I:0.0149357,H:0,cC:0,dC:0,eC:0,fC:0.0199142,wB:0.0597426,gC:0,hC:0.328584},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","cC","dC","eC","lB","I","fC","wB","gC","hC","H","","",""],E:"Android Browser",F:{cC:1256515200,dC:1274313600,eC:1291593600,lB:1298332800,I:1318896000,fC:1341792000,wB:1374624000,gC:1386547200,hC:1401667200,H:1651017600}},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,Y:0.0111391,iB:0,vB:0,jB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","iB","vB","C","jB","Y","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,iB:1314835200,vB:1318291200,C:1330300800,jB:1349740800,Y:1613433600},D:{Y:"webkit"}},L:{A:{X:41.3354},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","X","","",""],E:"Chrome for Android",F:{X:1653350400}},M:{A:{H:0.30665},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Firefox for Android",F:{H:1653955200}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{iC:0.766625},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","iC","","",""],E:"UC Browser for Android",F:{iC:1471392000},D:{iC:"webkit"}},P:{A:{I:0.209346,jC:0.0103543,kC:0.010304,lC:0.0628037,mC:0.0103584,nC:0.0104673,rB:0.0105043,oC:0.0418691,pC:0.0209346,qC:0.0942055,rC:0.0942055,sC:0.0942055,kB:0.889718,tC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","jC","kC","lC","mC","nC","rB","oC","pC","qC","rC","sC","kB","tC","","",""],E:"Samsung Internet",F:{I:1461024000,jC:1481846400,kC:1509408000,lC:1528329600,mC:1546128000,nC:1554163200,rB:1567900800,oC:1582588800,pC:1593475200,qC:1605657600,rC:1618531200,sC:1629072000,kB:1640736000,tC:1651708800}},Q:{A:{uC:0.153325},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","uC","","",""],E:"QQ Browser",F:{uC:1589846400}},R:{A:{vC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","vC","","",""],E:"Baidu Browser",F:{vC:1491004800}},S:{A:{wC:0.073596},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","wC","","",""],E:"KaiOS Browser",F:{wC:1527811200}}}; +module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.0166941,F:0.038953,A:0.00556471,B:0.8514,yB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","yB","J","D","E","F","A","B","","",""],E:"IE",F:{yB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.007734,K:0.004267,L:0.004268,G:0.058005,M:0.003867,N:0.007734,O:0.023202,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.007734,U:0.007734,V:0.003867,W:0.011601,Z:0.004318,a:0.007734,b:0.004118,c:0.003939,d:0.007734,e:0.004118,f:0.003939,g:0.007734,h:0.011601,i:0.015468,j:0.015468,k:0.054138,l:0.212685,X:3.52284,m:0,H:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","X","m","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,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,X:1651190400,m:1653955200,H:1655942400},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.008928,"1":0.004471,"2":0.009284,"3":0.004707,"4":0.009076,"5":0.003867,"6":0.004783,"7":0.004271,"8":0.004783,"9":0.00487,zB:0.004118,mB:0.004271,I:0.019335,n:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007734,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,o:0.004443,p:0.004283,q:0.008322,r:0.013698,s:0.004161,t:0.008786,u:0.004118,v:0.004317,w:0.004393,x:0.004418,y:0.008834,z:0.008322,AB:0.005029,BB:0.0047,CB:0.023202,DB:0.007734,EB:0.003867,FB:0.004525,GB:0.004293,HB:0.003867,IB:0.004538,JB:0.008282,KB:0.011601,LB:0.069606,MB:0.011601,NB:0.007734,OB:0.015468,PB:0.011601,QB:0.011601,RB:0.003939,nB:0.007734,SB:0.003867,oB:0.004356,TB:0.004425,UB:0.008322,Y:0.00415,VB:0.004267,WB:0.003867,XB:0.004267,YB:0.007734,ZB:0.00415,aB:0.004293,bB:0.004425,cB:0.003867,dB:0.00415,eB:0.00415,fB:0.004318,gB:0.004356,hB:0.003867,iB:0.042537,P:0.007734,Q:0.007734,R:0.011601,pB:0.007734,S:0.003867,T:0.003867,U:0.004268,V:0.003867,W:0.011601,Z:0.011601,a:0.007734,b:0.007734,c:0.096675,d:0.003867,e:0.007734,f:0.03867,g:0.011601,h:0.015468,i:0.015468,j:0.034803,k:0.421503,l:1.84456,X:0.023202,m:0,H:0,qB:0,"0B":0.008786,"1B":0.00487},B:"moz",C:["zB","mB","0B","1B","I","n","J","D","E","F","A","B","C","K","L","G","M","N","O","o","p","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","nB","SB","oB","TB","UB","Y","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","P","Q","R","pB","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","X","m","H","qB",""],E:"Firefox",F:{"0":1405987200,"1":1409616000,"2":1413244800,"3":1417392000,"4":1421107200,"5":1424736000,"6":1428278400,"7":1431475200,"8":1435881600,"9":1439251200,zB:1161648000,mB:1213660800,"0B":1246320000,"1B":1264032000,I:1300752000,n: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,o:1357603200,p:1361232000,q:1364860800,r:1368489600,s:1372118400,t:1375747200,u:1379376000,v:1386633600,w:1391472000,x:1395100800,y:1398729600,z:1402358400,AB:1442880000,BB:1446508800,CB:1450137600,DB:1453852800,EB:1457395200,FB:1461628800,GB:1465257600,HB:1470096000,IB:1474329600,JB:1479168000,KB:1485216000,LB:1488844800,MB:1492560000,NB:1497312000,OB:1502150400,PB:1506556800,QB:1510617600,RB:1516665600,nB:1520985600,SB:1525824000,oB:1529971200,TB:1536105600,UB:1540252800,Y:1544486400,VB:1548720000,WB:1552953600,XB:1558396800,YB:1562630400,ZB:1567468800,aB:1571788800,bB:1575331200,cB:1578355200,dB:1581379200,eB:1583798400,fB:1586304000,gB:1588636800,hB:1591056000,iB:1593475200,P:1595894400,Q:1598313600,R:1600732800,pB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,X:1653955200,m:1656374400,H:null,qB:null}},D:{A:{"0":0.008596,"1":0.004566,"2":0.004118,"3":0.007734,"4":0.007878,"5":0.004335,"6":0.004464,"7":0.019335,"8":0.003867,"9":0.019335,I:0.004706,n: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,o:0.008322,p:0.004393,q:0.004317,r:0.007734,s:0.008786,t:0.003939,u:0.004461,v:0.004141,w:0.004326,x:0.0047,y:0.004538,z:0.008322,AB:0.007734,BB:0.007734,CB:0.011601,DB:0.003867,EB:0.003867,FB:0.003867,GB:0.015468,HB:0.023202,IB:0.061872,JB:0.003867,KB:0.007734,LB:0.007734,MB:0.015468,NB:0.003867,OB:0.007734,PB:0.027069,QB:0.007734,RB:0.011601,nB:0.007734,SB:0.015468,oB:0.015468,TB:0.015468,UB:0.015468,Y:0.007734,VB:0.015468,WB:0.027069,XB:0.023202,YB:0.007734,ZB:0.046404,aB:0.019335,bB:0.011601,cB:0.019335,dB:0.007734,eB:0.023202,fB:0.058005,gB:0.073473,hB:0.011601,iB:0.030936,P:0.204951,Q:0.042537,R:0.03867,S:0.131478,T:0.081207,U:0.088941,V:0.092808,W:0.104409,Z:0.019335,a:0.058005,b:0.034803,c:0.081207,d:0.065739,e:0.054138,f:0.061872,g:0.042537,h:0.143079,i:0.143079,j:0.204951,k:0.351897,l:4.17636,X:15.4487,m:1.5468,H:0.015468,qB:0.007734,"2B":0,"3B":0},B:"webkit",C:["","","","","I","n","J","D","E","F","A","B","C","K","L","G","M","N","O","o","p","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","nB","SB","oB","TB","UB","Y","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","P","Q","R","S","T","U","V","W","Z","a","b","c","d","e","f","g","h","i","j","k","l","X","m","H","qB","2B","3B"],E:"Chrome",F:{"0":1384214400,"1":1389657600,"2":1392940800,"3":1397001600,"4":1400544000,"5":1405468800,"6":1409011200,"7":1412640000,"8":1416268800,"9":1421798400,I:1264377600,n: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,o:1332892800,p:1337040000,q:1340668800,r:1343692800,s:1348531200,t:1352246400,u:1357862400,v:1361404800,w:1364428800,x:1369094400,y:1374105600,z:1376956800,AB:1425513600,BB:1429401600,CB:1432080000,DB:1437523200,EB:1441152000,FB:1444780800,GB:1449014400,HB:1453248000,IB:1456963200,JB:1460592000,KB:1464134400,LB:1469059200,MB:1472601600,NB:1476230400,OB:1480550400,PB:1485302400,QB:1489017600,RB:1492560000,nB:1496707200,SB:1500940800,oB:1504569600,TB:1508198400,UB:1512518400,Y:1516752000,VB:1520294400,WB:1523923200,XB:1527552000,YB:1532390400,ZB:1536019200,aB:1539648000,bB:1543968000,cB:1548720000,dB:1552348800,eB:1555977600,fB:1559606400,gB:1564444800,hB:1568073600,iB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,X:1650931200,m:1653350400,H:1655769600,qB:null,"2B":null,"3B":null}},E:{A:{I:0,n:0.008322,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.003867,K:0.034803,L:0.158547,G:0.058005,"4B":0,rB:0.008692,"5B":0.007734,"6B":0.00456,"7B":0.004283,"8B":0.015468,sB:0.007734,jB:0.023202,kB:0.046404,"9B":0.266823,AC:0.491109,BC:0.108276,tB:0.108276,uB:1.67054,vB:0.189483,lB:0,CC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4B","rB","I","n","5B","J","6B","D","7B","E","F","8B","A","sB","B","jB","C","kB","K","9B","L","AC","G","BC","tB","uB","vB","lB","CC",""],E:"Safari",F:{"4B":1205798400,rB:1226534400,I:1244419200,n:1275868800,"5B":1311120000,J:1343174400,"6B":1382400000,D:1382400000,"7B":1410998400,E:1413417600,F:1443657600,"8B":1458518400,A:1474329600,sB:1490572800,B:1505779200,jB:1522281600,C:1537142400,kB:1553472000,K:1568851200,"9B":1585008000,L:1600214400,AC:1619395200,G:1632096000,BC:1635292800,tB:1639353600,uB:1647216000,vB:1652745600,lB:null,CC:null}},F:{A:{"0":0.003867,"1":0.005152,"2":0.005014,"3":0.009758,"4":0.004879,"5":0.003867,"6":0.004283,"7":0.004367,"8":0.004534,"9":0.007734,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,o:0.006015,p:0.004879,q:0.006597,r:0.006597,s:0.013434,t:0.006702,u:0.006015,v:0.005595,w:0.004393,x:0.007734,y:0.004879,z:0.004879,AB:0.004227,BB:0.004418,CB:0.004161,DB:0.004227,EB:0.004725,FB:0.011601,GB:0.008942,HB:0.004707,IB:0.004827,JB:0.004707,KB:0.004707,LB:0.004326,MB:0.008922,NB:0.014349,OB:0.004425,PB:0.00472,QB:0.004425,RB:0.004425,SB:0.00472,TB:0.004532,UB:0.004566,Y:0.02283,VB:0.00867,WB:0.004656,XB:0.004642,YB:0.003867,ZB:0.00944,aB:0.004293,bB:0.003867,cB:0.004298,dB:0.096692,eB:0.004201,fB:0.004141,gB:0.004257,hB:0.003939,iB:0.008236,P:0.003939,Q:0.003939,R:0.008514,pB:0.003939,S:0.003939,T:0.007734,U:0.448572,V:0.475641,W:0.027069,DC:0.00685,EC:0,FC:0.008392,GC:0.004706,jB:0.006229,wB:0.004879,HC:0.008786,kB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","F","DC","EC","FC","GC","B","jB","wB","HC","C","kB","G","M","N","O","o","p","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","Y","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","P","Q","R","pB","S","T","U","V","W","",""],E:"Opera",F:{"0":1438646400,"1":1442448000,"2":1445904000,"3":1449100800,"4":1454371200,"5":1457308800,"6":1462320000,"7":1465344000,"8":1470096000,"9":1474329600,F:1150761600,DC:1223424000,EC:1251763200,FC:1267488000,GC:1277942400,B:1292457600,jB:1302566400,wB:1309219200,HC:1323129600,C:1323129600,kB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,o:1390867200,p:1393891200,q:1399334400,r:1401753600,s:1405987200,t:1409616000,u:1413331200,v:1417132800,w:1422316800,x:1425945600,y:1430179200,z:1433808000,AB:1477267200,BB:1481587200,CB:1486425600,DB:1490054400,EB:1494374400,FB:1498003200,GB:1502236800,HB:1506470400,IB:1510099200,JB:1515024000,KB:1517961600,LB:1521676800,MB:1525910400,NB:1530144000,OB:1534982400,PB:1537833600,QB:1543363200,RB:1548201600,SB:1554768000,TB:1561593600,UB:1566259200,Y:1570406400,VB:1573689600,WB:1578441600,XB:1583971200,YB:1587513600,ZB:1592956800,aB:1595894400,bB:1600128000,cB:1603238400,dB:1613520000,eB:1612224000,fB:1616544000,gB:1619568000,hB:1623715200,iB:1627948800,P:1631577600,Q:1633392000,R:1635984000,pB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:null},D:{F:"o",B:"o",C:"o",DC:"o",EC:"o",FC:"o",GC:"o",jB:"o",wB:"o",HC:"o",kB:"o"}},G:{A:{E:0,rB:0.00303644,IC:0,xB:0.00151822,JC:0.00455466,KC:0.00455466,LC:0.0167004,MC:0.00759111,NC:0.0197369,OC:0.0774293,PC:0.013664,QC:0.0926115,RC:0.0379555,SC:0.0318826,TC:0.0303644,UC:0.57996,VC:0.0288462,WC:0.0121458,XC:0.0607288,YC:0.189778,ZC:0.592106,aC:1.50911,bC:0.513159,tB:1.20395,uB:10.1478,vB:0,lB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rB","IC","xB","JC","KC","LC","E","MC","NC","OC","PC","QC","RC","SC","TC","UC","VC","WC","XC","YC","ZC","aC","bC","tB","uB","vB","lB","",""],E:"Safari on iOS",F:{rB:1270252800,IC:1283904000,xB:1299628800,JC:1331078400,KC:1359331200,LC:1394409600,E:1410912000,MC:1413763200,NC:1442361600,OC:1458518400,PC:1473724800,QC:1490572800,RC:1505779200,SC:1522281600,TC:1537142400,UC:1553472000,VC:1568851200,WC:1572220800,XC:1580169600,YC:1585008000,ZC:1600214400,aC:1619395200,bC:1632096000,tB:1639353600,uB:1647216000,vB:1652659200,lB:null}},H:{A:{cC:0.998688},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","cC","","",""],E:"Opera Mini",F:{cC:1426464000}},I:{A:{mB:0,I:0.0149357,H:0,dC:0,eC:0,fC:0,gC:0.0199142,xB:0.0597426,hC:0,iC:0.328584},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","dC","eC","fC","mB","I","gC","xB","hC","iC","H","","",""],E:"Android Browser",F:{dC:1256515200,eC:1274313600,fC:1291593600,mB:1298332800,I:1318896000,gC:1341792000,xB:1374624000,hC:1386547200,iC:1401667200,H:1655856000}},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,Y:0.0111391,jB:0,wB:0,kB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","jB","wB","C","kB","Y","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,jB:1314835200,wB:1318291200,C:1330300800,kB:1349740800,Y:1613433600},D:{Y:"webkit"}},L:{A:{H:41.3354},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1655769600}},M:{A:{X:0.30665},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","X","","",""],E:"Firefox for Android",F:{X:1653955200}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{jC:0.766625},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","jC","","",""],E:"UC Browser for Android",F:{jC:1471392000},D:{jC:"webkit"}},P:{A:{I:0.209346,kC:0.0103543,lC:0.010304,mC:0.0628037,nC:0.0103584,oC:0.0104673,sB:0.0105043,pC:0.0418691,qC:0.0209346,rC:0.0942055,sC:0.0942055,tC:0.0942055,lB:0.889718,uC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","kC","lC","mC","nC","oC","sB","pC","qC","rC","sC","tC","lB","uC","","",""],E:"Samsung Internet",F:{I:1461024000,kC:1481846400,lC:1509408000,mC:1528329600,nC:1546128000,oC:1554163200,sB:1567900800,pC:1582588800,qC:1593475200,rC:1605657600,sC:1618531200,tC:1629072000,lB:1640736000,uC:1651708800}},Q:{A:{vC:0.153325},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","vC","","",""],E:"QQ Browser",F:{vC:1589846400}},R:{A:{wC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","wC","","",""],E:"Baidu Browser",F:{wC:1491004800}},S:{A:{xC:0.073596},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","xC","","",""],E:"KaiOS Browser",F:{xC: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 1d2ffab820acb5..547f83b18cb208 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":"32","1":"33","2":"34","3":"35","4":"36","5":"37","6":"38","7":"39","8":"40","9":"41",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"101",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:"102",Y:"64",Z:"88",a:"89",b:"90",c:"91",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"100",m:"5",n:"19",o:"20",p:"21",q:"22",r:"23",s:"24",t:"25",u:"26",v:"27",w:"28",x:"29",y:"30",z:"31",AB:"42",BB:"43",CB:"44",DB:"45",EB:"46",FB:"47",GB:"48",HB:"49",IB:"50",JB:"51",KB:"52",LB:"53",MB:"54",NB:"55",OB:"56",PB:"57",QB:"58",RB:"60",SB:"62",TB:"63",UB:"65",VB:"66",WB:"67",XB:"68",YB:"69",ZB:"70",aB:"71",bB:"72",cB:"73",dB:"74",eB:"75",fB:"76",gB:"77",hB:"78",iB:"11.1",jB:"12.1",kB:"16.0",lB:"3",mB:"59",nB:"61",oB:"82",pB:"103",qB:"3.2",rB:"10.1",sB:"15.2-15.3",tB:"15.4",uB:"15.5",vB:"11.5",wB:"4.2-4.3",xB:"5.5",yB:"2",zB:"3.5","0B":"3.6","1B":"104","2B":"105","3B":"3.1","4B":"5.1","5B":"6.1","6B":"7.1","7B":"9.1","8B":"13.1","9B":"14.1",AC:"15.1",BC:"TP",CC:"9.5-9.6",DC:"10.0-10.1",EC:"10.5",FC:"10.6",GC:"11.6",HC:"4.0-4.1",IC:"5.0-5.1",JC:"6.0-6.1",KC:"7.0-7.1",LC:"8.1-8.4",MC:"9.0-9.2",NC:"9.3",OC:"10.0-10.2",PC:"10.3",QC:"11.0-11.2",RC:"11.3-11.4",SC:"12.0-12.1",TC:"12.2-12.5",UC:"13.0-13.1",VC:"13.2",WC:"13.3",XC:"13.4-13.7",YC:"14.0-14.4",ZC:"14.5-14.8",aC:"15.0-15.1",bC:"all",cC:"2.1",dC:"2.2",eC:"2.3",fC:"4.1",gC:"4.4",hC:"4.4.3-4.4.4",iC:"12.12",jC:"5.0-5.4",kC:"6.2-6.4",lC:"7.2-7.4",mC:"8.2",nC:"9.2",oC:"11.1-11.2",pC:"12.0",qC:"13.0",rC:"14.0",sC:"15.0",tC:"17.0",uC:"10.4",vC:"7.12",wC:"2.5"}; +module.exports={"0":"31","1":"32","2":"33","3":"34","4":"35","5":"36","6":"37","7":"38","8":"39","9":"40",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"103",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:"101",Y:"64",Z:"88",a:"89",b:"90",c:"91",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"100",m:"102",n:"5",o:"19",p:"20",q:"21",r:"22",s:"23",t:"24",u:"25",v:"26",w:"27",x:"28",y:"29",z:"30",AB:"41",BB:"42",CB:"43",DB:"44",EB:"45",FB:"46",GB:"47",HB:"48",IB:"49",JB:"50",KB:"51",LB:"52",MB:"53",NB:"54",OB:"55",PB:"56",QB:"57",RB:"58",SB:"60",TB:"62",UB:"63",VB:"65",WB:"66",XB:"67",YB:"68",ZB:"69",aB:"70",bB:"71",cB:"72",dB:"73",eB:"74",fB:"75",gB:"76",hB:"77",iB:"78",jB:"11.1",kB:"12.1",lB:"16.0",mB:"3",nB:"59",oB:"61",pB:"82",qB:"104",rB:"3.2",sB:"10.1",tB:"15.2-15.3",uB:"15.4",vB:"15.5",wB:"11.5",xB:"4.2-4.3",yB:"5.5",zB:"2","0B":"3.5","1B":"3.6","2B":"105","3B":"106","4B":"3.1","5B":"5.1","6B":"6.1","7B":"7.1","8B":"9.1","9B":"13.1",AC:"14.1",BC:"15.1",CC:"TP",DC:"9.5-9.6",EC:"10.0-10.1",FC:"10.5",GC:"10.6",HC:"11.6",IC:"4.0-4.1",JC:"5.0-5.1",KC:"6.0-6.1",LC:"7.0-7.1",MC:"8.1-8.4",NC:"9.0-9.2",OC:"9.3",PC:"10.0-10.2",QC:"10.3",RC:"11.0-11.2",SC:"11.3-11.4",TC:"12.0-12.1",UC:"12.2-12.5",VC:"13.0-13.1",WC:"13.2",XC:"13.3",YC:"13.4-13.7",ZC:"14.0-14.4",aC:"14.5-14.8",bC:"15.0-15.1",cC:"all",dC:"2.1",eC:"2.2",fC:"2.3",gC:"4.1",hC:"4.4",iC:"4.4.3-4.4.4",jC:"12.12",kC:"5.0-5.4",lC:"6.2-6.4",mC:"7.2-7.4",nC:"8.2",oC:"9.2",pC:"11.1-11.2",qC:"12.0",rC:"13.0",sC:"14.0",tC:"15.0",uC:"17.0",vC:"10.4",wC:"7.12",xC:"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 2944aa532fd9f7..7cb48be019569f 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F","16":"A B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"132":"H"},N:{"1":"A","2":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},B:6,C:"AAC audio file format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B","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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F","16":"A B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"132":"X"},N:{"1":"A","2":"B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"132":"xC"}},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 4f1cdc79c8c2dc..394b54e996b569 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB zB 0B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","130":"C iB"},F:{"1":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"AbortController & AbortSignal"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G"},C:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 0B 1B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB","130":"C jB"},F:{"1":"MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","2":"I kC lC mC nC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 b2a41c322729da..38cfed3028804f 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 xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC","132":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","132":"A"},K:{"2":"A B C Y iB vB","132":"jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 yB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC","132":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D","132":"A"},K:{"2":"A B C Y jB wB","132":"kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"132":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 e0828927a920f3..7339c9b903010f 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"Accelerometer"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB Y VB WB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 09163b815c3725..9abe1dc79faf7b 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","257":"yB lB I m J zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"EventTarget.addEventListener()"}; +module.exports={A:{A:{"1":"F A B","130":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","257":"zB mB I n J 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f6016ea464c1b8..2f254b46006579 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"F B C CC DC EC FC iB vB GC jB","16":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"Y","16":"A B C iB vB jB"},L:{"16":"X"},M:{"16":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"16":"vC"},S:{"1":"wC"}},B:1,C:"Alternate stylesheet"}; +module.exports={A:{A:{"1":"E F A B","2":"J D yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"F B C DC EC FC GC jB wB HC kB","16":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"2":"Y","16":"A B C jB wB kB"},L:{"16":"H"},M:{"16":"X"},N:{"16":"A B"},O:{"16":"jC"},P:{"16":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"16":"wC"},S:{"1":"xC"}},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 751bf5c599737b..acc01520696009 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 xB"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","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 mB","194":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","322":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","322":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"132":"wC"}},B:4,C:"Ambient Light Sensor"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B","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 nB","194":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","322":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB DC EC FC GC jB wB HC kB","322":"dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"132":"xC"}},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 f69dec93b4be7a..7d3c8073c257c0 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s 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":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"B C EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O n o p q r s t u v w x y z AB BB CB DB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,C:"Animated PNG (APNG)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB"},D:{"1":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t 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":"E F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B 7B"},F:{"1":"B C FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O o p q r s t u v w x y z AB BB CB DB EB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 75cc8a57410a02..1fb02fdacbe1f8 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Array.prototype.findIndex"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t 0B 1B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 055b20c4062165..19de66bb442a6d 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Array.prototype.find"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"C 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t 0B 1B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f22d3c8b265323..aed96b843e4ffd 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB zB 0B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB CC DC EC FC iB vB GC jB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"flat & flatMap array methods"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB 0B 1B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB"},E:{"1":"C K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB jB"},F:{"1":"PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB DC EC FC GC jB wB HC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","2":"I kC lC mC nC oC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 34453f892548b8..4452ba145a934b 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Array.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 0B 1B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 3b823060c6785d..fa58a315adb1f2 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Arrow functions"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7cd1a40b4cd3d9..9eefc3d74a6d9b 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 xB"},B:{"1":"K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X","322":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},D:{"2":"I m J D E F A B C K L G M N O n o p q r s t u v","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","132":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","132":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"1":"wC"}},B:6,C:"asm.js"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l X m H","322":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B"},D:{"2":"I n J D E F A B C K L G M N O o p q r s t u v w","132":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","132":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","132":"Y"},L:{"132":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I","132":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"132":"vC"},R:{"132":"wC"},S:{"1":"xC"}},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 0eb4ad1b495dd5..679347d7b24267 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B","132":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","260":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","260":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","260":"Y"},L:{"1":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC","260":"nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Asynchronous Clipboard API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 0B 1B","132":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s 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 nB SB oB"},E:{"1":"L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","260":"ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","260":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","260":"Y"},L:{"1":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC","260":"oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 9e41dd2bfda646..3701580b4fa717 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K","194":"L"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","514":"rB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","514":"PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Async functions"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K","194":"L"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B"},D:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B","514":"sB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC","514":"QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 9ab54a1a9ab6b2..4512bc1e0930bd 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC","16":"EC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","16":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Base64 encoding and decoding"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","2":"F DC EC","16":"FC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","16":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 3dd97c5eae632e..acfc01509664f3 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","33":"0 1 L G M N O n o p q r s t u v w x y z"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J D E F A B C K L 5B 6B 7B rB iB jB 8B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"G M N O n o p"},G:{"1":"ZC aC sB tB uB kB","2":"qB HC wB IC","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Web Audio API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K","33":"0 1 2 L G M N O o p q r s t u v w x y z"},E:{"1":"G AC BC tB uB vB lB CC","2":"I n 4B rB 5B","33":"J D E F A B C K L 6B 7B 8B sB jB kB 9B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"G M N O o p q"},G:{"1":"aC bC tB uB vB lB","2":"rB IC xB JC","33":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2a4fb554211e6d..54759225e5ed4f 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","132":"I m J D E F A B C K L G M N O n zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F","4":"CC DC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","2":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Audio element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","132":"I n J D E F A B C K L G M N O o 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F","4":"DC EC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","2":"dC eC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 675aec04c1ef25..bdd9767b819814 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 xB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"322":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"194":"wC"}},B:1,C:"Audio Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B"},F:{"2":"0 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"322":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"194":"xC"}},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 0c981892889777..547f5cd51ad294 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:1,C:"Autofocus attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 7d66653b659887..67cc15bbcb5b36 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","129":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"Auxclick"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B","129":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 f59ab61fdfa04d..2194e8ed33a79c 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N","194":"O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB zB 0B","66":"NB OB PB QB mB RB nB SB TB Y","260":"UB","516":"VB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB","66":"WB XB YB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1090":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"AV1 video format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N","194":"O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 0B 1B","66":"OB PB QB RB nB SB oB TB UB Y","260":"VB","516":"WB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB","66":"XB YB ZB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1090":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"qC rC sC tC lB uC","2":"I kC lC mC nC oC sB pC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 cae5a86e7dbaa5..d37c3d1267f300 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB zB 0B","194":"gB hB P Q R oB S T U V W Z a b c d","257":"e f g h i j k l H X pB"},D:{"1":"U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"AVIF image format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB 0B 1B","194":"hB iB P Q R pB S T U V W Z a b c d","257":"e f g h i j k l X m H qB"},D:{"1":"U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB","516":"lB CC"},F:{"1":"bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB DC EC FC GC jB wB HC kB"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 70cd37a276098d..3ff4145aba1e7e 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C 4B 5B 6B 7B rB iB jB","132":"I K 3B qB 8B","2050":"L G 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","132":"F CC DC"},G:{"2":"qB HC wB","772":"E IC JC KC LC MC NC OC PC QC RC SC TC","2050":"UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC gC hC","132":"fC wB"},J:{"260":"D A"},K:{"1":"B C iB vB jB","2":"Y","132":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"2":"I","1028":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1028":"vC"},S:{"1":"wC"}},B:4,C:"CSS background-attachment"}; +module.exports={A:{A:{"1":"F A B","132":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","132":"zB mB I n J D E F A B C K L G M N O o p q r s t 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C 5B 6B 7B 8B sB jB kB","132":"I K 4B rB 9B","2050":"L G AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","132":"F DC EC"},G:{"2":"rB IC xB","772":"E JC KC LC MC NC OC PC QC RC SC TC UC","2050":"VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC hC iC","132":"gC xB"},J:{"260":"D A"},K:{"1":"B C jB wB kB","2":"Y","132":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"2":"I","1028":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1028":"wC"},S:{"1":"xC"}},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 ae6e4bc9e18ce3..0df5e27280ae79 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 xB"},B:{"1":"G M N O","33":"C K L P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 9B AC sB tB uB kB BC","16":"3B qB","33":"I m J D E F A B C K 4B 5B 6B 7B rB iB jB 8B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"YC ZC aC sB tB uB kB","16":"qB HC wB IC","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"16":"lB cC dC eC","33":"I H fC wB gC hC"},J:{"33":"D A"},K:{"16":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"1":"wC"}},B:7,C:"Background-clip: text"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O","33":"C K L P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 0B 1B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"L G AC BC tB uB vB lB CC","16":"4B rB","33":"I n J D E F A B C K 5B 6B 7B 8B sB jB kB 9B"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"ZC aC bC tB uB vB lB","16":"rB IC xB JC","33":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"16":"mB dC eC fC","33":"I H gC xB hC iC"},J:{"33":"D A"},K:{"16":"A B C jB wB kB","33":"Y"},L:{"33":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"33":"jC"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"33":"wC"},S:{"1":"xC"}},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 024fd72d133551..4a3bbc2e6a6364 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","36":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","516":"I m J D E F A B C K L"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","772":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC","36":"DC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"qB HC wB JC","516":"IC"},H:{"132":"bC"},I:{"1":"H gC hC","36":"cC","516":"lB I fC wB","548":"dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 Background-image options"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B","36":"1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","516":"I n J D E F A B C K L"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","772":"I n J 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC","36":"EC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","4":"rB IC xB KC","516":"JC"},H:{"132":"cC"},I:{"1":"H hC iC","36":"dC","516":"mB I gC xB","548":"eC fC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 da95cb370286b3..084acb13f69755 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:7,C:"background-position-x & background-position-y"}; +module.exports={A:{A:{"1":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 229cdcfe102906..0e568c3e212b28 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 xB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F G M N O CC DC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:4,C:"CSS background-repeat round and space"}; +module.exports={A:{A:{"1":"A B","2":"J D E yB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F G M N O DC EC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 8e991eabd06dd7..9af23aaa0a67ae 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","16":"X pB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Background Sync API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m 0B 1B","16":"H qB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 a632caf68177c9..3611a3a15afca1 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB","2":"yB lB I m J D E F KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","132":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB","164":"A B C K L G"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","66":"5"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Battery Status API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB","2":"zB mB I n J D E F LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB","164":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z","66":"6"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 94588f4f45c7a5..efaa5620418547 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Beacon API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:5,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 6144892ad1b599..b912747019e104 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"2":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:1,C:"Printing Events"}; +module.exports={A:{A:{"1":"J D E F A B","16":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B"},D:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB kB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB DC EC FC GC jB wB HC kB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"16":"jC"},P:{"2":"kC lC mC nC oC sB pC qC rC sC tC lB uC","16":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 50354a3f7affba..47970d1d412bab 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y zB 0B","194":"UB VB WB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"BigInt"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y 0B 1B","194":"VB WB XB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB"},E:{"1":"L G AC BC tB uB vB lB CC","2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB 9B"},F:{"1":"NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB"},G:{"1":"ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","2":"I kC lC mC nC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 502ca3b3ee9a05..56523b0137dd6c 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D","36":"E F A B C K L G M N O n"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","36":"lB I fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Blob constructing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D","36":"E F A B C K L G M N O o"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B C DC EC FC GC jB wB HC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC"},H:{"2":"cC"},I:{"1":"H","2":"dC eC fC","36":"mB I gC xB hC iC"},J:{"1":"A","2":"D"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 c7464f2843dafe..bb68a0e376b011 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 xB","129":"A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D","33":"E F A B C K L G M N O n o p q"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","33":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Blob URLs"}; +module.exports={A:{A:{"2":"J D E F yB","129":"A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D","33":"E F A B C K L G M N O o p q r"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","33":"KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB dC eC fC","33":"I gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 33ddd821732b6c..f48aa593c91f19 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","804":"I m J D E F A B C K L zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","260":"JB KB LB MB NB","388":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB","1412":"G M N O n o p q r s t u v w x","1956":"I m J D E F A B C K L"},E:{"1":"tB uB kB BC","129":"A B C K L G 7B rB iB jB 8B 9B AC sB","1412":"J D E F 5B 6B","1956":"I m 3B qB 4B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC","260":"6 7 8 9 AB","388":"0 1 2 3 4 5 G M N O n o p q r s t u v w x y z","1796":"EC FC","1828":"B C iB vB GC jB"},G:{"1":"tB uB kB","129":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB","1412":"E JC KC LC MC","1956":"qB HC wB IC"},H:{"1828":"bC"},I:{"1":"H","388":"gC hC","1956":"lB I cC dC eC fC wB"},J:{"1412":"A","1924":"D"},K:{"1":"Y","2":"A","1828":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"388":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","260":"jC kC","388":"I"},Q:{"260":"uC"},R:{"260":"vC"},S:{"260":"wC"}},B:4,C:"CSS3 Border images"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","260":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","804":"I n J D E F A B C K L 0B 1B"},D:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","260":"KB LB MB NB OB","388":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB","1412":"G M N O o p q r s t u v w x y","1956":"I n J D E F A B C K L"},E:{"1":"uB vB lB CC","129":"A B C K L G 8B sB jB kB 9B AC BC tB","1412":"J D E F 6B 7B","1956":"I n 4B rB 5B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F DC EC","260":"7 8 9 AB BB","388":"0 1 2 3 4 5 6 G M N O o p q r s t u v w x y z","1796":"FC GC","1828":"B C jB wB HC kB"},G:{"1":"uB vB lB","129":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB","1412":"E KC LC MC NC","1956":"rB IC xB JC"},H:{"1828":"cC"},I:{"1":"H","388":"hC iC","1956":"mB I dC eC fC gC xB"},J:{"1412":"A","1924":"D"},K:{"1":"Y","2":"A","1828":"B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"388":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","260":"kC lC","388":"I"},Q:{"260":"vC"},R:{"260":"wC"},S:{"260":"xC"}},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 1c683c25159370..2713a88c7897af 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","257":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","289":"lB zB 0B","292":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I"},E:{"1":"m D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I 3B qB","129":"J 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"qB"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","33":"cC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"257":"wC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","257":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","289":"mB 0B 1B","292":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"I"},E:{"1":"n D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","33":"I 4B rB","129":"J 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"rB"},H:{"2":"cC"},I:{"1":"mB I H eC fC gC xB hC iC","33":"dC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"257":"xC"}},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 9e4ec149550694..bd1cae24d477ed 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:1,C:"BroadcastChannel"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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":"uB vB lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 6e30dce15408dc..22665c9d994666 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB","194":"HB","257":"IB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","513":"B C iB jB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"4 5"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 0B 1B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB","257":"JB"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","513":"B C jB kB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"5 6"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 8d36c8f2329352..bff7d1d37d8aaf 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 xB","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"I m J D E F A B C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O","33":"n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","132":"gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"calc() as CSS unit value"}; +module.exports={A:{A:{"2":"J D E yB","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","33":"I n J D E F A B C K L G"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O","33":"o p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","33":"KC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB","132":"hC iC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 1dc4f0a06dc9ba..54a93dafdf85fc 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Canvas blend modes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2465a57801e03b..f3d8cd3eb5f19e 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":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","8":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","8":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Text API for Canvas"}; +module.exports={A:{A:{"1":"F A B","2":"yB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","8":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","8":"F DC EC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","8":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 e1092115a2c85e..4ad35414df1b39 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":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","132":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"260":"bC"},I:{"1":"lB I H fC wB gC hC","132":"cC dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Canvas (basic support)"}; +module.exports={A:{A:{"1":"F A B","2":"yB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","132":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","132":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"260":"cC"},I:{"1":"mB I H gC xB hC iC","132":"dC eC fC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 ea96945a171c03..c1079c28adba9c 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 xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"ch (character) unit"}; +module.exports={A:{A:{"2":"J D E yB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 818d6098929ade..7cc5f4da96e7fe 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","129":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC","16":"hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 I n J D E F A B C K L G M N O o p q r s t u v w x y z","129":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC","16":"iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 ac54b82541da0a..98653cffed3abe 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B","194":"0 1 2 3 4 5 6 7 8 u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC","16":"EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Channel messaging"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u 0B 1B","194":"0 1 2 3 4 5 6 7 8 9 v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","2":"F DC EC","16":"FC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 bafaffb37380f0..14fb23bc895b93 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"ChildNode.remove()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 6e3399a7d942f0..aa99111ae3ea2f 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 xB","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB","516":"s t","772":"I m J D E F A B C K L G M N O n o p q r 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J D","516":"s t u v","772":"r","900":"E F A B C K L G M N O n o p q"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m 3B qB","900":"J 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"F B CC DC EC FC iB","900":"C vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB","900":"IC JC"},H:{"900":"bC"},I:{"1":"H gC hC","8":"cC dC eC","900":"lB I fC wB"},J:{"1":"A","900":"D"},K:{"1":"Y","8":"A B","900":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"900":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"classList (DOMTokenList)"}; +module.exports={A:{A:{"8":"J D E F yB","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"zB mB 0B","516":"t u","772":"I n J D E F A B C K L G M N O o p q r s 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"I n J D","516":"t u v w","772":"s","900":"E F A B C K L G M N O o p q r"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"I n 4B rB","900":"J 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","8":"F B DC EC FC GC jB","900":"C wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"rB IC xB","900":"JC KC"},H:{"900":"cC"},I:{"1":"H hC iC","8":"dC eC fC","900":"mB I gC xB"},J:{"1":"A","900":"D"},K:{"1":"Y","8":"A B","900":"C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"900":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 4f64ace3c706ca..2534866ebfe186 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 5f77e847d49ecb..6103644085faea 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 xB"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","772":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z","4100":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB","8196":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","10244":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","16":"3B qB","2308":"A B rB iB","2820":"I m J D E F 4B 5B 6B 7B"},F:{"2":"F B CC DC EC FC iB vB GC","16":"C","516":"jB","2564":"G M N O n o p q r s t u v w x","8196":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","10244":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","2820":"E IC JC KC LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","260":"H","2308":"gC hC"},J:{"2":"D","2308":"A"},K:{"2":"A B C iB vB","16":"jB","260":"Y"},L:{"8196":"X"},M:{"1028":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2052":"jC kC","2308":"I","8196":"lC mC nC rB oC pC qC rC sC kB tC"},Q:{"10244":"uC"},R:{"2052":"vC"},S:{"4100":"wC"}},B:5,C:"Synchronous Clipboard API"}; +module.exports={A:{A:{"2436":"J D E F A B yB"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B","772":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z","4100":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"I n J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB","8196":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","10244":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"C K L G kB 9B AC BC tB uB vB lB CC","16":"4B rB","2308":"A B sB jB","2820":"I n J D E F 5B 6B 7B 8B"},F:{"2":"F B DC EC FC GC jB wB HC","16":"C","516":"kB","2564":"G M N O o p q r s t u v w x y","8196":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","10244":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB"},G:{"1":"TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","2820":"E JC KC LC MC NC OC PC QC RC SC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","260":"H","2308":"hC iC"},J:{"2":"D","2308":"A"},K:{"2":"A B C jB wB","16":"kB","260":"Y"},L:{"8196":"H"},M:{"1028":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2052":"kC lC","2308":"I","8196":"mC nC oC sB pC qC rC sC tC lB uC"},Q:{"10244":"vC"},R:{"2052":"wC"},S:{"4100":"xC"}},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 254ce9fd60aecc..4f25884965f23b 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 xB"},B:{"1":"j k l H X","2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i zB 0B","258":"j k l H X pB"},D:{"1":"j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a","194":"b c d e f g h i"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"j k l X m H","2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i 0B 1B","258":"j k l X m H qB"},D:{"1":"j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a","194":"b c d e f g h i"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 4f9d3bf4e2cca0..1644f097216e30 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 xB","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB","513":"aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","129":"B C K iB jB 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB CC DC EC FC iB vB GC jB","513":"QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"1":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; +module.exports={A:{A:{"2":"J D E yB","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB","513":"bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"L G AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","129":"B C K jB kB 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB DC EC FC GC jB wB HC kB","513":"RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"1":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","2":"I kC lC mC nC oC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0def63bfc88fc6..a3726f6b43cd75 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"G M N O n o p q r s t u v w x"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB","132":"D E F 5B 6B 7B","260":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F B CC DC EC FC iB vB","132":"G M"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB","132":"E HC wB IC JC KC LC MC NC"},H:{"1":"bC"},I:{"1":"H gC hC","16":"cC dC","132":"lB I eC fC wB"},J:{"132":"D A"},K:{"1":"C Y jB","16":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Node.compareDocumentPosition()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB mB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","132":"G M N O o p q r s t u v w x y"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","16":"I n J 4B rB","132":"D E F 6B 7B 8B","260":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","16":"F B DC EC FC GC jB wB","132":"G M"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB","132":"E IC xB JC KC LC MC NC OC"},H:{"1":"cC"},I:{"1":"H hC iC","16":"dC eC","132":"mB I fC gC xB"},J:{"132":"D A"},K:{"1":"C Y kB","16":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0208f5421e31be..b26c9b65e15248 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 xB","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"qB HC wB IC","513":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4097":"bC"},I:{"1025":"lB I H cC dC eC fC wB gC hC"},J:{"258":"D A"},K:{"2":"A","258":"B C iB vB jB","1025":"Y"},L:{"1025":"X"},M:{"2049":"H"},N:{"258":"A B"},O:{"258":"iC"},P:{"1025":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1025":"vC"},S:{"1":"wC"}},B:1,C:"Basic console logging functions"}; +module.exports={A:{A:{"1":"A B","2":"J D yB","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F DC EC FC GC"},G:{"1":"rB IC xB JC","513":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"4097":"cC"},I:{"1025":"mB I H dC eC fC gC xB hC iC"},J:{"258":"D A"},K:{"2":"A","258":"B C jB wB kB","1025":"Y"},L:{"1025":"H"},M:{"2049":"X"},N:{"258":"A B"},O:{"258":"jC"},P:{"1025":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1025":"wC"},S:{"1":"xC"}},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 db6eab058554c1..548ad8f994c72c 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC","16":"B"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"console.time and console.timeEnd"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F DC EC FC GC","16":"B"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 e011e247ead875..132ad321326fcd 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 xB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C zB 0B","260":"0 1 2 3 K L G M N O n o p q r s t u v w x y z"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","260":"I m J D E F A B C K L G M N O n o","772":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","1028":"9 AB BB CB DB EB FB GB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","260":"I m A 3B qB rB","772":"J D E F 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC","132":"B DC EC FC iB vB","644":"C GC jB","772":"G M N O n o p q r s t u v","1028":"0 1 2 3 w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","260":"qB HC wB OC PC","772":"E IC JC KC LC MC NC"},H:{"644":"bC"},I:{"1":"H","16":"cC dC","260":"eC","772":"lB I fC wB gC hC"},J:{"772":"D A"},K:{"1":"Y","132":"A B iB vB","644":"C jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","1028":"I"},Q:{"1":"uC"},R:{"1028":"vC"},S:{"1":"wC"}},B:6,C:"const"}; +module.exports={A:{A:{"2":"J D E F A yB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","132":"zB mB I n J D E F A B C 0B 1B","260":"0 1 2 3 4 K L G M N O o p q r s t u v w x y z"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","260":"I n J D E F A B C K L G M N O o p","772":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z","1028":"AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","260":"I n A 4B rB sB","772":"J D E F 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F DC","132":"B EC FC GC jB wB","644":"C HC kB","772":"G M N O o p q r s t u v w","1028":"0 1 2 3 4 x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","260":"rB IC xB PC QC","772":"E JC KC LC MC NC OC"},H:{"644":"cC"},I:{"1":"H","16":"dC eC","260":"fC","772":"mB I gC xB hC iC"},J:{"772":"D A"},K:{"1":"Y","132":"A B jB wB","644":"C kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","1028":"I"},Q:{"1":"vC"},R:{"1028":"wC"},S:{"1":"xC"}},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 c8ef79a25ddac3..b452647782e4ab 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 xB","900":"A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","388":"L G M","900":"C K"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","260":"HB IB","388":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB","900":"I m J D E F A B C K L G M N O n o p q r s t u v w"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","388":"0 1 2 3 4 5 6 7 t u v w x y z","900":"G M N O n o p q r s"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB","388":"E F 6B 7B","900":"J D 4B 5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB vB","388":"G M N O n o p q r s t u","900":"C GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","388":"E KC LC MC NC","900":"IC JC"},H:{"2":"bC"},I:{"1":"H","16":"lB cC dC eC","388":"gC hC","900":"I fC wB"},J:{"16":"D","388":"A"},K:{"1":"Y","16":"A B iB vB","900":"C jB"},L:{"1":"X"},M:{"1":"H"},N:{"900":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"388":"wC"}},B:1,C:"Constraint Validation API"}; +module.exports={A:{A:{"2":"J D E F yB","900":"A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","388":"L G M","900":"C K"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","260":"IB JB","388":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB","900":"I n J D E F A B C K L G M N O o p q r s t u v w x"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","388":"0 1 2 3 4 5 6 7 8 u v w x y z","900":"G M N O o p q r s t"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB","388":"E F 7B 8B","900":"J D 5B 6B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F B DC EC FC GC jB wB","388":"G M N O o p q r s t u v","900":"C HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB","388":"E LC MC NC OC","900":"JC KC"},H:{"2":"cC"},I:{"1":"H","16":"mB dC eC fC","388":"hC iC","900":"I gC xB"},J:{"16":"D","388":"A"},K:{"1":"Y","16":"A B jB wB","900":"C kB"},L:{"1":"H"},M:{"1":"X"},N:{"900":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"388":"xC"}},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 3821034f5558cd..9638d5e4c96d99 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB","4":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"contenteditable attribute (basic support)"}; +module.exports={A:{A:{"1":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB","4":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 28878196c1b05c..cc75a1d95383ea 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 xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","129":"I m J D E F A B C K L G M N O n o p q"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","257":"L G M N O n o p q r s"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","257":"J 5B","260":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","257":"JC","260":"IC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D","257":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"257":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Content Security Policy 1.0"}; +module.exports={A:{A:{"2":"J D E F yB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","129":"I n J D E F A B C K L G M N O o p 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K","257":"L G M N O o p q r s t"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB","257":"J 6B","260":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","257":"KC","260":"JC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D","257":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"257":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f3f28300527cdb..1a4f951ab1bf03 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","4100":"G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","132":"0 1 2 z","260":"3","516":"4 5 6 7 8 9 AB BB CB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","1028":"4 5 6","2052":"7"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB","1028":"r s t","2052":"u"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Content Security Policy Level 2"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L","4100":"G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","132":"0 1 2 3","260":"4","516":"5 6 7 8 9 AB BB CB DB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","1028":"5 6 7","2052":"8"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r DC EC FC GC jB wB HC kB","1028":"s t u","2052":"v"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0c33ae3cc99a34..353b1be3f48e9f 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 xB"},B:{"1":"W Z a b c d e f g h i j k l H X","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 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB","194":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB CC DC EC FC iB vB GC jB","194":"JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Cookie Store API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"W Z a b c d e f g h i j k l X m 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 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB","194":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB DC EC FC GC jB wB HC kB","194":"KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 f58c21733037f8..9ef7e9701dfc02 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 xB","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB","1025":"nB SB TB Y UB VB WB XB YB ZB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C"},E:{"2":"3B qB","513":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","644":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"513":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","644":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","132":"lB I cC dC eC fC wB"},J:{"1":"A","132":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","132":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Cross-Origin Resource Sharing"}; +module.exports={A:{A:{"1":"B","2":"J D yB","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB","1025":"oB TB UB Y VB WB XB YB ZB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C"},E:{"2":"4B rB","513":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","644":"I n 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC"},G:{"513":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","644":"rB IC xB JC"},H:{"2":"cC"},I:{"1":"H hC iC","132":"mB I dC eC fC gC xB"},J:{"1":"A","132":"D"},K:{"1":"C Y kB","2":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","132":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 dbaf37fd45936b..1ceb6a0a342513 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1028":"e f g h i j k l H X pB","3076":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d"},D:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","132":"IB JB","260":"KB LB","516":"MB NB OB PB QB"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B","4100":"G AC sB tB uB kB BC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"5 6","260":"7 8","516":"9 AB BB CB DB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","4100":"aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"3076":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","16":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"3076":"wC"}},B:1,C:"createImageBitmap"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB 0B 1B","1028":"e f g h i j k l X m H qB","3076":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d"},D:{"1":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"JB KB","260":"LB MB","516":"NB OB PB QB RB"},E:{"2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B AC","4100":"G BC tB uB vB lB CC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","132":"6 7","260":"8 9","516":"AB BB CB DB EB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","4100":"bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"3076":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","16":"I kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"3076":"xC"}},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 ef0dd53a6e2258..5bfc4ae670a3cd 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","66":"GB HB IB","129":"JB KB LB MB NB OB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Credential Management API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","66":"HB IB JB","129":"KB LB MB NB OB PB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB DC EC FC GC jB wB HC kB"},G:{"1":"ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 45b7ffb3040d43..c05add40f85ebd 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":"xB","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","513":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","66":"0 1"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","8":"I m J D 3B qB 4B 5B","289":"E F A 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB IC JC KC","289":"E LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","8":"lB I cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A","164":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Web Cryptography"}; +module.exports={A:{A:{"2":"yB","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","513":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"0 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","66":"1 2"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","8":"I n J D 4B rB 5B 6B","289":"E F A 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","8":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"rB IC xB JC KC LC","289":"E MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","8":"mB I dC eC fC gC xB hC iC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A","164":"B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 1340935cd4d4c8..cefa2ec69246da 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS all property"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v 0B 1B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC"},H:{"2":"cC"},I:{"1":"H iC","2":"mB I dC eC fC gC xB hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 6fe719ae93565a..5ebd5a1216ca86 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I zB 0B","33":"m J D E F A B C K L G"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB","33":"J D E 4B 5B 6B","292":"I m"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","33":"C G M N O n o p q r s t u v w x"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E JC KC LC","164":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H","33":"I fC wB gC hC","164":"lB cC dC eC"},J:{"33":"D A"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS Animation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I 0B 1B","33":"n J D E F A B C K L G"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB","33":"J D E 5B 6B 7B","292":"I n"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC","33":"C G M N O o p q r s t u v w x y"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"E KC LC MC","164":"rB IC xB JC"},H:{"2":"cC"},I:{"1":"H","33":"I gC xB hC iC","164":"mB dC eC fC"},J:{"33":"D A"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 99238a0e4cea94..013446722ca684 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB","33":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB 4B","33":"D E 5B 6B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC","33":"E JC KC LC"},H:{"2":"bC"},I:{"1":"H","16":"lB I cC dC eC fC wB","33":"gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","16":"I","33":"jC kC lC mC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},B:5,C:"CSS :any-link selector"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB","33":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 0B 1B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n J 4B rB 5B","33":"D E 6B 7B"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB JC","33":"E KC LC MC"},H:{"2":"cC"},I:{"1":"H","16":"mB I dC eC fC gC xB","33":"hC iC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"33":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","16":"I","33":"kC lC mC nC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"33":"xC"}},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 a2629f6822fc34..f24aeb040208bb 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 xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R oB S T U V W Z a b c d e f g h i j k l H X pB","164":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","676":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R"},E:{"1":"tB uB kB BC","164":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"ZB aB bB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB"},G:{"1":"tB uB kB","164":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","164":"lB I cC dC eC fC wB gC hC"},J:{"164":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","388":"B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"164":"wC"}},B:5,C:"CSS Appearance"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"T U V W Z a b c d e f g h i j k l X m H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","164":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","676":"0 1 2 3 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R"},E:{"1":"uB vB lB CC","164":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"1":"dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"aB bB cB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB"},G:{"1":"uB vB lB","164":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"1":"H","164":"mB I dC eC fC gC xB hC iC"},J:{"164":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","388":"B"},O:{"164":"jC"},P:{"164":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"164":"vC"},R:{"164":"wC"},S:{"164":"xC"}},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 db4953fd5bb0a7..facc9a139c065d 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","132":"c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","132":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB CC DC EC FC iB vB GC jB","132":"gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","132":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC","132":"kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"132":"wC"}},B:4,C:"CSS Counter Styles"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","132":"c d e f g h i j k l X m H"},C:{"2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","132":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b","132":"c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB DC EC FC GC jB wB HC kB","132":"hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","132":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","132":"Y"},L:{"132":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC","132":"lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"132":"xC"}},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 c69c0975145dc8..5ccebb576bd31b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g"},L:{"1":"X"},B:{"1":"h i j k l H X","2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g"},C:{"1":"V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U zB 0B"},M:{"1":"H"},A:{"2":"J D E F A B xB"},F:{"1":"oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R"},K:{"2":"A B C iB vB jB","33":"Y"},E:{"1":"G AC sB tB uB kB","2":"BC","33":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B"},G:{"1":"aC sB tB uB kB","33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"}},B:6,C:":autofill CSS pseudo-class"}; +module.exports={A:{D:{"1":"h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g"},L:{"1":"H"},B:{"1":"h i j k l X m H","2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g"},C:{"1":"V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U 0B 1B"},M:{"1":"X"},A:{"2":"J D E F A B yB"},F:{"1":"pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R"},K:{"2":"A B C jB wB kB","33":"Y"},E:{"1":"G BC tB uB vB lB","2":"CC","33":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B AC"},G:{"1":"bC tB uB vB lB","33":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},I:{"1":"H","2":"mB I dC eC fC gC xB","33":"hC iC"}},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 9d5497fb74047a..8dba4147ee311d 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","257":"N O"},C:{"1":"pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB zB 0B","578":"ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X"},D:{"1":"fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},E:{"2":"I m J D E 3B qB 4B 5B 6B","33":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","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"},G:{"2":"E qB HC wB IC JC KC LC","33":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"578":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I","194":"jC kC lC mC nC rB oC"},Q:{"194":"uC"},R:{"194":"vC"},S:{"2":"wC"}},B:7,C:"CSS Backdrop Filter"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M","257":"N O"},C:{"1":"H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB 0B 1B","578":"aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m"},D:{"1":"gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB"},E:{"2":"I n J D E 4B rB 5B 6B 7B","33":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"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"},G:{"2":"E rB IC xB JC KC LC MC","33":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"578":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"qC rC sC tC lB uC","2":"I","194":"kC lC mC nC oC sB pC"},Q:{"194":"vC"},R:{"194":"wC"},S:{"2":"xC"}},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 266de459caa907..be5c40198db330 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS background-position edge offsets"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f6dc6b4cf400eb..93595230d04964 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","260":"EB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","132":"E F A 6B 7B"},F:{"1":"0 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB","260":"1"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","132":"E LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS background-blend-mode"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y 0B 1B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z","260":"FB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B","132":"E F A 7B 8B"},F:{"1":"0 1 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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q DC EC FC GC jB wB HC kB","260":"2"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC","132":"E MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 4181e4581be854..4c69c2301ff82c 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 xB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"2":"I m J D E F A B C K L G M N O n o p","164":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J 3B qB 4B","164":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F CC DC EC FC","129":"B C iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC","164":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"2":"lB I cC dC eC fC wB","164":"H gC hC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C iB vB jB","164":"Y"},L:{"164":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"1":"wC"}},B:5,C:"CSS box-decoration-break"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"2":"I n J D E F A B C K L G M N O o p q","164":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J 4B rB 5B","164":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F DC EC FC GC","129":"B C jB wB HC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC xB JC KC","164":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"132":"cC"},I:{"2":"mB I dC eC fC gC xB","164":"H hC iC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C jB wB kB","164":"Y"},L:{"164":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"164":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"164":"vC"},R:{"164":"wC"},S:{"1":"xC"}},B:5,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 138dbdb3c653b4..c5532672128ad2 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","33":"zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I m J D E F"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"m","164":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"HC wB","164":"qB"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","164":"lB cC dC eC"},J:{"1":"A","33":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 Box-shadow"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","33":"0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"I n J D E F"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","33":"n","164":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"IC xB","164":"rB"},H:{"2":"cC"},I:{"1":"I H gC xB hC iC","164":"mB dC eC fC"},J:{"1":"A","33":"D"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 315eecca9d3302..50ca1dfa0d0493 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"3B qB","33":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"3 4 5 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","33":"0 1 2 G M N O n o p q r s t u v w x y z"},G:{"33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"H","33":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"CSS Canvas Drawings"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"4B rB","33":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"4 5 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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","33":"0 1 2 3 G M N O o p q r s t u v w x y z"},G:{"33":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"H","33":"mB I dC eC fC gC xB hC iC"},J:{"33":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"kC lC mC nC oC sB pC qC rC sC tC lB uC","33":"I"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 03fe9db07d54dc..4adac34e1f51f9 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"CSS caret-color"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B"},D:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r 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":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:4,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 1eab7e966f6b01..9790a9f3c1d829 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 xB"},B:{"1":"k l H X","2":"C K L G M N O P Q R S T U V W Z a b c d e f g","322":"h i j"},C:{"1":"i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e zB 0B","194":"f g h"},D:{"1":"k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g","322":"h i j"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Cascade Layers"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"k l X m H","2":"C K L G M N O P Q R S T U V W Z a b c d e f g","322":"h i j"},C:{"1":"i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e 0B 1B","194":"f g h"},D:{"1":"k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g","322":"h i j"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"1":"V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U DC EC FC GC jB wB HC kB"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 0f784824b70047..3565d2276ddcd4 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 e63ffc0d6507ae..8610fb13f8465f 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 xB"},B:{"2":"C K L G M N","260":"P Q R S T U V W Z a b c d e f g h i j k l H X","3138":"O"},C:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","132":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","644":"FB GB HB IB JB KB LB"},D:{"2":"I m J D E F A B C K L G M N O n o p q r","260":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","292":"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"},E:{"2":"I m J 3B qB 4B 5B","260":"L G 8B 9B AC sB tB uB kB BC","292":"D E F A B C K 6B 7B rB iB jB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","292":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z"},G:{"2":"qB HC wB IC JC","260":"UC VC WC XC YC ZC aC sB tB uB kB","292":"E KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","260":"H","292":"gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","260":"Y"},L:{"260":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"292":"iC"},P:{"292":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"292":"uC"},R:{"260":"vC"},S:{"644":"wC"}},B:4,C:"CSS clip-path property (for HTML)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N","260":"P Q R S T U V W Z a b c d e f g h i j k l X m H","3138":"O"},C:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","132":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B","644":"GB HB IB JB KB LB MB"},D:{"2":"I n J D E F A B C K L G M N O o p q r s","260":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","292":"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"},E:{"2":"I n J 4B rB 5B 6B","260":"L G 9B AC BC tB uB vB lB CC","292":"D E F A B C K 7B 8B sB jB kB"},F:{"2":"F B C DC EC FC GC jB wB HC kB","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","292":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB"},G:{"2":"rB IC xB JC KC","260":"VC WC XC YC ZC aC bC tB uB vB lB","292":"E LC MC NC OC PC QC RC SC TC UC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","260":"H","292":"hC iC"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","260":"Y"},L:{"260":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"292":"jC"},P:{"292":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"292":"vC"},R:{"260":"wC"},S:{"644":"xC"}},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 0fee736dfebac4..37005b3893436d 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 xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"16":"I m J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m 3B qB 4B","33":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"16":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"lB I cC dC eC fC wB gC hC","33":"H"},J:{"16":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"16":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"16":"vC"},S:{"1":"wC"}},B:5,C:"CSS color-adjust"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 0B 1B"},D:{"16":"I n J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n 4B rB 5B","33":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"16":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"16":"mB I dC eC fC gC xB hC iC","33":"H"},J:{"16":"D A"},K:{"2":"A B C jB wB kB","33":"Y"},L:{"16":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"16":"jC"},P:{"16":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"16":"wC"},S:{"1":"xC"}},B:5,C:"CSS 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 e00de0bada4710..b9909e7cfd5821 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","132":"B C K L rB iB jB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","132":"PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS color() function"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"G BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B","132":"B C K L sB jB kB 9B AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC","132":"QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 f81a7a6ced9094..e4d5b21d49aea6 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB zB 0B","578":"eB fB gB hB P Q R oB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"mB RB nB SB TB Y UB VB WB XB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB CC DC EC FC iB vB GC jB","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Conical Gradients"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB 0B 1B","578":"fB gB hB iB P Q R pB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"nB SB oB TB UB Y VB WB XB YB"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB DC EC FC GC jB wB HC kB","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","2":"I kC lC mC nC oC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 1db7396fa766b6..3c07b2002786aa 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c","194":"e f g h i j k l H X pB 1B 2B","450":"d"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB CC DC EC FC iB vB GC jB","194":"P Q R oB S T U V W"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Container Queries (Size)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c","194":"e f g h i j k l X m H qB 2B 3B","450":"d"},E:{"1":"lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB DC EC FC GC jB wB HC kB","194":"P Q R pB S T U V W"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 5874f5385840d8..f021b525dd6e5a 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d","194":"H X pB 1B","450":"e f g h i j k l"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB CC DC EC FC iB vB GC jB","194":"P Q R oB S T U V W"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Container Query Units"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d","194":"X m H qB","450":"e f g h i j k l"},E:{"1":"lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB DC EC FC GC jB wB HC kB","194":"P Q R pB S T U V W"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 7ee131f6cd8b52..0505f8a8fbbf51 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},D:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","66":"JB"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"6 7"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},B:2,C:"CSS Containment"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB"},D:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","66":"KB"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","66":"7 8"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"194":"xC"}},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 4e4c57469e4188..db44a77e67d6d4 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 xB"},B:{"1":"U V W Z a b c d e f g h i j k l H X","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 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS content-visibility"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"U V W Z a b c d e f g h i j k l X m 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 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 920971290ac477..10a320e483cbd8 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS Counters"}; +module.exports={A:{A:{"1":"E F A B","2":"J D yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 430618facd7fc7..586ea1a403ffab 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 xB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"e f g h i j k l H X pB","2":"yB lB zB","513":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d","545":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","1025":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","164":"J","4644":"D E F 5B 6B 7B"},F:{"2":"F B G M N O n o p q r s t u v CC DC EC FC iB vB","545":"C GC jB","1025":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","4260":"IC JC","4644":"E KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B iB vB","545":"C jB","1025":"Y"},L:{"1025":"X"},M:{"545":"H"},N:{"2340":"A B"},O:{"1":"iC"},P:{"1025":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1025":"uC"},R:{"1025":"vC"},S:{"4097":"wC"}},B:7,C:"Crisp edges/pixelated images"}; +module.exports={A:{A:{"2":"J yB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"e f g h i j k l X m H qB","2":"zB mB 0B","513":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d","545":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","1025":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","164":"J","4644":"D E F 6B 7B 8B"},F:{"2":"F B G M N O o p q r s t u v w DC EC FC GC jB wB","545":"C HC kB","1025":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","4260":"JC KC","4644":"E LC MC NC OC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B jB wB","545":"C kB","1025":"Y"},L:{"1025":"H"},M:{"545":"X"},N:{"2340":"A B"},O:{"1":"jC"},P:{"1025":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1025":"vC"},R:{"1025":"wC"},S:{"4097":"xC"}},B:7,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 bccaa12e8d8274..21dc2130dc4ffb 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 xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"I m J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","33":"J D E F 4B 5B 6B 7B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","33":"E IC JC KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","33":"H gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"2":"wC"}},B:4,C:"CSS Cross-Fade Function"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"I n J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB","33":"J D E F 5B 6B 7B 8B"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","33":"E JC KC LC MC NC OC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","33":"H hC iC"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","33":"Y"},L:{"33":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"33":"jC"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"33":"wC"},S:{"2":"xC"}},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 18a6a85d9dfe99..70836bf5ee5f04 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB","132":"J D E F A 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB vB","132":"0 1 2 3 4 5 G M N O n o p q r s t u v w x y z","260":"C GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","132":"E KC LC MC NC OC"},H:{"260":"bC"},I:{"1":"H","16":"lB cC dC eC","132":"I fC wB gC hC"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C iB vB","260":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,C:":default CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB mB 0B 1B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p 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 sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB","132":"J D E F A 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F B DC EC FC GC jB wB","132":"0 1 2 3 4 5 6 G M N O o p q r s t u v w x y z","260":"C HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB JC KC","132":"E LC MC NC OC PC"},H:{"260":"cC"},I:{"1":"H","16":"mB dC eC fC","132":"I gC xB hC iC"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C jB wB","260":"kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","132":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},B:7,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 23361213b03a0d..282cab9a4761d6 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 xB"},B:{"2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k l H X","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"B","2":"I m J D E F A C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Explicit descendant combinator >>"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k l X m H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"B","2":"I n J D E F A C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 3a5a295da03a70..9c151abe1e0eee 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 xB","164":"A B"},B:{"66":"P Q R S T U V W Z a b c d e f g h i j k l H X","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"I m J D E F A B C K L G M N O n o p q r s t u v w","66":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"292":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A Y","292":"B C iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"164":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"66":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Device Adaptation"}; +module.exports={A:{A:{"2":"J D E F yB","164":"A B"},B:{"66":"P Q R S T U V W Z a b c d e f g h i j k l X m H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"I n J D E F A B C K L G M N O o p q r s t u v w x","66":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","66":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"292":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A Y","292":"B C jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"164":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"66":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 84fd0687001763..6bcfd1555c46a7 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","194":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"33":"wC"}},B:5,C:":dir() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b","194":"c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"33":"xC"}},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 2def5147965f84..0c08292131dcbb 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 xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","260":"P Q R S T U V W Z"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","260":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y","260":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z"},E:{"1":"kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","260":"L G 8B 9B AC sB tB uB","772":"C K iB jB"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB","260":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC","260":"XC YC ZC aC sB tB uB","772":"RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC","260":"nC rB oC pC qC rC"},Q:{"260":"uC"},R:{"2":"vC"},S:{"260":"wC"}},B:5,C:"CSS display: contents"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"a b c d e f g h i j k l X m H","2":"C K L G M N O","260":"P Q R S T U V W Z"},C:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","260":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB"},D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB Y","260":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z"},E:{"1":"lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB","260":"L G 9B AC BC tB uB vB","772":"C K jB kB"},F:{"1":"gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB DC EC FC GC jB wB HC kB","260":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC","260":"YC ZC aC bC tB uB vB","772":"SC TC UC VC WC XC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"tC lB uC","2":"I kC lC mC nC","260":"oC sB pC qC rC sC"},Q:{"260":"vC"},R:{"2":"wC"},S:{"260":"xC"}},B:5,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 e4e4b34f6801bd..8dd5bb9c93b1d3 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","164":"yB lB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"33":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"33":"wC"}},B:5,C:"CSS element() function"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","164":"zB mB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"33":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"33":"xC"}},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 c98ae64e7cf156..6879a6f80cbdf8 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y zB 0B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","132":"B"},F:{"1":"OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","132":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"CSS Environment Variables env()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y 0B 1B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","132":"B"},F:{"1":"PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC","132":"RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","2":"I kC lC mC nC oC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 8dfc78d7c145d8..73a5bcf35bbbfa 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 xB","33":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"33":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Exclusions Level 1"}; +module.exports={A:{A:{"2":"J D E F yB","33":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l X m H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"33":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 00a5e52250cafb..10844a5cd3849a 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS Feature Queries"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B C DC EC FC GC jB wB HC"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 4cba29f86fe401..b1b57922516040 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":"a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z"},L:{"1":"X"},B:{"1":"a b c d e f g h i j k l H X","33":"C K L G M N O P Q R S T U V W Z"},C:{"1":"oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R zB 0B"},M:{"1":"H"},A:{"2":"J D E F xB","33":"A B"},F:{"1":"eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB"},K:{"1":"Y","2":"A B C iB vB jB"},E:{"1":"G 9B AC sB tB uB kB","2":"BC","33":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},G:{"1":"ZC aC sB tB uB kB","33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},P:{"1":"sC kB tC","33":"I jC kC lC mC nC rB oC pC qC rC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; +module.exports={A:{D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z"},L:{"1":"H"},B:{"1":"a b c d e f g h i j k l X m H","33":"C K L G M N O P Q R S T U V W Z"},C:{"1":"pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R 0B 1B"},M:{"1":"X"},A:{"2":"J D E F yB","33":"A B"},F:{"1":"fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB"},K:{"1":"Y","2":"A B C jB wB kB"},E:{"1":"G AC BC tB uB vB lB","2":"CC","33":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B"},G:{"1":"aC bC tB uB vB lB","33":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},P:{"1":"tC lB uC","33":"I kC lC mC nC oC sB pC qC rC sC"},I:{"1":"H","2":"mB I dC eC fC gC xB","33":"hC iC"}},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 2b5e57b604cd10..a4ec11ce2878e8 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","33":"MC NC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS filter() function"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC","33":"NC OC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 e843123684c6cf..a5293f0259f79f 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","1028":"K L G M N O","1346":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","196":"2","516":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z 0B"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J D E F 5B 6B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 G M N O n o p q r s t u v w x y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"E JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","33":"I jC kC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS Filter Effects"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","1028":"K L G M N O","1346":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B","196":"3","516":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O o p 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 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","33":"J D E F 6B 7B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 G M N O o p q r s t u v w x y z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","33":"E KC LC MC NC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB","33":"hC iC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","33":"I kC lC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 13752ba8918025..2964b5c745123b 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":"xB","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","132":"lB","260":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"m J D E","132":"I"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"m 3B","132":"I qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F CC","260":"B DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","16":"cC dC","132":"eC"},J:{"1":"D A"},K:{"1":"C Y jB","260":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; +module.exports={A:{A:{"1":"F A B","16":"yB","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","132":"mB","260":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"n J D E","132":"I"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"n 4B","132":"I rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","16":"F DC","260":"B EC FC GC jB wB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"1":"cC"},I:{"1":"mB I H gC xB hC iC","16":"dC eC","132":"fC"},J:{"1":"D A"},K:{"1":"C Y kB","260":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f3464402c8474c..fcbe6c38eb20cb 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS first-line pseudo-element"}; +module.exports={A:{A:{"1":"F A B","132":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7748f74b109672..ad7052e35a8d7a 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":"xB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B rB iB jB 8B 9B AC sB tB uB kB BC","1025":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","132":"IC JC KC"},H:{"2":"bC"},I:{"1":"lB H gC hC","260":"cC dC eC","513":"I fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS position:fixed"}; +module.exports={A:{A:{"1":"D E F A B","2":"yB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B sB jB kB 9B AC BC tB uB vB lB CC","1025":"8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","132":"JC KC LC"},H:{"2":"cC"},I:{"1":"mB H hC iC","260":"dC eC fC","513":"I gC xB"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 6cd82736435d04..d33575ef0bf427 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 xB"},B:{"1":"V W Z a b c d e f g h i j k l H X","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","161":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T"},D:{"1":"V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB","328":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B","578":"G AC sB"},F:{"1":"bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB","328":"VB WB XB YB ZB aB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","578":"aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"161":"wC"}},B:7,C:":focus-visible CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","161":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T"},D:{"1":"V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB","328":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B AC","578":"G BC tB"},F:{"1":"cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB DC EC FC GC jB wB HC kB","328":"WB XB YB ZB aB bB"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","578":"bC tB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"161":"xC"}},B:7,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 58553c81b664d1..87a79311e03966 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"mB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB CC DC EC FC iB vB GC jB","194":"EB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:7,C:":focus-within CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B"},D:{"1":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"nB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB DC EC FC GC jB wB HC kB","194":"FB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"16":"wC"},S:{"2":"xC"}},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 9222524d8824fd..dd4e385e03949a 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS font-palette"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 401d0d688a6a01..efa737eeeff9c4 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB zB 0B","194":"EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB","66":"HB IB JB KB LB MB NB OB PB QB mB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"4 5 6 7 8 9 AB BB CB DB EB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","66":"jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},B:5,C:"CSS font-display"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB 0B 1B","194":"FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB","66":"IB JB KB LB MB NB OB PB QB RB nB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","66":"5 6 7 8 9 AB BB CB DB EB FB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I","66":"kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"194":"xC"}},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 a9471f5e0b5b31..504cddc1940bf6 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E zB 0B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS font-stretch"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E 0B 1B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 bc835f55f48414..dc42a120dbf5d6 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 xB","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS Generated content for pseudo-elements"}; +module.exports={A:{A:{"1":"F A B","2":"J D yB","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 edc2dbd20735ee..8be59b62d15fa4 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","260":"0 1 2 3 M N O n o p q r s t u v w x y z","292":"I m J D E F A B C K L G 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"A B C K L G M N O n o p q r s t","548":"I m J D E F"},E:{"1":"tB uB kB BC","2":"3B qB","260":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB","292":"J 4B","804":"I m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC","33":"C GC","164":"iB vB"},G:{"1":"tB uB kB","260":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB","292":"IC JC","804":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","33":"I fC wB","548":"lB cC dC eC"},J:{"1":"A","548":"D"},K:{"1":"Y jB","2":"A B","33":"C","164":"iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B","260":"0 1 2 3 4 M N O o p q r s t u v w x y z","292":"I n J D E F A B C K L G 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"A B C K L G M N O o p q r s t u","548":"I n J D E F"},E:{"1":"uB vB lB CC","2":"4B rB","260":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB","292":"J 5B","804":"I n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC","33":"C HC","164":"jB wB"},G:{"1":"uB vB lB","260":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB","292":"JC KC","804":"rB IC xB"},H:{"2":"cC"},I:{"1":"H hC iC","33":"I gC xB","548":"mB dC eC fC"},J:{"1":"A","548":"D"},K:{"1":"Y kB","2":"A B","33":"C","164":"jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 787e1b8f908bc8..65ec797d8c1c46 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"CSS Grid animation"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 2d99e2032c7395..1b9abd33a6db9c 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 xB","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","292":"C K L G"},C:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B","8":"0 1 2 3 4 5 6 7 n o p q r s t u v w x y z","584":"8 9 AB BB CB DB EB FB GB HB IB JB","1025":"KB LB"},D:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s","8":"t u v w","200":"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","1025":"PB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","8":"J D E F A 5B 6B 7B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB","200":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","8":"E JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC","8":"wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"292":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"jC","8":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:4,C:"CSS Grid Layout (level 1)"}; +module.exports={A:{A:{"2":"J D E yB","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","292":"C K L G"},C:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O 0B 1B","8":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z","584":"9 AB BB CB DB EB FB GB HB IB JB KB","1025":"LB MB"},D:{"1":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t","8":"u v w x","200":"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","1025":"QB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","8":"J D E F A 6B 7B 8B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w DC EC FC GC jB wB HC kB","200":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","8":"E KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC","8":"xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"292":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"kC","8":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 9edec346a764c6..1ee5aa131c1f83 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS hanging-punctuation"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 d68495d901d1d2..35562454b222ed 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l","194":"H X pB 1B"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:":has() CSS relational pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l","194":"X m H qB"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,C:":has() CSS relational pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js index c7ee8238a924a5..20dc834bae7ecd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphenate.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"16":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"16":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"16":"X"},M:{"16":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"16":"wC"}},B:5,C:"CSS4 Hyphenation"}; +module.exports={A:{A:{"16":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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:{"16":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"16":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"16":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"16":"A B C Y jB wB kB"},L:{"16":"H"},M:{"16":"X"},N:{"16":"A B"},O:{"16":"jC"},P:{"16":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"16":"vC"},R:{"16":"wC"},S:{"16":"xC"}},B:5,C:"CSS4 Hyphenation"}; 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 3c4a6e3a0eba0d..a1935c71d75a1a 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 xB","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R S T U V W","260":"Z a b c d e f g h i j k l H X"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},D:{"1":"Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","132":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W"},E:{"2":"I m 3B qB","33":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC","33":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"4":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","132":"jC"},Q:{"2":"uC"},R:{"132":"vC"},S:{"1":"wC"}},B:5,C:"CSS Hyphenation"}; +module.exports={A:{A:{"2":"J D E F yB","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R S T U V W","260":"Z a b c d e f g h i j k l X m H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},D:{"1":"Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","132":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W"},E:{"2":"I n 4B rB","33":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB","132":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC","33":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"4":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I","132":"kC"},Q:{"2":"vC"},R:{"132":"wC"},S:{"1":"xC"}},B:5,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 74753cc218b20f..18d7da0a9e304b 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 xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O P Q","257":"R S T U V W Z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q","257":"R S T U V W Z"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"XB YB ZB aB bB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB CC DC EC FC iB vB GC jB","257":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"YC ZC aC sB tB uB kB","132":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"qC rC sC kB tC","2":"I jC kC lC mC nC rB oC pC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 image-orientation"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"a b c d e f g h i j k l X m H","2":"C K L G M N O P Q","257":"R S T U V W Z"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u 0B 1B"},D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q","257":"R S T U V W Z"},E:{"1":"L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB"},F:{"1":"YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB DC EC FC GC jB wB HC kB","257":"dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"ZC aC bC tB uB vB lB","132":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"rC sC tC lB uC","2":"I kC lC mC nC oC sB pC qC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 9599954f686faa..a7bf263963e520 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 xB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U zB 0B","66":"V W","257":"a b c d e f g h i j k l H X pB","772":"Z"},D:{"2":"I m J D E F A B C K L G M N O n o","164":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m 3B qB 4B","132":"A B C K rB iB jB 8B","164":"J D E F 5B 6B 7B","516":"L G 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC","132":"OC PC QC RC SC TC UC VC WC XC","164":"E JC KC LC MC NC","516":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","164":"H gC hC"},J:{"2":"D","164":"A"},K:{"2":"A B C iB vB jB","164":"Y"},L:{"164":"X"},M:{"257":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"2":"wC"}},B:5,C:"CSS image-set"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U 0B 1B","66":"V W","257":"a b c d e f g h i j k l X m H qB","772":"Z"},D:{"2":"I n J D E F A B C K L G M N O o p","164":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n 4B rB 5B","132":"A B C K sB jB kB 9B","164":"J D E F 6B 7B 8B","516":"L G AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC xB JC","132":"PC QC RC SC TC UC VC WC XC YC","164":"E KC LC MC NC OC","516":"ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","164":"H hC iC"},J:{"2":"D","164":"A"},K:{"2":"A B C jB wB kB","164":"Y"},L:{"164":"H"},M:{"257":"X"},N:{"2":"A B"},O:{"164":"jC"},P:{"164":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"164":"vC"},R:{"164":"wC"},S:{"2":"xC"}},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 f46b2c96e04696..ed83704f3a33c1 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C","260":"K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","516":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","16":"m J D E F A B C K L","260":"KB","772":"0 1 2 3 4 5 6 7 8 9 G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","772":"J D E F A 4B 5B 6B 7B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","260":"7 B C DC EC FC iB vB GC jB","772":"0 1 2 3 4 5 6 G M N O n o p q r s t u v w x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","772":"E IC JC KC LC MC NC OC"},H:{"132":"bC"},I:{"1":"H","2":"lB cC dC eC","260":"I fC wB gC hC"},J:{"2":"D","260":"A"},K:{"1":"Y","260":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","260":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"516":"wC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C","260":"K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B","516":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I","16":"n J D E F A B C K L","260":"LB","772":"0 1 2 3 4 5 6 7 8 9 G M N O o p q 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n","772":"J D E F A 5B 6B 7B 8B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F DC","260":"8 B C EC FC GC jB wB HC kB","772":"0 1 2 3 4 5 6 7 G M N O o p q r s t u v w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","772":"E JC KC LC MC NC OC PC"},H:{"132":"cC"},I:{"1":"H","2":"mB dC eC fC","260":"I gC xB hC iC"},J:{"2":"D","260":"A"},K:{"1":"Y","260":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","260":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"516":"xC"}},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 e46ac2b943df4e..75abbb065a5772 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 xB","132":"A B","388":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","388":"I m"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"0 1 2 3 4 5 6 G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB","132":"D E F A 5B 6B 7B","388":"4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB vB","132":"G M N O n o p q r s t","516":"C GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","132":"E KC LC MC NC OC"},H:{"516":"bC"},I:{"1":"H","16":"lB cC dC eC hC","132":"gC","388":"I fC wB"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C iB vB","516":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},B:7,C:":indeterminate CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E yB","132":"A B","388":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB mB 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","388":"I n"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","132":"0 1 2 3 4 5 6 7 G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","16":"I n J 4B rB","132":"D E F A 6B 7B 8B","388":"5B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F B DC EC FC GC jB wB","132":"G M N O o p q r s t u","516":"C HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB JC KC","132":"E LC MC NC OC PC"},H:{"516":"cC"},I:{"1":"H","16":"mB dC eC fC iC","132":"hC","388":"I gC xB"},J:{"16":"D","132":"A"},K:{"1":"Y","16":"A B C jB wB","516":"kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"132":"xC"}},B:7,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 7e421f80d18e72..1af7602058005c 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E 3B qB 4B 5B 6B","4":"F","164":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC","164":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Initial Letter"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E 4B rB 5B 6B 7B","4":"F","164":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC","164":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 672fe29a45f660..30a94e1bee9b71 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"I m J D E F A B C K L G M N O zB 0B","164":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS initial value"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","33":"I n J D E F A B C K L G M N O 0B 1B","164":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7bf9816422a46a..5a9c35b2595fc3 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"LCH and Lab color values"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"G BC tB uB vB lB CC","2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 1c1dfbfacc9120..b73b97d93ca550 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":"xB","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B","132":"I m J qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C G M DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"H gC hC","16":"cC dC","132":"lB I eC fC wB"},J:{"132":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"letter-spacing CSS property"}; +module.exports={A:{A:{"1":"F A B","16":"yB","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B","132":"I n J rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F DC","132":"B C G M EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"2":"cC"},I:{"1":"H hC iC","16":"dC eC","132":"mB I fC gC xB"},J:{"132":"D A"},K:{"1":"Y","132":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 42743ef1927e77..cb9428440fb4e3 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 xB"},B:{"2":"C K L G M","33":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB zB 0B","33":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"16":"I m J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I 3B qB","33":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB","33":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"cC dC","33":"lB I H eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"33":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"2":"wC"}},B:5,C:"CSS line-clamp"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB 0B 1B","33":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"16":"I n J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I 4B rB","33":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC xB","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"16":"dC eC","33":"mB I H fC gC xB hC iC"},J:{"33":"D A"},K:{"2":"A B C jB wB kB","33":"Y"},L:{"33":"H"},M:{"33":"X"},N:{"2":"A B"},O:{"33":"jC"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"33":"wC"},S:{"2":"xC"}},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 156597e0d3f279..2d14e33427cfe9 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 xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","1028":"W Z","1540":"P Q R S T U V"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","164":"0 1 2 3 4 5 6 7 8 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1540":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","292":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB","1028":"W Z","1540":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V"},E:{"1":"G AC sB tB uB kB BC","292":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","1028":"9B","1540":"K L jB 8B"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","292":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1028":"dB eB","1540":"OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB"},G:{"1":"aC sB tB uB kB","292":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","1028":"ZC","1540":"TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","292":"lB I cC dC eC fC wB gC hC"},J:{"292":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"292":"iC"},P:{"1":"sC kB tC","292":"I jC kC lC mC nC","1540":"rB oC pC qC rC"},Q:{"1540":"uC"},R:{"1540":"vC"},S:{"1540":"wC"}},B:5,C:"CSS Logical Properties"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"a b c d e f g h i j k l X m H","2":"C K L G M N O","1028":"W Z","1540":"P Q R S T U V"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB","164":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","1540":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB"},D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","292":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB","1028":"W Z","1540":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V"},E:{"1":"G BC tB uB vB lB CC","292":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB","1028":"AC","1540":"K L kB 9B"},F:{"1":"gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","292":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","1028":"eB fB","1540":"PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB"},G:{"1":"bC tB uB vB lB","292":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC","1028":"aC","1540":"UC VC WC XC YC ZC"},H:{"2":"cC"},I:{"1":"H","292":"mB I dC eC fC gC xB hC iC"},J:{"292":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"292":"jC"},P:{"1":"tC lB uC","292":"I kC lC mC nC oC","1540":"sB pC qC rC sC"},Q:{"1540":"vC"},R:{"1540":"wC"},S:{"1540":"xC"}},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 d4683fbcf6c516..9c5570f51b569f 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 xB"},B:{"1":"V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S T U"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB zB 0B"},D:{"1":"V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U"},E:{"1":"BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","129":"C K L G iB jB 8B 9B AC sB tB uB kB"},F:{"1":"bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS ::marker pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O P Q R S T U"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB 0B 1B"},D:{"1":"V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U"},E:{"1":"CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB","129":"C K L G jB kB 9B AC BC tB uB vB lB"},F:{"1":"cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 1f111e76ef6e1e..2d7d2f05670346 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 xB"},B:{"2":"C K L G M","164":"P Q R S T U V W Z a b c d e f g h i j k l H X","3138":"N","12292":"O"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"tB uB kB BC","2":"3B qB","164":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"tB uB kB","164":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"164":"H gC hC","676":"lB I cC dC eC fC wB"},J:{"164":"D A"},K:{"2":"A B C iB vB jB","164":"Y"},L:{"164":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"260":"wC"}},B:4,C:"CSS Masks"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M","164":"P Q R S T U V W Z a b c d e f g h i j k l X m H","3138":"N","12292":"O"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","260":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"uB vB lB CC","2":"4B rB","164":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"2":"F B C DC EC FC GC jB wB HC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"uB vB lB","164":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"164":"H hC iC","676":"mB I dC eC fC gC xB"},J:{"164":"D A"},K:{"2":"A B C jB wB kB","164":"Y"},L:{"164":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"164":"jC"},P:{"164":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"164":"vC"},R:{"164":"wC"},S:{"260":"xC"}},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 9e37dfd3a16574..e2404647276a9f 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 xB"},B:{"1":"Z a b c d e f g h i j k l H X","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B","548":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB"},D:{"1":"Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y","196":"UB VB WB","1220":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","164":"J D E 4B 5B 6B","260":"F A B C K 7B rB iB jB 8B"},F:{"1":"eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","196":"KB LB MB","1220":"NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","164":"E KC LC","260":"MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"1":"H","16":"lB cC dC eC","164":"I fC wB gC hC"},J:{"16":"D","164":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"1":"sC kB tC","164":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"1220":"uC"},R:{"164":"vC"},S:{"548":"wC"}},B:5,C:":is() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"Z a b c d e f g h i j k l X m H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB mB 0B 1B","548":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB"},D:{"1":"Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y","196":"VB WB XB","1220":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W"},E:{"1":"L G AC BC tB uB vB lB CC","2":"I 4B rB","16":"n","164":"J D E 5B 6B 7B","260":"F A B C K 8B sB jB kB 9B"},F:{"1":"fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","196":"LB MB NB","1220":"OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"ZC aC bC tB uB vB lB","16":"rB IC xB JC KC","164":"E LC MC","260":"NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"1":"H","16":"mB dC eC fC","164":"I gC xB hC iC"},J:{"16":"D","164":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"164":"jC"},P:{"1":"tC lB uC","164":"I kC lC mC nC oC sB pC qC rC sC"},Q:{"1220":"vC"},R:{"164":"wC"},S:{"548":"xC"}},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 fb9e69cdf162c5..aaab22990f8572 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB zB 0B"},D:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","132":"C K iB jB"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC","132":"RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB 0B 1B"},D:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB","132":"C K jB kB"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB DC EC FC GC jB wB HC kB"},G:{"1":"YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC","132":"SC TC UC VC WC XC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"qC rC sC tC lB uC","2":"I kC lC mC nC oC sB pC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 c613bae1cd2020..86703fd2ec1ac0 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"Media Queries: interaction media features"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB 0B 1B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},B:5,C:"Media Queries: interaction media features"}; 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 7c51fdd5af16b2..e46d03ac660ef7 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 xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"I m J D E F A B C K L G zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","548":"I m J D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"BC","2":"3B qB","548":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F","548":"B C CC DC EC FC iB vB GC"},G:{"16":"qB","548":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"1":"H gC hC","16":"cC dC","548":"lB I eC fC wB"},J:{"548":"D A"},K:{"1":"Y jB","548":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Media Queries: resolution feature"}; +module.exports={A:{A:{"2":"J D E yB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","260":"I n J D E F A B C K L G 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","548":"I n J D E F A B C K L G M N O o p q r s t u v w x"},E:{"1":"CC","2":"4B rB","548":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F","548":"B C DC EC FC GC jB wB HC"},G:{"16":"rB","548":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"132":"cC"},I:{"1":"H hC iC","16":"dC eC","548":"mB I fC gC xB"},J:{"548":"D A"},K:{"1":"Y kB","548":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:2,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 12fd95f6637570..b2f5f362f723a5 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 xB"},B:{"16":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B","16":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X","16":"pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Media Queries: scripting media feature"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"16":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B","16":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 6731439590595f..74e45c0ba01068 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 xB","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","129":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","129":"I m J 4B","388":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","129":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","129":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS3 Media Queries"}; +module.exports={A:{A:{"8":"J D E yB","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","129":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","129":"I n J 5B","388":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","129":"rB IC xB JC KC"},H:{"1":"cC"},I:{"1":"H hC iC","129":"mB I dC eC fC gC xB"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"129":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 5c99310f7851ce..5673931db7f532 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w","194":"0 1 2 3 4 5 6 7 8 x y z"},E:{"2":"I m J D 3B qB 4B 5B","260":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC JC KC","260":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Blending of HTML/SVG elements"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x","194":"0 1 2 3 4 5 6 7 8 9 y z"},E:{"2":"I n J D 4B rB 5B 6B","260":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x DC EC FC GC jB wB HC kB"},G:{"2":"rB IC xB JC KC LC","260":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 daca490d4af52e..a1dd74970a6880 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB zB 0B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","194":"BB CB DB"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","194":"0 y z"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"CSS Motion Path"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB 0B 1B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","194":"CB DB EB"},E:{"1":"lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x y DC EC FC GC jB wB HC kB","194":"0 1 z"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 43b4a90c3ac494..15a6c20d39b6af 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS namespaces"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 29ef60e5f3b036..f2b2625c0a3ed2 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Nesting"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 98b92f62728187..4fce34c49ddf29 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 xB"},B:{"1":"Z a b c d e f g h i j k l H X","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S zB 0B"},D:{"1":"Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"selector list argument of :not()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"Z a b c d e f g h i j k l X m H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S 0B 1B"},D:{"1":"Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},F:{"1":"fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"tC lB uC","2":"I kC lC mC nC oC sB pC qC rC sC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 f5bd6695eb441a..9fad70380ac36e 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 22000e6af54368..4a40ebdf4e9d4e 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS3 Opacity"}; +module.exports={A:{A:{"1":"F A B","4":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 840f7a55f35a5f..44954cf643cab5 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"132":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:":optional CSS pseudo-class"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F DC","132":"B C EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"132":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:7,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 78fc0f4ecccc10..32d02031e325a2 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB 0B 1B"},D:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q 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:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 b101bf179caaa3..345aa08c9dc075 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"I m J D E F A B 4B 5B 6B 7B rB iB","16":"3B qB","130":"C K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC","16":"qB","130":"SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:7,C:"CSS overflow: overlay"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"I n J D E F A B 5B 6B 7B 8B sB jB","16":"4B rB","130":"C K L G kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC","16":"rB","130":"TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 e8386e50740a2e..3bdd50da18f3c4 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 xB"},B:{"1":"b c d e f g h i j k l H X","260":"P Q R S T U V W Z a","388":"C K L G M N O"},C:{"1":"R oB S T U V W Z a b c d e f g h i j k l H X pB","260":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q","388":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB zB 0B"},D:{"1":"b c d e f g h i j k l H X pB 1B 2B","260":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a","388":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},E:{"1":"BC","260":"L G 8B 9B AC sB tB uB kB","388":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"260":"NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB CC DC EC FC iB vB GC jB"},G:{"260":"XC YC ZC aC sB tB uB kB","388":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"388":"bC"},I:{"1":"H","388":"lB I cC dC eC fC wB gC hC"},J:{"388":"D A"},K:{"1":"Y","388":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"388":"A B"},O:{"388":"iC"},P:{"1":"sC kB tC","388":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"388":"uC"},R:{"388":"vC"},S:{"388":"wC"}},B:5,C:"CSS overflow property"}; +module.exports={A:{A:{"388":"J D E F A B yB"},B:{"1":"b c d e f g h i j k l X m H","260":"P Q R S T U V W Z a","388":"C K L G M N O"},C:{"1":"R pB S T U V W Z a b c d e f g h i j k l X m H qB","260":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q","388":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB 0B 1B"},D:{"1":"b c d e f g h i j k l X m H qB 2B 3B","260":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a","388":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB"},E:{"1":"lB CC","260":"L G 9B AC BC tB uB vB","388":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB"},F:{"260":"OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB DC EC FC GC jB wB HC kB"},G:{"1":"lB","260":"YC ZC aC bC tB uB vB","388":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"388":"cC"},I:{"1":"H","388":"mB I dC eC fC gC xB hC iC"},J:{"388":"D A"},K:{"1":"Y","388":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"388":"A B"},O:{"388":"jC"},P:{"1":"tC lB uC","388":"I kC lC mC nC oC sB pC qC rC sC"},Q:{"388":"vC"},R:{"388":"wC"},S:{"388":"xC"}},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 0eeeeca3e70b47..0cbd926cb68439 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 xB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N","516":"O"},C:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB","260":"TB Y"},E:{"1":"kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","1090":"G 9B AC sB tB uB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB","260":"IB JB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","1090":"ZC aC sB tB uB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS overscroll-behavior"}; +module.exports={A:{A:{"2":"J D E F yB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C K L G M N","516":"O"},C:{"1":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB 0B 1B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB","260":"UB Y"},E:{"1":"lB CC","2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B","1090":"G AC BC tB uB vB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB DC EC FC GC jB wB HC kB","260":"JB KB"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","1090":"aC bC tB uB vB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 9eeb0eea05d242..be699cc824b0bd 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 xB"},B:{"388":"C K L G M N O","900":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"772":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","900":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y zB 0B"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"772":"A","900":"I m J D E F B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"16":"F CC","129":"B C DC EC FC iB vB GC jB","900":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"900":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"129":"bC"},I:{"900":"lB I H cC dC eC fC wB gC hC"},J:{"900":"D A"},K:{"129":"A B C iB vB jB","900":"Y"},L:{"900":"X"},M:{"900":"H"},N:{"388":"A B"},O:{"900":"iC"},P:{"900":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"900":"uC"},R:{"900":"vC"},S:{"900":"wC"}},B:2,C:"CSS page-break properties"}; +module.exports={A:{A:{"388":"A B","900":"J D E F yB"},B:{"388":"C K L G M N O","900":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"772":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","900":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y 0B 1B"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"772":"A","900":"I n J D E F B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"16":"F DC","129":"B C EC FC GC jB wB HC kB","900":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"900":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"129":"cC"},I:{"900":"mB I H dC eC fC gC xB hC iC"},J:{"900":"D A"},K:{"129":"A B C jB wB kB","900":"Y"},L:{"900":"H"},M:{"900":"X"},N:{"388":"A B"},O:{"900":"jC"},P:{"900":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"900":"vC"},R:{"900":"wC"},S:{"900":"xC"}},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 bf7c8427ff49a1..fa30fa79f23700 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 xB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O zB 0B","132":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","132":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"1":"X"},M:{"132":"H"},N:{"258":"A B"},O:{"258":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},B:5,C:"CSS Paged Media (@page)"}; +module.exports={A:{A:{"2":"J D yB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C K L G M N O"},C:{"2":"zB mB I n J D E F A B C K L G M N O 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","132":"F B C DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"16":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"16":"A B C Y jB wB kB"},L:{"1":"H"},M:{"132":"X"},N:{"258":"A B"},O:{"258":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"132":"xC"}},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 7367f2ee2f24d1..de642279c66798 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y"},E:{"2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","194":"K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Paint API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y"},E:{"2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB","194":"K L G kB 9B AC BC tB uB vB lB CC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 a37410ec3c28f2..743ea775be0363 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 xB","292":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"164":"wC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F yB","292":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"164":"xC"}},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 e8c8f5161913a3..a0de7feabe42e1 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","36":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B","33":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","36":"m J D E F A 4B 5B 6B 7B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","36":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","36":"E wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","36":"lB I cC dC eC fC wB gC hC"},J:{"36":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","36":"I jC kC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},B:5,C:"::placeholder CSS pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","36":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","36":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","36":"n J D E F A 5B 6B 7B 8B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","36":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC","36":"E xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","36":"mB I dC eC fC gC xB hC iC"},J:{"36":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"36":"A B"},O:{"1":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","36":"I kC lC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"33":"xC"}},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 827282675e78f2..b4cb95f34d68b7 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 m J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},L:{"33":"X"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B","33":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h"},M:{"1":"H"},A:{"2":"J D E F A B xB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},K:{"2":"A B C iB vB jB","33":"Y"},E:{"1":"tB uB kB","2":"I m 3B qB 4B BC","33":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB"},G:{"1":"tB uB kB","2":"qB HC wB IC","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},I:{"2":"lB I cC dC eC fC wB","33":"H gC hC"}},B:6,C:"print-color-adjust property"}; +module.exports={A:{D:{"2":"I n J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 0B 1B","33":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h"},M:{"1":"X"},A:{"2":"J D E F A B yB"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},K:{"2":"A B C jB wB kB","33":"Y"},E:{"1":"uB vB lB","2":"I n 4B rB 5B CC","33":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB"},G:{"1":"uB vB lB","2":"rB IC xB JC","33":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},I:{"2":"mB I dC eC fC gC xB","33":"H hC iC"}},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 9f70ad762ca9bf..30cbe9ed3a5d9d 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB","33":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","132":"0 1 2 3 G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB","132":"I m J D E 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B CC DC EC FC iB","132":"C G M N O n o p q vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC","132":"E wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","16":"cC dC","132":"lB I eC fC wB gC hC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B iB","132":"C vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},B:1,C:"CSS :read-only and :read-write selectors"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},C:{"1":"iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB","33":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","132":"0 1 2 3 4 G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B rB","132":"I n J D E 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F B DC EC FC GC jB","132":"C G M N O o p q r wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC","132":"E xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","16":"dC eC","132":"mB I fC gC xB hC iC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B jB","132":"C wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"33":"xC"}},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 293c624d584262..f9f67315f08b6f 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 xB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","16":"5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Rebeccapurple color"}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B","16":"6B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:5,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 9690a83ae66407..e6a2ef011051d3 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 xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","33":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"33":"lB I H cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"2":"wC"}},B:7,C:"CSS Reflections"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"4B rB","33":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"33":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"33":"mB I H dC eC fC gC xB hC iC"},J:{"33":"D A"},K:{"2":"A B C jB wB kB","33":"Y"},L:{"33":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"33":"wC"},S:{"2":"xC"}},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 80582bbf95dd6f..cf2706b89dfb02 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 xB","420":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"3 4 5 6 7 8 9 I m 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"G M N O","66":"0 1 2 n o p q r s t u v w x y z"},E:{"2":"I m J C K L G 3B qB 4B iB jB 8B 9B AC sB tB uB kB BC","33":"D E F A B 5B 6B 7B rB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC JC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"420":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Regions"}; +module.exports={A:{A:{"2":"J D E F yB","420":"A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l X m H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"4 5 6 7 8 9 I n 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","36":"G M N O","66":"0 1 2 3 o p q r s t u v w x y z"},E:{"2":"I n J C K L G 4B rB 5B jB kB 9B AC BC tB uB vB lB CC","33":"D E F A B 6B 7B 8B sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"rB IC xB JC KC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"E LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"420":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 32807639516061..a1a4a871822713 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","33":"I m J D E F A B C K L G 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F","33":"A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","33":"J 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC","33":"C GC","36":"iB vB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","33":"IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","33":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B","33":"C","36":"iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS Repeating Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B","33":"I n J D E F A B C K L G 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F","33":"A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB","33":"J 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC","33":"C HC","36":"jB wB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","33":"JC KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB dC eC fC","33":"I gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y kB","2":"A B","33":"C","36":"jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 c24a0dbd51ca8b..2fa3e664f02683 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:4,C:"CSS resize property"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC","132":"kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},B:4,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 e1dc9dfbdafd9c..e5cd19b2968def 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 xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS revert value"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O P Q R S"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB 0B 1B"},D:{"1":"T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B"},F:{"1":"dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB DC EC FC GC jB wB HC kB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 992b7c706c0625..2d9f477f72e336 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB MB NB OB PB QB mB RB nB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","194":"jC kC lC"},Q:{"2":"uC"},R:{"194":"vC"},S:{"2":"wC"}},B:7,C:"#rrggbbaa hex color notation"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 0B 1B"},D:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB OB PB QB RB nB SB oB"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"8 9 AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I","194":"kC lC mC"},Q:{"2":"vC"},R:{"194":"wC"},S:{"2":"xC"}},B:5,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 edb83e0ae3ea30..de7ca729d6f545 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 xB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","129":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","450":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","578":"L G 9B AC sB"},F:{"2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB","129":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","450":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","578":"ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"129":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"129":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Scroll-behavior"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","129":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","450":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB 9B","578":"L G AC BC tB"},F:{"2":"F B C G M N O o p q r s t u v w DC EC FC GC jB wB HC kB","129":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","450":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","578":"aC bC tB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"129":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"129":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 92801b28d362fc..e9f81556ff2a71 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a","194":"b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","194":"Z a b c d e f g h i j k l H X pB 1B 2B","322":"U V W"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","194":"eB fB gB hB P Q R oB S T U V W","322":"cB dB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"CSS @scroll-timeline"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a","194":"b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","194":"Z a b c d e f g h i j k l X m H qB 2B 3B","322":"U V W"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB DC EC FC GC jB wB HC kB","194":"fB gB hB iB P Q R pB S T U V W","322":"dB eB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 5411c3200b71fc..f810e2461ab773 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 xB"},B:{"2":"C K L G M N O","292":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B","3074":"TB","4100":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"16":"I m 3B qB","292":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","292":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"YC ZC aC sB tB uB kB","16":"qB HC wB IC JC","292":"KC","804":"E LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"16":"cC dC","292":"lB I H eC fC wB gC hC"},J:{"292":"D A"},K:{"2":"A B C iB vB jB","292":"Y"},L:{"292":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"292":"iC"},P:{"292":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"292":"uC"},R:{"292":"vC"},S:{"2":"wC"}},B:7,C:"CSS scrollbar styling"}; +module.exports={A:{A:{"132":"J D E F A B yB"},B:{"2":"C K L G M N O","292":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 0B 1B","3074":"UB","4100":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"16":"I n 4B rB","292":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","292":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"ZC aC bC tB uB vB lB","16":"rB IC xB JC KC","292":"LC","804":"E MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"16":"dC eC","292":"mB I H fC gC xB hC iC"},J:{"292":"D A"},K:{"2":"A B C jB wB kB","292":"Y"},L:{"292":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"292":"jC"},P:{"292":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"292":"vC"},R:{"292":"wC"},S:{"2":"xC"}},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 6603e9edfde0b2..4272050de84dae 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":"xB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS 2.1 selectors"}; +module.exports={A:{A:{"1":"D E F A B","2":"yB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2adddff5dac296..0e2a4618251be1 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":"xB","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS3 selectors"}; +module.exports={A:{A:{"1":"F A B","2":"yB","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a512cf7eb49d42..0c62a11297b8e0 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"C Y vB jB","16":"A B iB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"33":"wC"}},B:5,C:"::selection CSS pseudo-element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","33":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"C Y wB kB","16":"A B jB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"33":"xC"}},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 58f6d1ad3858ef..4744f1fcbae1bc 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B","322":"JB KB LB MB NB OB PB QB mB RB nB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","194":"2 3 4"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","33":"E F A 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","33":"E LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:4,C:"CSS Shapes Level 1"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 0B 1B","322":"KB LB MB NB OB PB QB RB nB SB oB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z","194":"3 4 5"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B","33":"E F A 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC","33":"E MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 e8b0aedea1d58a..0cd13af22e20eb 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 xB","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","6436":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","2052":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB","8258":"VB WB XB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","3108":"F A 7B rB"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB","8258":"MB NB OB PB QB RB SB TB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","3108":"MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2052":"wC"}},B:4,C:"CSS Scroll Snap"}; +module.exports={A:{A:{"2":"J D E F yB","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","6436":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","2052":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB","8258":"WB XB YB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B","3108":"F A 8B sB"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB","8258":"NB OB PB QB RB SB TB UB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC","3108":"NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","2":"I kC lC mC nC oC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2052":"xC"}},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 773df5bd0ed1d2..ba717e7f92c7e6 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 xB"},B:{"1":"c d e f g h i j k l H X","2":"C K L G","1028":"P Q R S T U V W Z a b","4100":"M N O"},C:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B","194":"u v w x y z","516":"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"},D:{"1":"c d e f g h i j k l H X pB 1B 2B","2":"5 6 7 8 9 I m J D E F A B C K L G M N O n o p q AB BB CB DB EB FB GB HB IB JB","322":"0 1 2 3 4 r s t u v w x y z KB LB MB NB","1028":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","33":"E F A B C 6B 7B rB iB jB","2084":"D 5B"},F:{"1":"hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"7 8 9","1028":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"E LC MC NC OC PC QC RC SC TC","2084":"JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1028":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1028":"uC"},R:{"2":"vC"},S:{"516":"wC"}},B:5,C:"CSS position:sticky"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"c d e f g h i j k l X m H","2":"C K L G","1028":"P Q R S T U V W Z a b","4100":"M N O"},C:{"1":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u 0B 1B","194":"0 v w x y z","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"},D:{"1":"c d e f g h i j k l X m H qB 2B 3B","2":"6 7 8 9 I n J D E F A B C K L G M N O o p q r AB BB CB DB EB FB GB HB IB JB KB","322":"0 1 2 3 4 5 s t u v w x y z LB MB NB OB","1028":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B","33":"E F A B C 7B 8B sB jB kB","2084":"D 6B"},F:{"1":"iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","322":"8 9 AB","1028":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","33":"E MC NC OC PC QC RC SC TC UC","2084":"KC LC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1028":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"1028":"vC"},R:{"2":"wC"},S:{"516":"xC"}},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 8817a539f56426..4103c7b50b402c 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Subgrid"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 2875af5fb3164b..d35514d0a39f7a 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N O"},C:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n zB 0B","66":"o p","260":"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"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v","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 mB RB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"132":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS.supports() API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L G M N O"},C:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o 0B 1B","66":"p q","260":"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"},D:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t 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 nB SB"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC","132":"kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"132":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB","132":"kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 ee342db159b09f..eeb5c04b11e18e 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","132":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS Table display"}; +module.exports={A:{A:{"1":"E F A B","2":"J D yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","132":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 6f2093977117e1..41d42d8db51c5d 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B zB 0B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","322":"3 4 5 6 7 8 9 AB BB CB DB EB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB","578":"0 1 q r s t u v w x y z"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"33":"wC"}},B:5,C:"CSS3 text-align-last"}; +module.exports={A:{A:{"132":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","4":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z","322":"4 5 6 7 8 9 AB BB CB DB EB FB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q DC EC FC GC jB wB HC kB","578":"0 1 2 r s t u v w x y z"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"1":"wC"},S:{"33":"xC"}},B:5,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 eced6aa2e59fdd..b05417878425da 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 xB"},B:{"132":"C K L G M N O","388":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"132":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"132":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","388":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"132":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"132":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB","388":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"132":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"132":"lB I cC dC eC fC wB gC hC","388":"H"},J:{"132":"D A"},K:{"132":"A B C iB vB jB","388":"Y"},L:{"388":"X"},M:{"132":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I","388":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"388":"uC"},R:{"388":"vC"},S:{"132":"wC"}},B:5,C:"CSS text-indent"}; +module.exports={A:{A:{"132":"J D E F A B yB"},B:{"132":"C K L G M N O","388":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"132":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z","388":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"132":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"132":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB","388":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"132":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"132":"cC"},I:{"132":"mB I dC eC fC gC xB hC iC","388":"H"},J:{"132":"D A"},K:{"132":"A B C jB wB kB","388":"Y"},L:{"388":"H"},M:{"132":"X"},N:{"132":"A B"},O:{"132":"jC"},P:{"132":"I","388":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"388":"vC"},R:{"388":"wC"},S:{"132":"xC"}},B:5,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 4184b7b38a9a59..eb594127af0c58 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 xB","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B","1025":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1602":"MB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","322":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","322":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","322":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","322":"Y"},L:{"322":"X"},M:{"1025":"H"},N:{"132":"A B"},O:{"2":"iC"},P:{"2":"I","322":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"322":"uC"},R:{"322":"vC"},S:{"2":"wC"}},B:5,C:"CSS text-justify"}; +module.exports={A:{A:{"16":"J D yB","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 0B 1B","1025":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","1602":"NB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","322":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C G M N O o p q r s t u v w x y DC EC FC GC jB wB HC kB","322":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","322":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","322":"Y"},L:{"322":"H"},M:{"1025":"X"},N:{"132":"A B"},O:{"2":"jC"},P:{"2":"I","322":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"322":"vC"},R:{"322":"wC"},S:{"2":"xC"}},B:5,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 3b299de4c59f71..d65db38b4c1cf6 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"6 7 8"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","16":"A","33":"B C K rB iB jB 8B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS text-orientation"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"7 8 9"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"L G AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B","16":"A","33":"B C K sB jB kB 9B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 8b6a9a94696fdb..ff078405789dd6 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 xB","161":"E F A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS Text 4 text-spacing"}; +module.exports={A:{A:{"2":"J D yB","161":"E F A B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l X m H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 797554e5b1e4b7..8edbabed295e6a 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 xB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","260":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 Text-shadow"}; +module.exports={A:{A:{"2":"J D E F yB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","260":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"4":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"129":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,C:"CSS3 Text-shadow"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js index bb28187a9d90c1..2b13c225e7ead8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action-2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F xB","132":"B","164":"A"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","260":"AB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"132":"B","164":"A"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"CSS touch-action level 2 values"}; +module.exports={A:{A:{"2":"J D E F yB","132":"B","164":"A"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB","260":"BB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"132":"B","164":"A"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","16":"I"},Q:{"2":"vC"},R:{"1":"wC"},S:{"2":"xC"}},B:5,C:"CSS touch-action level 2 values"}; 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 827b8b9881cf10..d33f0a32726e43 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 xB","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","194":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB","1025":"KB LB MB NB OB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC","516":"NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","289":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"194":"wC"}},B:2,C:"CSS touch-action property"}; +module.exports={A:{A:{"1":"B","2":"J D E F yB","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B","194":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB","1025":"LB MB NB OB PB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r DC EC FC GC jB wB HC kB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC","516":"OC PC QC RC SC TC UC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","289":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"194":"xC"}},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 f5e6f60ae3cc08..7ed70057c9dfca 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"m J D E F A B C K L G","164":"I"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"J 4B","164":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC","33":"C","164":"B EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"JC","164":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","33":"lB I cC dC eC fC wB"},J:{"1":"A","33":"D"},K:{"1":"Y jB","33":"C","164":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS3 Transitions"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","33":"n J D E F A B C K L G","164":"I"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","33":"J 5B","164":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F DC EC","33":"C","164":"B FC GC jB wB HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"KC","164":"rB IC xB JC"},H:{"2":"cC"},I:{"1":"H hC iC","33":"mB I dC eC fC gC xB"},J:{"1":"A","33":"D"},K:{"1":"Y kB","33":"C","164":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7f48a939c7c8df..7201dea7f0de1b 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","132":"yB lB I m J D E F zB 0B","292":"A B C K L G M"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"132":"I m J D E 3B qB 4B 5B 6B","548":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"132":"E qB HC wB IC JC KC LC","548":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"1":"H","16":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"16":"uC"},R:{"16":"vC"},S:{"33":"wC"}},B:4,C:"CSS unicode-bidi property"}; +module.exports={A:{A:{"132":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"zB mB I n J D E F 0B 1B","292":"A B C K L G M"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"132":"I n J D E 4B rB 5B 6B 7B","548":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"132":"E rB IC xB JC KC LC MC","548":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"1":"H","16":"mB I dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"16":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","16":"I"},Q:{"16":"vC"},R:{"16":"wC"},S:{"33":"xC"}},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 a748d1d1433218..cf567b6b9ae97e 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS unset value"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v 0B 1B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w DC EC FC GC jB wB HC kB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 b6676afea4411c..b830b919b54b51 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","260":"G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B","260":"7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"3"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC","260":"NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:4,C:"CSS Variables (Custom Properties)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L","260":"G"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","194":"HB"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B","260":"8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"4"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC","260":"OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 019e903fa862af..409ad27cf98d34 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"CSS @when / @else conditional rules"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 6d368a2b11cc31..163ec78e66e39f 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 xB","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","129":"F B CC DC EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:2,C:"CSS widows & orphans"}; +module.exports={A:{A:{"1":"A B","2":"J D yB","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","129":"F B DC EC FC GC jB wB HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 b045e30869178b..bdb0373995d637 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 m J D E F A B C K L G M N O n o p","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},L:{"33":"X"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB","33":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},M:{"33":"H"},A:{"2":"J D E F A B xB"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},K:{"2":"A B C iB vB jB","33":"Y"},E:{"2":"I m J 3B qB 4B 5B BC","33":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},G:{"2":"qB HC wB IC JC","33":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},P:{"2":"I","33":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},I:{"2":"lB I cC dC eC fC wB","33":"H gC hC"}},B:6,C:"width: stretch property"}; +module.exports={A:{D:{"2":"I n J D E F A B C K L G M N O o p q","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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB","33":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},M:{"33":"X"},A:{"2":"J D E F A B yB"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},K:{"2":"A B C jB wB kB","33":"Y"},E:{"2":"I n J 4B rB 5B 6B CC","33":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB"},G:{"2":"rB IC xB JC KC","33":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},P:{"2":"I","33":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},I:{"2":"mB I dC eC fC gC xB","33":"H hC iC"}},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 59f783c781ef71..a71a296bb55290 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","322":"4 5 6 7 8"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m 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 n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","33":"J D E F A 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 G M N O n o p q r s t u v w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","33":"E IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","33":"lB I fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS writing-mode property"}; +module.exports={A:{A:{"132":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","322":"5 6 7 8 9"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n 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 o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n","33":"J D E F A 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 G M N O o p q r s t u v w x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB","33":"E JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"dC eC fC","33":"mB I gC xB hC iC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"36":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","33":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 aedc2f86a46e2b..fc70b8e4cf29e8 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 xB","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:7,C:"CSS zoom"}; +module.exports={A:{A:{"1":"J D yB","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"129":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 b2d42dda78cb95..f56d938c206147 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"CSS3 attr() function for all properties"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:4,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 94a40568d1f9ce..ea98252cb2e423 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"I m J D E F"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"qB HC wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","33":"lB cC dC eC"},J:{"1":"A","33":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS3 Box-sizing"}; +module.exports={A:{A:{"1":"E F A B","8":"J D yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","33":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"I n J D E F"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","33":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"rB IC xB"},H:{"1":"cC"},I:{"1":"I H gC xB hC iC","33":"mB dC eC fC"},J:{"1":"A","33":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7291a32debe8c7..ad03715beba30f 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","4":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F","4":"CC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS3 Colors"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","4":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","2":"F","4":"DC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7c59c424d175b9..c9053671bb7c13 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","33":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"C NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p 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":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:3,C:"CSS grab & grabbing cursors"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","33":"zB mB I n J D E F A B C K L G M N O o p q r s t u v 0B 1B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","33":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},F:{"1":"C OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q 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":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:3,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 9fd7e981cdcda3..2381dc5aa9bcfa 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB","33":"G M N O n o p q r"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","33":"zB mB I n J D E F A B C K L G M N O o p q r s 0B 1B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","33":"I n J D E 4B rB 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB","33":"G M N O o p q r s"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:4,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 2e8fda8a1a82ff..700151118904dd 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","4":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","260":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"CSS3 Cursors (original values)"}; +module.exports={A:{A:{"1":"F A B","132":"J D E yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","4":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"I"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","4":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","260":"F B C DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:4,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 6ec0b2494c9b3a..9d69e5701d6941 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b","164":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","132":"D E F A B C K 5B 6B 7B rB iB jB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC","132":"G M N O n o p q r s t u v w","164":"B C FC iB vB GC jB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","132":"E KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"164":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","132":"gC hC"},J:{"132":"D A"},K:{"1":"Y","2":"A","164":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"164":"wC"}},B:5,C:"CSS3 tab-size"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","33":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b","164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p","132":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB"},E:{"1":"L G 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B","132":"D E F A B C K 6B 7B 8B sB jB kB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F DC EC FC","132":"G M N O o p q r s t u v w x","164":"B C GC jB wB HC kB"},G:{"1":"YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"164":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB","132":"hC iC"},J:{"132":"D A"},K:{"1":"Y","2":"A","164":"B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"164":"xC"}},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 6905ad1c1164d4..0fd765132a4cf6 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS currentColor value"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8e0455d4678851..451a916734cd2a 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 xB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","66":"r s t u v w x","72":"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"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"I m J D E F A B C K L G M N O n o p q r s t u Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"0 v w x y z"},E:{"2":"I m 3B qB 4B","8":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB","2":"F B C WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"G M N O n"},G:{"2":"qB HC wB IC JC","8":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"hC","2":"lB I H cC dC eC fC wB gC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC","2":"qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"72":"wC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F yB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k l X m H","8":"C K L G M N O"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q r nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","66":"s t u v w x y","72":"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"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"I n J D E F A B C K L G M N O o p q r s t u v Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","66":"0 1 w x y z"},E:{"2":"I n 4B rB 5B","8":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB","2":"F B C XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","66":"G M N O o"},G:{"2":"rB IC xB JC KC","8":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"iC","2":"mB I H dC eC fC gC xB hC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC","2":"rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"72":"xC"}},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 ba0c2d58270f05..9bbeb61be4e422 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 xB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B","8":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB","456":"IB JB KB LB MB NB OB PB QB","712":"mB RB nB SB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","8":"KB LB","132":"MB NB OB PB QB mB RB nB SB TB Y UB VB"},E:{"2":"I m J D 3B qB 4B 5B 6B","8":"E F A 7B","132":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC","132":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","132":"jC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"8":"wC"}},B:1,C:"Custom Elements (V1)"}; +module.exports={A:{A:{"2":"J D E F yB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","8":"C K L G M N O"},C:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y 0B 1B","8":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB","456":"JB KB LB MB NB OB PB QB RB","712":"nB SB oB TB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","8":"LB MB","132":"NB OB PB QB RB nB SB oB TB UB Y VB WB"},E:{"2":"I n J D 4B rB 5B 6B 7B","8":"E F A 8B","132":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC","132":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I","132":"kC"},Q:{"132":"vC"},R:{"132":"wC"},S:{"8":"xC"}},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 232593ce18f870..0449fe14d25a1c 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 xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","16":"m J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m J","388":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC EC FC","132":"B iB vB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"HC","16":"qB wB","388":"IC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","388":"lB I fC wB"},J:{"1":"A","388":"D"},K:{"1":"C Y jB","2":"A","132":"B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"CustomEvent"}; +module.exports={A:{A:{"2":"J D E yB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I","16":"n J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n J","388":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F DC EC FC GC","132":"B jB wB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"IC","16":"rB xB","388":"JC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"dC eC fC","388":"mB I gC xB"},J:{"1":"A","388":"D"},K:{"1":"C Y kB","2":"A","132":"B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 966831892d1092..a9689c470fb423 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":"xB","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G","1284":"M N O"},C:{"8":"yB lB zB 0B","4612":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J D E F A B C K L G M N O n","132":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","8":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"F B C Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"8":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","2049":"TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H hC","8":"lB I cC dC eC fC wB gC"},J:{"1":"A","8":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"516":"H"},N:{"8":"A B"},O:{"8":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:1,C:"Datalist element"}; +module.exports={A:{A:{"2":"yB","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L G","1284":"M N O"},C:{"8":"zB mB 0B 1B","4612":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"I n J D E F A B C K L G M N O o","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","8":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB"},F:{"1":"F B C Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"8":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC","2049":"UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H iC","8":"mB I dC eC fC gC xB hC"},J:{"1":"A","8":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"516":"X"},N:{"8":"A B"},O:{"8":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"132":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 2d30815e04882d..556ad8699c7889 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 xB"},B:{"1":"C K L G M","129":"N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","4":"yB lB I m zB 0B","129":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB","4":"I m J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"4":"I m 3B qB","129":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C iB vB GC jB","4":"F B CC DC EC FC","129":"G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"4":"qB HC wB","129":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"4":"cC dC eC","129":"lB I H fC wB gC hC"},J:{"129":"D A"},K:{"1":"C iB vB jB","4":"A B","129":"Y"},L:{"129":"X"},M:{"129":"H"},N:{"1":"B","4":"A"},O:{"129":"iC"},P:{"129":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"129":"vC"},S:{"1":"wC"}},B:1,C:"dataset & data-* attributes"}; +module.exports={A:{A:{"1":"B","4":"J D E F A yB"},B:{"1":"C K L G M","129":"N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","4":"zB mB I n 0B 1B","129":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB","4":"I n J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"4":"I n 4B rB","129":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"1 2 3 4 5 6 7 8 9 C AB jB wB HC kB","4":"F B DC EC FC GC","129":"0 G M N O o p q r s t u v w x y z BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"4":"rB IC xB","129":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"4":"cC"},I:{"4":"dC eC fC","129":"mB I H gC xB hC iC"},J:{"129":"D A"},K:{"1":"C jB wB kB","4":"A B","129":"Y"},L:{"129":"H"},M:{"129":"X"},N:{"1":"B","4":"A"},O:{"129":"jC"},P:{"129":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"129":"wC"},S:{"1":"xC"}},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 85b6200028cd63..0cdfaae6ce71b0 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 xB","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Data URIs"}; +module.exports={A:{A:{"2":"J D yB","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 29988252b21d2f..fa381ecd797f09 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":"xB","132":"J D E F A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N"},C:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","260":"KB LB MB NB","772":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r","260":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB","772":"0 1 2 3 4 5 s t u v w x y z"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB","132":"J D E F A 4B 5B 6B 7B","260":"B rB iB"},F:{"1":"PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B C CC DC EC FC iB vB GC","132":"jB","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","772":"G M N O n o p q r s"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC","132":"E JC KC LC MC NC OC"},H:{"132":"bC"},I:{"1":"H","16":"lB cC dC eC","132":"I fC wB","772":"gC hC"},J:{"132":"D A"},K:{"1":"Y","16":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"260":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","260":"I jC kC lC mC"},Q:{"260":"uC"},R:{"132":"vC"},S:{"132":"wC"}},B:6,C:"Date.prototype.toLocaleDateString"}; +module.exports={A:{A:{"16":"yB","132":"J D E F A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C K L G M N"},C:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","132":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B","260":"LB MB NB OB","772":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L G M N O o p q r s","260":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB","772":"0 1 2 3 4 5 6 t u v w x y z"},E:{"1":"C K L G kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB","132":"J D E F A 5B 6B 7B 8B","260":"B sB jB"},F:{"1":"QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F B C DC EC FC GC jB wB HC","132":"kB","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","772":"G M N O o p q r s t"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB JC","132":"E KC LC MC NC OC PC"},H:{"132":"cC"},I:{"1":"H","16":"mB dC eC fC","132":"I gC xB","772":"hC iC"},J:{"132":"D A"},K:{"1":"Y","16":"A B C jB wB","132":"kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"260":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","260":"I kC lC mC nC"},Q:{"260":"vC"},R:{"132":"wC"},S:{"132":"xC"}},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 f14a7a9894de15..7455e032eb03ff 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 xB"},B:{"1":"b c d e f g h i j k l H X","2":"C K L G M N O P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","66":"U V W Z a"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB","16":"BC"},F:{"1":"gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:7,C:"Declarative Shadow DOM"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"b c d e f g h i j k l X m H","2":"C K L G M N O P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","66":"U V W Z a"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB","16":"CC"},F:{"1":"hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"tC lB uC","2":"I kC lC mC nC oC sB pC qC rC sC"},Q:{"16":"vC"},R:{"16":"wC"},S:{"2":"xC"}},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 142a3b5b7800c3..857559a57ec7b7 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Decorators"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 6fc4eccb2e8171..e29a5d36f41095 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 xB","8":"J D E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","8":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","194":"FB GB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J D E F A B","257":"0 1 2 3 n o p q r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","8":"I m 3B qB 4B","257":"J D E F A 5B 6B 7B","1025":"B rB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"C iB vB GC jB","8":"F B CC DC EC FC"},G:{"1":"E JC KC LC MC NC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB IC","1025":"OC PC QC"},H:{"8":"bC"},I:{"1":"I H fC wB gC hC","8":"lB cC dC eC"},J:{"1":"A","8":"D"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"769":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Details & Summary elements"}; +module.exports={A:{A:{"2":"F A B yB","8":"J D E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB","8":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B","194":"GB HB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"I n J D E F A B","257":"0 1 2 3 4 o p q r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G kB 9B AC BC tB uB vB lB CC","8":"I n 4B rB 5B","257":"J D E F A 6B 7B 8B","1025":"B sB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"C jB wB HC kB","8":"F B DC EC FC GC"},G:{"1":"E KC LC MC NC OC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"rB IC xB JC","1025":"PC QC RC"},H:{"8":"cC"},I:{"1":"I H gC xB hC iC","8":"mB dC eC fC"},J:{"1":"A","8":"D"},K:{"1":"Y","8":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"769":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 323f5ad352fdeb..9026b44297609c 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 xB","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB zB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"I m 0B"},D:{"2":"I m J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","4":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC","4":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"cC dC eC","4":"lB I H fC wB gC hC"},J:{"2":"D","4":"A"},K:{"1":"C jB","2":"A B iB vB","4":"Y"},L:{"4":"X"},M:{"4":"H"},N:{"1":"B","2":"A"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"4":"wC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB 0B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"I n 1B"},D:{"2":"I n J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","4":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC","4":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"dC eC fC","4":"mB I H gC xB hC iC"},J:{"2":"D","4":"A"},K:{"1":"C kB","2":"A B jB wB","4":"Y"},L:{"4":"H"},M:{"4":"X"},N:{"1":"B","2":"A"},O:{"4":"jC"},P:{"4":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"4":"vC"},R:{"4":"wC"},S:{"4":"xC"}},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 08d3af91807f8c..11b413dbbf2efa 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Window.devicePixelRatio"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"C Y kB","2":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2121129891908c..8c23305da4e3cc 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","194":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","1218":"Q R oB S T U V W Z a b c d e f g h i"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z","322":"0 1 2 3 4"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O CC DC EC FC iB vB GC jB","578":"n o p q r"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:1,C:"Dialog element"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B","194":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","1218":"Q R pB S T U V W Z a b c d e f g h i"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z","322":"1 2 3 4 5"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O DC EC FC GC jB wB HC kB","578":"o p q r s"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 6aada07fa357c1..4a39d71255f2f1 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":"xB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","129":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"EventTarget.dispatchEvent"}; +module.exports={A:{A:{"1":"B","16":"yB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","16":"F"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","129":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 6a89ac51994860..950b7ad11ddcfd 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 xB"},B:{"132":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"132":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I m z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","388":"J D E F A B C K L G M N O n o p q r s t u v w x y"},E:{"132":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"132":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"132":"bC"},I:{"132":"lB I H cC dC eC fC wB gC hC"},J:{"132":"D A"},K:{"132":"A B C Y iB vB jB"},L:{"132":"X"},M:{"132":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"132":"wC"}},B:6,C:"DNSSEC and DANE"}; +module.exports={A:{A:{"132":"J D E F A B yB"},B:{"132":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I n AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","388":"J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"132":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"132":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"132":"cC"},I:{"132":"mB I H dC eC fC gC xB hC iC"},J:{"132":"D A"},K:{"132":"A B C Y jB wB kB"},L:{"132":"H"},M:{"132":"X"},N:{"132":"A B"},O:{"132":"jC"},P:{"132":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"132":"vC"},R:{"132":"wC"},S:{"132":"xC"}},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 ff612d10972275..43a69380f2128d 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 xB","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E zB 0B","516":"F A B C K L G M N O n o p q r s t u v w x y z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q"},E:{"1":"J A B C 4B 7B rB iB","2":"I m K L G 3B qB jB 8B 9B AC sB tB uB kB BC","1028":"D E F 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"1":"MC NC OC PC QC RC SC","2":"qB HC wB IC JC TC UC VC WC XC YC ZC aC sB tB uB kB","1028":"E KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"16":"D","1028":"A"},K:{"1":"Y jB","16":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"164":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Do Not Track API"}; +module.exports={A:{A:{"2":"J D E yB","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L G M"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E 0B 1B","516":"0 F A B C K L G M N O o p q r s t u v w x y z"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r"},E:{"1":"J A B C 5B 8B sB jB","2":"I n K L G 4B rB kB 9B AC BC tB uB vB lB CC","1028":"D E F 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC"},G:{"1":"NC OC PC QC RC SC TC","2":"rB IC xB JC KC UC VC WC XC YC ZC aC bC tB uB vB lB","1028":"E LC MC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"16":"D","1028":"A"},K:{"1":"Y kB","16":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"164":"A","260":"B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 fa9a0613e28531..8f8890866e4809 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"document.currentScript"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x"},E:{"1":"E F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G DC EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 280f310f7cc282..83de1e3e00a670 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:"document.evaluate & XPath"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","16":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","16":"F"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 332ff309cbab90..80c13598b43aa7 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","16":"wB IC JC"},H:{"2":"bC"},I:{"1":"H fC wB gC hC","2":"lB I cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:"Document.execCommand()"}; +module.exports={A:{A:{"1":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","16":"F DC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC","16":"xB JC KC"},H:{"2":"cC"},I:{"1":"H gC xB hC iC","2":"mB I dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 b213137cf06160..843bcc6fd2fdc2 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 xB"},B:{"2":"C K L G M N O P Q R S T","132":"U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","132":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB CC DC EC FC iB vB GC jB","132":"aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","132":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Document Policy"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T","132":"U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","132":"U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB DC EC FC GC jB wB HC kB","132":"bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","132":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","132":"Y"},L:{"132":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 a60c6a1c894f83..8d51d7cd476386 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"document.scrollingElement"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"C K"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 0B 1B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 aa33b4f6cec8a4..1e2a8eba4f5dd1 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"document.head"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F DC EC FC GC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0a4750d7315292..4f3da945a7d388 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB LB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"8"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"194":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"DOM manipulation convenience methods"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 0B 1B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"9"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"194":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 d8cdb3e59e695c..8acf99348a5ba1 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":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Document Object Model Range"}; +module.exports={A:{A:{"1":"F A B","2":"yB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0890a66a5ed49b..54712a420f0656 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"DOMContentLoaded"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:1,C:"DOMContentLoaded"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js index 25fef5864d1cce..f812d22d41d4a6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F B CC DC EC FC iB vB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC"},H:{"16":"bC"},I:{"1":"I H fC wB gC hC","16":"lB cC dC eC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","16":"F B DC EC FC GC jB wB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB JC KC"},H:{"16":"cC"},I:{"1":"I H gC xB hC iC","16":"mB dC eC fC"},J:{"16":"D A"},K:{"1":"Y","16":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"16":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; 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 3ad111b7094227..959c8133337832 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 xB","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1028":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2564":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB","3076":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB"},D:{"16":"I m J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB","388":"E","1028":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"16":"I 3B qB","132":"m J D E F A 4B 5B 6B 7B rB","1028":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","1028":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"16":"qB HC wB","132":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"132":"I fC wB gC hC","292":"lB cC dC eC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C iB vB jB","1028":"Y"},L:{"1028":"X"},M:{"1028":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"2564":"wC"}},B:4,C:"DOMMatrix"}; +module.exports={A:{A:{"2":"J D E F yB","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","1028":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2564":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB","3076":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB"},D:{"16":"I n J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB","388":"E","1028":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"16":"I 4B rB","132":"n J D E F A 5B 6B 7B 8B sB","1028":"B C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","1028":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"16":"rB IC xB","132":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"132":"I gC xB hC iC","292":"mB dC eC fC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C jB wB kB","1028":"Y"},L:{"1028":"H"},M:{"1028":"X"},N:{"132":"A B"},O:{"132":"jC"},P:{"132":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"132":"vC"},R:{"132":"wC"},S:{"2564":"xC"}},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 5ea3529eeaae78..943cfca1ec841c 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Download attribute"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f37f6da4391f7b..a87cfce51b3921 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 xB","772":"A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","8":"F B CC DC EC FC iB vB GC"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D A"},K:{"1":"jB","8":"A B C iB vB","1025":"Y"},L:{"1025":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"Drag and Drop"}; +module.exports={A:{A:{"644":"J D E F yB","772":"A B"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","8":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","8":"F B DC EC FC GC jB wB HC"},G:{"1":"bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","1025":"H"},J:{"2":"D A"},K:{"1":"kB","8":"A B C jB wB","1025":"Y"},L:{"1025":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 d82765ca60d0fa..37829c68b870b1 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Element.closest()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 aac573089b9abd..6deb9bc4d9c5d1 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","16":"F CC DC EC FC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"C Y jB","16":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"document.elementFromPoint()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","16":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","16":"F DC EC FC GC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"C Y kB","16":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 05c9a1347015c0..1e3d7de2508634 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","132":"A B C K rB iB jB 8B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","132":"OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"1":"L G AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B","132":"A B C K sB jB kB 9B"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB DC EC FC GC jB wB HC kB"},G:{"1":"aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC","132":"PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 0676f8b07fd767..3f33e691f61f52 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 xB","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"3 4 5 6 7 8 9"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B","164":"D E F A B 6B 7B rB iB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB","132":"q r s t u v w"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"16":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:2,C:"Encrypted Media Extensions"}; +module.exports={A:{A:{"2":"J D E F A yB","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"4 5 6 7 8 9 AB"},E:{"1":"C K L G kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B","164":"D E F A B 7B 8B sB jB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q DC EC FC GC jB wB HC kB","132":"r s t u v w x"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"16":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 d3f54c97b42e57..01d3f01057ef71 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":"xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"EOT - Embedded OpenType fonts"}; +module.exports={A:{A:{"1":"J D E F A B","2":"yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 324649248a2fd5..899955cad8863a 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 xB","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","4":"yB lB zB 0B","132":"I m J D E F A B C K L G M N O n o"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I m J D E F A B C K L G M N O","132":"n o p q"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","4":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"qB HC wB IC"},H:{"132":"bC"},I:{"1":"H gC hC","4":"lB cC dC eC","132":"fC wB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"ECMAScript 5"}; +module.exports={A:{A:{"1":"A B","2":"J D yB","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","4":"zB mB 0B 1B","132":"I n J D E F A B C K L G M N O o p"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"I n J D E F A B C K L G M N O","132":"o p q r"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","4":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","4":"F B C DC EC FC GC jB wB HC","132":"kB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","4":"rB IC xB JC"},H:{"132":"cC"},I:{"1":"H hC iC","4":"mB dC eC fC","132":"gC xB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C jB wB","132":"kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a68d5557e323b8..0fcb0954cd43a5 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB","132":"0 1 2 3 x y z"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"ES6 classes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB","132":"BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x DC EC FC GC jB wB HC kB","132":"0 1 2 3 4 y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a6d6e12a89afab..9b217b0a749dfe 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"ES6 Generators"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u 0B 1B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f0776dc0362229..5070e32851fb55 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B","194":"VB"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"JavaScript modules: dynamic import()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB 0B 1B","194":"WB"},D:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 241eb35ab9acf2..b8ff8eaf28ca9b 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B","322":"MB NB OB PB QB mB"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","194":"RB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","3076":"rB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","194":"FB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","3076":"PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"JavaScript modules via script tag"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 0B 1B","322":"NB OB PB QB RB nB"},D:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","194":"SB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B","3076":"sB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB DC EC FC GC jB wB HC kB","194":"GB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC","3076":"QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 76d6fa1ac3842f..6e02d93de30f8c 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G zB 0B","132":"M N O n o p q r s","260":"t u v w x y","516":"z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O","1028":"0 1 n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","1028":"G M N O n o"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC","1028":"fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"ES6 Number"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G 0B 1B","132":"M N O o p q r s t","260":"u v w x y z","516":"0"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O","1028":"0 1 2 o p q r s t u v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","1028":"G M N O o p"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC","1028":"gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 d403293fb4689a..9f5bc91c21f7e1 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"String.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 47e6dcca178ea4..0e2a5cb19ee2a9 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 xB","388":"B"},B:{"257":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L","769":"G M N O"},C:{"2":"yB lB I m zB 0B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N O n o","4":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","257":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","4":"E F 6B 7B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","4":"0 1 2 3 4 5 G M N O n o p q r s t u v w x y z","257":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","4":"E KC LC MC NC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","4":"gC hC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C iB vB jB","257":"Y"},L:{"257":"X"},M:{"257":"H"},N:{"2":"A","388":"B"},O:{"257":"iC"},P:{"4":"I","257":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"257":"uC"},R:{"4":"vC"},S:{"4":"wC"}},B:6,C:"ECMAScript 2015 (ES6)"}; +module.exports={A:{A:{"2":"J D E F A yB","388":"B"},B:{"257":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L","769":"G M N O"},C:{"2":"zB mB I n 0B 1B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"I n J D E F A B C K L G M N O o p","4":"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","257":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B","4":"E F 7B 8B"},F:{"2":"F B C DC EC FC GC jB wB HC kB","4":"0 1 2 3 4 5 6 G M N O o p q r s t u v w x y z","257":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC","4":"E LC MC NC OC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","4":"hC iC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C jB wB kB","257":"Y"},L:{"257":"H"},M:{"257":"X"},N:{"2":"A","388":"B"},O:{"257":"jC"},P:{"4":"I","257":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"257":"vC"},R:{"4":"wC"},S:{"4":"xC"}},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 ddadc28034c8b0..79d2d851659ee8 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","4":"F CC DC EC FC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"C Y iB vB jB","4":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Server-sent events"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B"},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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","4":"F DC EC FC GC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"D A"},K:{"1":"C Y jB wB kB","4":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 9ea0ac17783584..bc19c5f305d40a 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},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 yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 54a8fd9bb10893..6ac564cbe116c2 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 xB"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB zB 0B","260":"dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"dB eB fB gB hB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","132":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","1025":"Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","772":"C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","132":"FB GB HB IB JB KB LB MB NB OB PB QB RB","1025":"eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC","772":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1025":"X"},M:{"260":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC","132":"mC nC rB"},Q:{"132":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Feature Policy"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB 0B 1B","260":"eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"eB fB gB hB iB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","132":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB","1025":"Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB","772":"C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB DC EC FC GC jB wB HC kB","132":"GB HB IB JB KB LB MB NB OB PB QB RB SB","1025":"fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC","772":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1025":"H"},M:{"260":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"pC qC rC sC tC lB uC","2":"I kC lC mC","132":"nC oC sB"},Q:{"132":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 4af0aac6cf8b73..1836f361c438ee 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","1025":"7","1218":"2 3 4 5 6"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","260":"8","772":"9"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","260":"v","772":"w"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Fetch"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","1025":"8","1218":"3 4 5 6 7"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 I n J D E F A B C K L G M N O o p q r s t u v w x y z","260":"9","772":"AB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v DC EC FC GC jB wB HC kB","260":"w","772":"x"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 886723cca658b1..a3a3aab80f5ec9 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":"xB","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 Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","16":"M N O n"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"388":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"disabled attribute of the fieldset element"}; +module.exports={A:{A:{"16":"yB","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 Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G","16":"M N O o"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","16":"F DC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC"},H:{"388":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A","260":"B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2c2d3040463391..75b9eafd3148f4 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 xB","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","260":"I m J D E F A B C K L G M N O n o p q r s t u v 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","260":"0 1 2 3 4 5 K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","260":"J D E F 5B 6B 7B","388":"4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC","260":"C G M N O n o p q r s iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","260":"E JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H hC","2":"cC dC eC","260":"gC","388":"lB I fC wB"},J:{"260":"A","388":"D"},K:{"1":"Y","2":"A B","260":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"File API"}; +module.exports={A:{A:{"2":"J D E F yB","260":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B","260":"I n J D E F A B C K L G M N O o p q r s t u v w 1B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n","260":"0 1 2 3 4 5 6 K L G M N O o p 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB","260":"J D E F 6B 7B 8B","388":"5B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B DC EC FC GC","260":"C G M N O o p q r s t jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","260":"E KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H iC","2":"dC eC fC","260":"hC","388":"mB I gC xB"},J:{"260":"A","388":"D"},K:{"1":"Y","2":"A B","260":"C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","260":"B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 5e329939743c0a..0419e8d9c0b9a5 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 xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F B CC DC EC FC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"C Y iB vB jB","2":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"FileReader API"}; +module.exports={A:{A:{"2":"J D E F yB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB 0B"},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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F B DC EC FC GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"C Y jB wB kB","2":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 e501a51e1cbda5..c75e7357b2c565 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC","16":"B EC FC iB vB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"C Y vB jB","2":"A","16":"B iB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"FileReaderSync"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F DC EC","16":"B FC GC jB wB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"C Y wB kB","2":"A","16":"B jB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 3043ab96e87978..6bd9d44bcc59a6 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 xB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"I m J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"E F A B C"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","33":"A"},K:{"2":"A B C Y iB vB jB"},L:{"33":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","33":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Filesystem & FileWriter API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"I n J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","36":"E F A B C"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D","33":"A"},K:{"2":"A B C Y jB wB kB"},L:{"33":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I","33":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 8c4c2a7b8c683c..1f91acd97cdbc1 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB","16":"CB DB EB","388":"FB GB HB IB JB KB LB MB NB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","516":"B C iB jB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","16":"lB I fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","16":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","129":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:6,C:"FLAC audio format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 0B 1B"},D:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB","16":"DB EB FB","388":"GB HB IB JB KB LB MB NB OB"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","516":"B C jB kB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"dC eC fC","16":"mB I gC xB hC iC"},J:{"1":"A","2":"D"},K:{"1":"Y kB","16":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","129":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 078793524e0c4c..f36294a73d6e34 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 xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"gap property for Flexbox"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O P Q R S"},C:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 0B 1B"},D:{"1":"T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"G AC BC tB uB vB lB CC","2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B"},F:{"1":"dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB DC EC FC GC jB wB HC kB"},G:{"1":"aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 2cf83b8f5cf755..e3094e56066159 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 xB","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","164":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","516":"q r s t u v"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"p q r s t u v w","164":"I m J D E F A B C K L G M N O n o"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"D E 5B 6B","164":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC","33":"G M"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E KC LC","164":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"H gC hC","164":"lB I cC dC eC fC wB"},J:{"1":"A","164":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","292":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS Flexible Box Layout Module"}; +module.exports={A:{A:{"2":"J D E F yB","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","164":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B","516":"r s t u v w"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"q r s t u v w x","164":"I n J D E F A B C K L G M N O o p"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","33":"D E 6B 7B","164":"I n J 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B C DC EC FC GC jB wB HC","33":"G M"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"E LC MC","164":"rB IC xB JC KC"},H:{"1":"cC"},I:{"1":"H hC iC","164":"mB I dC eC fC gC xB"},J:{"1":"A","164":"D"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","292":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 c849e37c7bc654..1fe8f3cda24dd8 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B"},D:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"display: flow-root"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B"},D:{"1":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s 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":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB kB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB DC EC FC GC jB wB HC kB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 4e21aa80c1010d..909933ecb2e0f6 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC EC FC","16":"B iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","2":"cC dC eC","16":"lB"},J:{"1":"D A"},K:{"1":"C Y jB","2":"A","16":"B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"focusin & focusout events"}; +module.exports={A:{A:{"1":"J D E F A B","2":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F DC EC FC GC","16":"B jB wB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"I H gC xB hC iC","2":"dC eC fC","16":"mB"},J:{"1":"D A"},K:{"1":"C Y kB","2":"A","16":"B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},B:5,C:"focusin & focusout events"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js index ca7b7eb31567bc..caacf25ca40dd7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"preventScroll support in focus"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:1,C:"preventScroll support in focus"}; 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 30bec34daccdc0..b813d110238fa4 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B","132":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","260":"LB MB NB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","16":"F","132":"A 7B rB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","132":"MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"132":"wC"}},B:5,C:"system-ui value for font-family"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 0B 1B","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c"},D:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","260":"MB NB OB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B","16":"F","132":"A 8B sB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC","132":"NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"132":"xC"}},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 a2f069e825316e..d15111ded57d69 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"0 1 G M N O n o p q r s t u v w x y z","164":"I m J D E F A B C K L"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB","292":"M N O n o"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"D E F 3B qB 5B 6B","4":"I m J 4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 G M N O n o p q r s t u v w x y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E KC LC MC","4":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS font-feature-settings"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","33":"0 1 2 G M N O o p q r s t u v w x y z","164":"I n J D E F A B C K L"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G","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","292":"M N O o p"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"D E F 4B rB 6B 7B","4":"I n J 5B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 G M N O o p q r s t u v w x y z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E LC MC NC","4":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB","33":"hC iC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","33":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 494338b54bf08a..4b32f02ea7073f 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","194":"0 1 s t 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w","33":"0 x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B","33":"D E F 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G CC DC EC FC iB vB GC jB","33":"M N O n"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","33":"E LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB","33":"gC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 font-kerning"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s 0B 1B","194":"0 1 2 t u v w x y z"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x","33":"0 1 y z"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B","33":"D E F 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G DC EC FC GC jB wB HC kB","33":"M N O o"},G:{"1":"TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC","33":"E MC NC OC PC QC RC SC"},H:{"2":"cC"},I:{"1":"H iC","2":"mB I dC eC fC gC xB","33":"hC"},J:{"2":"D","33":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 55d330ffb479d4..5a0b1b7d834e79 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"3 4 5 6 7 8"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS Font Loading"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"4 5 6 7 8 9"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:5,C:"CSS Font Loading"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js index 3fb361ccb26ff1..02eb1b921c92b8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-metrics-overrides.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U","194":"V"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"@font-face metrics overrides"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U","194":"V"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:7,C:"@font-face metrics overrides"}; 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 7423f069f66bc5..3b7cb62075bf0f 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 xB"},B:{"2":"C K L G M N O","194":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","194":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"258":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"194":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"CSS font-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","194":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C G M N O o p q r s t u v w x y DC EC FC GC jB wB HC kB","194":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"258":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"194":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:4,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 badb06feb2ad42..99d34cfccf1c7e 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 xB"},B:{"2":"C K L G M N O","676":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B","804":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","676":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","676":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"804":"wC"}},B:7,C:"CSS font-smooth"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","676":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q r s t 0B 1B","804":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"4B rB","676":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","676":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"804":"xC"}},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 bbefbb5c25839b..4f56299422dacf 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 xB","4":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"4 5 6 7 8 9 AB BB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","4":"G M N O n o p q"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","4":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","4":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","4":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:4,C:"Font unicode-range subsetting"}; +module.exports={A:{A:{"2":"J D E yB","4":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","4":"C K L G M"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"5 6 7 8 9 AB BB CB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","4":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","4":"G M N O o p q r"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","4":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","4":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","4":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","4":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 065db2130004db..6106204b221705 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 xB","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","130":"I m J D E F A B C K L G M N O n o p q r","322":"0 1 s t u v w x y z"},D:{"2":"I m J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"D E F 3B qB 5B 6B","130":"I m J 4B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","130":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB KC LC MC","130":"HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","130":"H gC hC"},J:{"2":"D","130":"A"},K:{"2":"A B C iB vB jB","130":"Y"},L:{"130":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"130":"iC"},P:{"130":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"130":"uC"},R:{"130":"vC"},S:{"1":"wC"}},B:5,C:"CSS font-variant-alternates"}; +module.exports={A:{A:{"2":"J D E F yB","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","130":"I n J D E F A B C K L G M N O o p q r s","322":"0 1 2 t u v w x y z"},D:{"2":"I n J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"D E F 4B rB 6B 7B","130":"I n J 5B"},F:{"2":"F B C DC EC FC GC jB wB HC kB","130":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB LC MC NC","130":"IC xB JC KC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","130":"H hC iC"},J:{"2":"D","130":"A"},K:{"2":"A B C jB wB kB","130":"Y"},L:{"130":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"130":"jC"},P:{"130":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"130":"vC"},R:{"130":"wC"},S:{"1":"xC"}},B:5,C:"CSS font-variant-alternates"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js index ebc653c74b19e3..bd546a2dd0d0a5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-east-asian.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","132":"0 1 s t u v w x y z"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"2":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:4,C:"CSS font-variant-east-asian "}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s 0B 1B","132":"0 1 2 t u v w x y z"},D:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB DC EC FC GC jB wB HC kB"},G:{"2":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},B:4,C:"CSS font-variant-east-asian "}; 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 54c52e8d15d7f8..1b3d0dc3eb56bf 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:2,C:"CSS font-variant-numeric"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 efaff8e1b8cecc..edd6f8b3b330bf 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F CC"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","260":"qB HC"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","2":"cC","4":"lB dC eC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"@font-face Web fonts"}; +module.exports={A:{A:{"1":"F A B","132":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","2":"F DC"},G:{"1":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","260":"rB IC"},H:{"2":"cC"},I:{"1":"I H gC xB hC iC","2":"dC","4":"mB eC fC"},J:{"1":"A","4":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 caad2d5d2b9cad..8a151b2b84aa94 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Form attribute"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"1":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 3c8a59a6eaa358..ad5c42ede6e44f 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC","16":"DC EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","2":"cC dC eC","16":"lB"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","16":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Attributes for form submission"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","2":"F DC","16":"EC FC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"1":"cC"},I:{"1":"I H gC xB hC iC","2":"dC eC fC","16":"mB"},J:{"1":"A","2":"D"},K:{"1":"B C Y jB wB kB","16":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 d15c1bae67feb9..e0e95cb655fda1 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m J D E F A 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F CC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","132":"E HC wB IC JC KC LC MC NC OC"},H:{"516":"bC"},I:{"1":"H hC","2":"lB cC dC eC","132":"I fC wB gC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"132":"wC"}},B:1,C:"Form validation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","132":"n J D E F A 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","2":"F DC"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB","132":"E IC xB JC KC LC MC NC OC PC"},H:{"516":"cC"},I:{"1":"H iC","2":"mB dC eC fC","132":"I gC xB hC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"132":"xC"}},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 6438ea1818be06..60ca8027b65c09 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":"xB","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"4":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"F B C KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","4":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"2":"qB","4":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","4":"gC hC"},J:{"2":"D","4":"A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"4":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","4":"I jC kC lC"},Q:{"1":"uC"},R:{"4":"vC"},S:{"4":"wC"}},B:1,C:"HTML5 form features"}; +module.exports={A:{A:{"2":"yB","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"zB mB 0B 1B"},D:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"4":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"4B rB"},F:{"1":"F B C LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","4":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},G:{"2":"rB","4":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB","4":"hC iC"},J:{"2":"D","4":"A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"4":"X"},N:{"4":"A B"},O:{"1":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","4":"I kC lC mC"},Q:{"1":"vC"},R:{"4":"wC"},S:{"4":"xC"}},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 71a755521b7f3c..e8578f530873cf 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 xB","548":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","516":"C K L G M N O"},C:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB","1700":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB"},D:{"1":"aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L","676":"G M N O n","804":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB"},E:{"2":"I m 3B qB","548":"tB uB kB BC","676":"4B","804":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC","804":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","2052":"SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","292":"A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","548":"B"},O:{"804":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","804":"I jC kC lC mC nC"},Q:{"804":"uC"},R:{"804":"vC"},S:{"1":"wC"}},B:1,C:"Full Screen API"}; +module.exports={A:{A:{"2":"J D E F A yB","548":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","516":"C K L G M N O"},C:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F 0B 1B","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB","1700":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB"},D:{"1":"bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L","676":"G M N O o","804":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB"},E:{"2":"I n 4B rB","548":"uB vB lB CC","676":"5B","804":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B C DC EC FC GC jB wB HC","804":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC","2052":"TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D","292":"A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","548":"B"},O:{"804":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","804":"I kC lC mC nC oC"},Q:{"804":"vC"},R:{"804":"wC"},S:{"1":"xC"}},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 74cde09706fff3..7f8a944a2249bb 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o","33":"p q r s"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"Gamepad API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p","33":"q r s t"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 18413a5bf690a9..fb323eaecc57af 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":"xB","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB zB 0B","8":"yB lB","129":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","4":"I","129":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I 3B qB","129":"A"},F:{"1":"0 1 2 3 4 5 6 B C M N O n o p q r s t u v w x y z FC iB vB GC jB","2":"F G CC","8":"DC EC","129":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E qB HC wB IC JC KC LC MC NC","129":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I cC dC eC fC wB gC hC","129":"H"},J:{"1":"D A"},K:{"1":"B C iB vB jB","8":"A","129":"Y"},L:{"129":"X"},M:{"129":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I","129":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"129":"uC"},R:{"129":"vC"},S:{"1":"wC"}},B:2,C:"Geolocation"}; +module.exports={A:{A:{"1":"F A B","2":"yB","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 0B 1B","8":"zB mB","129":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","4":"I","129":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"I 4B rB","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 B C M N O o p q r s t u v w x y z GC jB wB HC kB","2":"F G DC","8":"EC FC","129":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"E rB IC xB JC KC LC MC NC OC","129":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I dC eC fC gC xB hC iC","129":"H"},J:{"1":"D A"},K:{"1":"B C jB wB kB","8":"A","129":"Y"},L:{"129":"H"},M:{"129":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I","129":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"129":"vC"},R:{"129":"wC"},S:{"1":"xC"}},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 c202ad1a16f340..c14b72ddbd1c4e 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 xB","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","260":"I m J D E F A B","1156":"lB","1284":"zB","1796":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","16":"F CC","132":"DC EC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","132":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2049":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Element.getBoundingClientRect()"}; +module.exports={A:{A:{"644":"J D yB","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB","260":"I n J D E F A B","1156":"mB","1284":"0B","1796":"1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","16":"F DC","132":"EC FC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","132":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2049":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 9517e3be112da0..77bc2da278986e 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","132":"lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","260":"I m J D E F A"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","260":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","260":"F CC DC EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","260":"qB HC wB"},H:{"260":"bC"},I:{"1":"I H fC wB gC hC","260":"lB cC dC eC"},J:{"1":"A","260":"D"},K:{"1":"B C Y iB vB jB","260":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"getComputedStyle"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB","132":"mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","260":"I n J D E F A"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","260":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","260":"F DC EC FC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","260":"rB IC xB"},H:{"260":"cC"},I:{"1":"I H gC xB hC iC","260":"mB dC eC fC"},J:{"1":"A","260":"D"},K:{"1":"B C Y jB wB kB","260":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 89ffd4121a9014..4472ae8f963acf 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":"xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"getElementsByClassName"}; +module.exports={A:{A:{"1":"F A B","2":"yB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","8":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f64da55e29a81b..376db81b4acfba 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 xB","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","33":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"crypto.getRandomValues()"}; +module.exports={A:{A:{"2":"J D E F A yB","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","33":"B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 437b5bb34c3e6a..5e0665c9275017 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"Gyroscope"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB Y VB WB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 4decab5ae1e703..47abb47f20ceb7 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D 3B qB 4B 5B 6B","129":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","194":"E F A 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC JC KC","129":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","194":"E LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"navigator.hardwareConcurrency"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 0B 1B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D 4B rB 5B 6B 7B","129":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","194":"E F A 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB"},G:{"2":"rB IC xB JC KC LC","129":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","194":"E MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 eec470e0c2c4ba..6161f2f926ce82 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","8":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","8":"F CC DC EC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","2":"cC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","8":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Hashchange event"}; +module.exports={A:{A:{"1":"E F A B","8":"J D yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","8":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"I"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","8":"F DC EC FC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"2":"cC"},I:{"1":"mB I H eC fC gC xB hC iC","2":"dC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","8":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 b8dc2746f42869..a4001ca0cdc523 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","130":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","130":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"HEIF/ISO Base Media File Format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","130":"B C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC","130":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 ec935356d4ca1a..9a918c88be1d99 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 xB","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","516":"B C iB jB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","258":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","258":"Y"},L:{"258":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","258":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"HEVC/H.265 video format"}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","516":"B C jB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","258":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","258":"Y"},L:{"258":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I","258":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 186f95bcd6df26..d117ac2faecc61 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F B CC DC EC FC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","2":"lB cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"C Y iB vB jB","2":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"hidden attribute"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F B DC EC FC GC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"1":"cC"},I:{"1":"I H gC xB hC iC","2":"mB dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"C Y jB wB kB","2":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7a805b16531466..6ba140d7766073 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n","33":"o p q r"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"High Resolution Time API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o","33":"p q r s"},E:{"1":"E F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 36f2271d354d8e..469409768e3379 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","4":"m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W vB GC jB","2":"F B CC DC EC FC iB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","4":"wB"},H:{"2":"bC"},I:{"1":"H dC eC wB gC hC","2":"lB I cC fC"},J:{"1":"D A"},K:{"1":"C Y iB vB jB","2":"A B"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Session history management"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","4":"n 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W wB HC kB","2":"F B DC EC FC GC jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC","4":"xB"},H:{"2":"cC"},I:{"1":"H eC fC xB hC iC","2":"mB I dC gC"},J:{"1":"D A"},K:{"1":"C Y jB wB kB","2":"A B"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8336888fad949a..f1cccadd1a4999 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB IC","129":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC","257":"dC eC"},J:{"1":"A","16":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"516":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:4,C:"HTML Media Capture"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"rB IC xB JC","129":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC","257":"eC fC"},J:{"1":"A","16":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"516":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"16":"vC"},R:{"1":"wC"},S:{"2":"xC"}},B:4,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 c4521ec989db4a..b361c0bbd198de 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":"xB","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 Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","132":"lB zB 0B","260":"I m J D E F A B C K L G M N O n o"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m","260":"J D E F A B C K L G M N O n o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"I 3B qB","260":"m J 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","132":"F B CC DC EC FC","260":"C iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB","260":"HC wB IC JC"},H:{"132":"bC"},I:{"1":"H gC hC","132":"cC","260":"lB I dC eC fC wB"},J:{"260":"D A"},K:{"1":"Y","132":"A","260":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"HTML5 semantic elements"}; +module.exports={A:{A:{"2":"yB","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 Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB","132":"mB 0B 1B","260":"I n J D E F A B C K L G M N O o p"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n","260":"J D E F A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","132":"I 4B rB","260":"n J 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","132":"F B DC EC FC GC","260":"C jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","132":"rB","260":"IC xB JC KC"},H:{"132":"cC"},I:{"1":"H hC iC","132":"dC","260":"mB I eC fC gC xB"},J:{"260":"D A"},K:{"1":"Y","132":"A","260":"B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2e98f3fd17bc70..480c7c13443e21 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 xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:7,C:"HTTP Live Streaming (HLS)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 7696922530bf6f..beeea6f331e3f6 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 xB","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","513":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","513":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B","260":"F A 7B rB"},F:{"1":"0 1 2 3 4 5 w x y z","2":"F B C G M N O n o p q r s t u v CC DC EC FC iB vB GC jB","513":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","513":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","513":"Y"},L:{"513":"X"},M:{"513":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I","513":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"513":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"HTTP/2 protocol"}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB","2":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","513":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","513":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B","260":"F A 8B sB"},F:{"1":"0 1 2 3 4 5 6 x y z","2":"F B C G M N O o p q r s t u v w DC EC FC GC jB wB HC kB","513":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","513":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","513":"Y"},L:{"513":"H"},M:{"513":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I","513":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"513":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 601fd76956719f..30145a7ac6a54a 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 xB"},B:{"1":"W Z a b c d e f g h i j k l H X","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB zB 0B","194":"bB cB dB eB fB gB hB P Q R oB S T U V W"},D:{"1":"W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","322":"P Q R S T","578":"U V"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","1090":"L G 9B AC sB tB uB kB BC"},F:{"1":"dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","578":"cB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","66":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"HTTP/3 protocol"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"W Z a b c d e f g h i j k l X m H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB 0B 1B","194":"cB dB eB fB gB hB iB P Q R pB S T U V W"},D:{"1":"W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","322":"P Q R S T","578":"U V"},E:{"2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB 9B","1090":"L G AC BC tB uB vB lB CC"},F:{"1":"eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB DC EC FC GC jB wB HC kB","578":"dB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","66":"ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 7841905eb31828..1390c973199710 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","4":"N O n o p q r s t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","2":"cC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"sandbox attribute for iframes"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M 0B 1B","4":"N O o p q r s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC"},H:{"2":"cC"},I:{"1":"mB I H eC fC gC xB hC iC","2":"dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 e2852a5f4652c4..94865bd27eaa19 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"o p q r s t u"},E:{"2":"I m J E F A B C K L G 3B qB 4B 5B 7B rB iB jB 8B 9B AC sB tB uB kB BC","130":"D 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","130":"KC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"seamless attribute for iframes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","66":"p q r s t u v"},E:{"2":"I n J E F A B C K L G 4B rB 5B 6B 8B sB jB kB 9B AC BC tB uB vB lB CC","130":"D 7B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","130":"LC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 1fcc35544ae7ed..7b4aacb0b11fd6 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":"xB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB","8":"lB I m J D E F A B C K L G M N O n o p q r s zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","8":"L G M N O n"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB","8":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC","8":"C iB vB GC jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","8":"HC wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","8":"lB I cC dC eC fC wB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A B","8":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"srcdoc attribute for iframes"}; +module.exports={A:{A:{"2":"yB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","8":"C K L G M N O"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB","8":"mB I n J D E F A B C K L G M N O o p q r s t 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K","8":"L G M N O o"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB","8":"I n 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B DC EC FC GC","8":"C jB wB HC kB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB","8":"IC xB JC"},H:{"2":"cC"},I:{"1":"H hC iC","8":"mB I dC eC fC gC xB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A B","8":"C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 ea70edf91e6141..05582f33db13cd 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 xB"},B:{"2":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","322":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"322":"uC"},R:{"1":"vC"},S:{"194":"wC"}},B:5,C:"ImageCapture API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","322":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"322":"vC"},R:{"1":"wC"},S:{"194":"xC"}},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 2efd4246d6f0b6..1d393b1a346fb9 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 xB","161":"B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l H X","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A","161":"B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Input Method Editor API"}; +module.exports={A:{A:{"2":"J D E F A yB","161":"B"},B:{"2":"P Q R S T U V W Z a b c d e f g h i j k l X m H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A","161":"B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 0617f8c7c166ee..672f72ae1240de 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 716815ab4037e2..01b02ae5833494 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 xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","194":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","322":"X pB"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","194":"dB eB fB gB hB P Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","194":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC lC mC nC rB oC pC qC rC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Import maps"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"a b c d e f g h i j k l X m H","2":"C K L G M N O","194":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X 0B 1B","322":"m H qB"},D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB","194":"eB fB gB hB iB P Q R S T U V W Z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB DC EC FC GC jB wB HC kB","194":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"tC lB uC","2":"I kC lC mC nC oC sB pC qC rC sC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 dbf3e7b94092e6..41dacb322905ff 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 xB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B","8":"y z OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","72":"0 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":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"0 1 2 y z","72":"3"},E:{"2":"I m 3B qB 4B","8":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB","2":"F B C G M WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"N O n o p","72":"q"},G:{"2":"qB HC wB IC JC","8":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"8":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC","2":"qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"HTML Imports"}; +module.exports={A:{A:{"2":"J D E F yB","8":"A B"},B:{"1":"P","2":"Q R S T U V W Z a b c d e f g h i j k l X m H","8":"C K L G M N O"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y 0B 1B","8":"0 z PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","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"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","66":"0 1 2 3 z","72":"4"},E:{"2":"I n 4B rB 5B","8":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB WB","2":"F B C G M XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","66":"N O o p q","72":"r"},G:{"2":"rB IC xB JC KC","8":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"8":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC","2":"rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f675bbe86351dc..2d1505fa0e4aec 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB","16":"zB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"indeterminate checkbox"}; +module.exports={A:{A:{"1":"J D E F A B","16":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB","16":"0B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB"},G:{"1":"UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f293f03256f968..6a1d6bee3428d6 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 xB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"A B C K L G","36":"I m J D E F"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"A","8":"I m J D E F","33":"r","36":"B C K L G M N O n o p q"},E:{"1":"A B C K L G rB iB jB 8B AC sB tB uB kB BC","8":"I m J D 3B qB 4B 5B","260":"E F 6B 7B","516":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC","8":"B C EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC aC sB tB uB kB","8":"qB HC wB IC JC KC","260":"E LC MC NC","516":"ZC"},H:{"2":"bC"},I:{"1":"H gC hC","8":"lB I cC dC eC fC wB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A","8":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"IndexedDB"}; +module.exports={A:{A:{"2":"J D E F yB","132":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","33":"A B C K L G","36":"I n J D E F"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"A","8":"I n J D E F","33":"s","36":"B C K L G M N O o p q r"},E:{"1":"A B C K L G sB jB kB 9B BC tB uB vB lB CC","8":"I n J D 4B rB 5B 6B","260":"E F 7B 8B","516":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F DC EC","8":"B C FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC bC tB uB vB lB","8":"rB IC xB JC KC LC","260":"E MC NC OC","516":"aC"},H:{"2":"cC"},I:{"1":"H hC iC","8":"mB I dC eC fC gC xB"},J:{"1":"A","8":"D"},K:{"1":"Y","2":"A","8":"B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0763fea46f5940..52531da65b17b4 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B","132":"CB DB EB","260":"FB GB HB IB"},D:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB","132":"GB HB IB JB","260":"KB LB MB NB OB PB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"3 4 5 6","260":"7 8 9 AB BB CB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","16":"OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I","260":"jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"260":"wC"}},B:4,C:"IndexedDB 2.0"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 0B 1B","132":"DB EB FB","260":"GB HB IB JB"},D:{"1":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","132":"HB IB JB KB","260":"LB MB NB OB PB QB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","132":"4 5 6 7","260":"8 9 AB BB CB DB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC","16":"PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I","260":"kC lC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"260":"xC"}},B:4,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 7609fed81fd9db..f47982078274f5 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":"xB","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","36":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS inline-block"}; +module.exports={A:{A:{"1":"E F A B","4":"yB","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","36":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 1fb91addbffb33..ee0cacf91bd2ca 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"HTMLElement.innerText"}; +module.exports={A:{A:{"1":"J D E F A B","16":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","16":"F"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f4b8480a6d5bc0..7d5acf92d6967c 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 xB","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B","516":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"N O n o p q r s t u","2":"I m J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 8 v w x y z","260":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J 4B 5B","2":"I m 3B qB","2052":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB","1025":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1025":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2052":"A B"},O:{"1025":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"260":"uC"},R:{"1":"vC"},S:{"516":"wC"}},B:1,C:"autocomplete attribute: on & off values"}; +module.exports={A:{A:{"1":"J D E F A yB","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y 0B 1B","516":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"N O o p q r s t u v","2":"I n J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 8 9 w x y z","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"J 5B 6B","2":"I n 4B rB","2052":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"rB IC xB","1025":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1025":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2052":"A B"},O:{"1025":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"260":"vC"},R:{"1":"wC"},S:{"516":"xC"}},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 c35975da2c19a2..43cc612793839b 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F G M CC DC EC FC"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","129":"TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:1,C:"Color input type"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F G M DC EC FC GC"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC","129":"UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 6112d782eb0d6e..a12e52fc4c2906 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","1090":"LB MB NB OB","2052":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d","4100":"e f g h i j k l H X pB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n","2052":"o p q r s"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","4100":"G 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB","260":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","514":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2052":"wC"}},B:1,C:"Date and time input types"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B","1090":"MB NB OB PB","2052":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d","4100":"e f g h i j k l X m H qB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o","2052":"p q r s t"},E:{"2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B","4100":"G AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"rB IC xB","260":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB dC eC fC","514":"I gC xB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2052":"xC"}},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 51802f348a51df..0f5c10f2534f19 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","132":"cC dC eC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Email, telephone & URL input types"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","132":"dC eC fC"},J:{"1":"A","132":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 c8229835179c09..71387edd48a16f 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 xB","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2561":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB","1537":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB 0B","1796":"lB zB"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L","1025":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB","1537":"0 1 2 G M N O n o p q r s t u v w x y z"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","16":"I m J 3B qB","1025":"D E F A B C 5B 6B 7B rB iB","1537":"4B","4097":"K jB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","16":"F B C CC DC EC FC iB vB","260":"GC","1025":"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","1537":"G M N O n o p"},G:{"1":"VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","1025":"E LC MC NC OC PC QC RC SC","1537":"IC JC KC","4097":"TC UC"},H:{"2":"bC"},I:{"16":"cC dC","1025":"H hC","1537":"lB I eC fC wB gC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C iB vB jB","1025":"Y"},L:{"1":"X"},M:{"1537":"H"},N:{"2561":"A B"},O:{"1537":"iC"},P:{"1025":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1025":"uC"},R:{"1025":"vC"},S:{"1537":"wC"}},B:1,C:"input event"}; +module.exports={A:{A:{"2":"J D E yB","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2561":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB","1537":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B","1796":"mB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L","1025":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB","1537":"0 1 2 3 G M N O o p q r s t u v w x y z"},E:{"1":"L G 9B AC BC tB uB vB lB CC","16":"I n J 4B rB","1025":"D E F A B C 6B 7B 8B sB jB","1537":"5B","4097":"K kB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","16":"F B C DC EC FC GC jB wB","260":"HC","1025":"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","1537":"G M N O o p q"},G:{"1":"WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB","1025":"E MC NC OC PC QC RC SC TC","1537":"JC KC LC","4097":"UC VC"},H:{"2":"cC"},I:{"16":"dC eC","1025":"H iC","1537":"mB I fC gC xB hC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C jB wB kB","1025":"Y"},L:{"1":"H"},M:{"1537":"X"},N:{"2561":"A B"},O:{"1537":"jC"},P:{"1025":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1025":"vC"},R:{"1025":"wC"},S:{"1537":"xC"}},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 9b89f3a8d74361..fb3a927d1741cd 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","132":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","16":"m J D E p q r s t","132":"F A B C K L G M N O n o"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","132":"J D E F A B 5B 6B 7B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"JC KC","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","514":"qB HC wB IC"},H:{"2":"bC"},I:{"2":"cC dC eC","260":"lB I fC wB","514":"H gC hC"},J:{"132":"A","260":"D"},K:{"2":"A B C iB vB jB","514":"Y"},L:{"260":"X"},M:{"2":"H"},N:{"514":"A","1028":"B"},O:{"2":"iC"},P:{"260":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"260":"uC"},R:{"260":"vC"},S:{"1":"wC"}},B:1,C:"accept attribute for file input"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","132":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I","16":"n J D E q r s t u","132":"F A B C K L G M N O o p"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","132":"J D E F A B 6B 7B 8B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"2":"KC LC","132":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","514":"rB IC xB JC"},H:{"2":"cC"},I:{"2":"dC eC fC","260":"mB I gC xB","514":"H hC iC"},J:{"132":"A","260":"D"},K:{"2":"A B C jB wB kB","514":"Y"},L:{"260":"H"},M:{"2":"X"},N:{"514":"A","1028":"B"},O:{"2":"jC"},P:{"260":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"260":"vC"},R:{"260":"wC"},S:{"1":"xC"}},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 2f5d1ed182f2af..aba841ed725243 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Directory selection from file input"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 aac020c07da8bc..e103351c54132a 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC EC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"130":"bC"},I:{"130":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"130":"A B C Y iB vB jB"},L:{"132":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"130":"iC"},P:{"130":"I","132":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"2":"wC"}},B:1,C:"Multiple file selection"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","2":"F DC EC FC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC"},H:{"130":"cC"},I:{"130":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"130":"A B C Y jB wB kB"},L:{"132":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"130":"jC"},P:{"130":"I","132":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"132":"vC"},R:{"132":"wC"},S:{"2":"xC"}},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 db9628ef90b419..56467860472acf 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","4":"N O n o","194":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","66":"OB PB QB mB RB nB SB TB Y UB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB","66":"BB CB DB EB FB GB HB IB JB KB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},B:1,C:"inputmode attribute"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M 0B 1B","4":"N O o p","194":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q 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 nB SB oB TB UB Y VB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB DC EC FC GC jB wB HC kB","66":"CB DB EB FB GB HB IB JB KB LB"},G:{"1":"UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","2":"I kC lC mC nC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"194":"xC"}},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 9ffe3767426030..a456302a87a347 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:1,C:"Minimum length attribute for input fields"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 0B 1B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 820bf1512538ab..7f48867583b74e 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 xB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K","1025":"L G M N O"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","513":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"388":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB cC dC eC","388":"I H fC wB gC hC"},J:{"2":"D","388":"A"},K:{"1":"A B C iB vB jB","388":"Y"},L:{"388":"X"},M:{"641":"H"},N:{"388":"A B"},O:{"388":"iC"},P:{"388":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"388":"uC"},R:{"388":"vC"},S:{"513":"wC"}},B:1,C:"Number input type"}; +module.exports={A:{A:{"2":"J D E F yB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K","1025":"L G M N O"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B","513":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"388":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB dC eC fC","388":"I H gC xB hC iC"},J:{"2":"D","388":"A"},K:{"1":"A B C jB wB kB","388":"Y"},L:{"388":"H"},M:{"641":"X"},N:{"388":"A B"},O:{"388":"jC"},P:{"388":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"388":"vC"},R:{"388":"wC"},S:{"513":"xC"}},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 de9b231975fc18..23b1772b8f55d9 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m","388":"J D E F A 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","388":"E IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Pattern attribute for input fields"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n","388":"J D E F A 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB","388":"E JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H iC","2":"mB I dC eC fC gC xB hC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 bbaae94b0aedc6..539207fb4c58a1 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W vB GC jB","2":"F CC DC EC FC","132":"B iB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB H cC dC eC wB gC hC","4":"I fC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"input placeholder attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","132":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W wB HC kB","2":"F DC EC FC GC","132":"B jB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB H dC eC fC xB hC iC","4":"I gC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 c3eed3bea56856..c517286de2d212 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H wB gC hC","4":"lB I cC dC eC fC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Range input type"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"H xB hC iC","4":"mB I dC eC fC gC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 43bc971f60fc05..4eca3a08aed7da 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 xB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M N O"},C:{"2":"yB lB zB 0B","129":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L p q r s t","129":"G M N O n o"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F CC DC EC FC","16":"B iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"129":"bC"},I:{"1":"H gC hC","16":"cC dC","129":"lB I eC fC wB"},J:{"1":"D","129":"A"},K:{"1":"C Y","2":"A","16":"B iB vB","129":"jB"},L:{"1":"X"},M:{"129":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"129":"wC"}},B:1,C:"Search input type"}; +module.exports={A:{A:{"2":"J D E F yB","129":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K L G M N O"},C:{"2":"zB mB 0B 1B","129":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L q r s t u","129":"G M N O o p"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F DC EC FC GC","16":"B jB wB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"129":"cC"},I:{"1":"H hC iC","16":"dC eC","129":"mB I fC gC xB"},J:{"1":"D","129":"A"},K:{"1":"C Y","2":"A","16":"B jB wB","129":"kB"},L:{"1":"H"},M:{"129":"X"},N:{"129":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"129":"xC"}},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 72e913518aa894..ffc65ea7fd87e4 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","16":"F CC DC EC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Selection controls for input & textarea"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","16":"F DC EC FC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 cb98807fe851e7..de8f6328c2c6c1 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","16":"F"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 ebb9c4b02e93b8..fbcd1d6167816e 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":"xB","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Element.insertAdjacentHTML()"}; +module.exports={A:{A:{"1":"A B","16":"yB","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","16":"F DC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8347195e08f5c9..29029680c4e402 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:6,C:"Internationalization API"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 ebfedc8731ae04..fae34c6ca349c4 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"IntersectionObserver V2"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"pC qC rC sC tC lB uC","2":"I kC lC mC nC oC sB"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 75d87392a27499..fb803e9242450a 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 xB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B","194":"KB LB MB"},D:{"1":"QB mB RB nB SB TB Y","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","516":"JB KB LB MB NB OB PB","1025":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","516":"6 7 8 9 AB BB CB","1025":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","1025":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"516":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I","516":"jC kC"},Q:{"1025":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"IntersectionObserver"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B","194":"LB MB NB"},D:{"1":"RB nB SB oB TB UB Y","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","516":"KB LB MB NB OB PB QB","1025":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","516":"7 8 9 AB BB CB DB","1025":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","1025":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"516":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I","516":"kC lC"},Q:{"1025":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 7f464ba65a4df9..3c7db6430037eb 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N","130":"O"},C:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB zB 0B"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Intl.PluralRules API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N","130":"O"},C:{"1":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 0B 1B"},D:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB kB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB DC EC FC GC jB wB HC kB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 5fa676a4c1eef6..4b2e36898c5e62 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 xB"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB","932":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB zB 0B","2308":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N O n o p","545":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB","1537":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J 3B qB 4B","516":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","548":"F A 7B rB","676":"D E 5B 6B"},F:{"2":"F B C CC DC EC FC iB vB GC jB","513":"2","545":"0 G M N O n o p q r s t u v w x y z","1537":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC","516":"YC ZC aC sB tB uB kB","548":"MC NC OC PC QC RC SC TC UC VC WC XC","676":"E KC LC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","545":"gC hC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C iB vB jB","1537":"Y"},L:{"1537":"X"},M:{"2308":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"545":"I","1537":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"545":"uC"},R:{"1537":"vC"},S:{"932":"wC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB","932":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB 0B 1B","2308":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"I n J D E F A B C K L G M N O o p q","545":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB","1537":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J 4B rB 5B","516":"B C K L G jB kB 9B AC BC tB uB vB lB CC","548":"F A 8B sB","676":"D E 6B 7B"},F:{"2":"F B C DC EC FC GC jB wB HC kB","513":"3","545":"0 1 G M N O o p q r s t u v w x y z","1537":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC xB JC KC","516":"ZC aC bC tB uB vB lB","548":"NC OC PC QC RC SC TC UC VC WC XC YC","676":"E LC MC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","545":"hC iC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C jB wB kB","1537":"Y"},L:{"1537":"H"},M:{"2308":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"545":"I","1537":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"545":"vC"},R:{"1537":"wC"},S:{"932":"xC"}},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 01ed68186739c6..5cc282a8fdb419 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","129":"m 4B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"JPEG 2000 image format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","129":"n 5B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 b3308814aba256..1682bc9dfea6e3 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","578":"c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a zB 0B","322":"b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","194":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB CC DC EC FC iB vB GC jB","194":"gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"JPEG XL image format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b","578":"c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a 0B 1B","322":"b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b","194":"c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB DC EC FC GC jB wB HC kB","194":"hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 2155af887538c6..3a63579cbad2a9 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 xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"JPEG XR image format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 806a8a3e194137..a961e7a50933c3 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB zB 0B"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Lookbehind in JS regular expressions"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB 0B 1B"},D:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 a2d154fa5c0507..07fbaf378a78b4 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 xB","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"JSON parsing"}; +module.exports={A:{A:{"1":"F A B","2":"J D yB","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 4f3ed632e533ff..d6082b61dec8b1 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G","132":"M N O"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","132":"PB QB mB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","132":"rB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CC DC EC FC iB vB GC jB","132":"CB DB EB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC","132":"PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC","132":"lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"132":"wC"}},B:5,C:"CSS justify-content: space-evenly"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G","132":"M N O"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B"},D:{"1":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r 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 nB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B","132":"sB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DC EC FC GC jB wB HC kB","132":"DB EB FB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC","132":"QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC","132":"mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"132":"xC"}},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 8c5d8e9c03d06c..becc58ac338ec2 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 xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"cC dC eC","132":"lB I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:"High-quality kerning pairs & ligatures"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"dC eC fC","132":"mB I gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2da223449ed814..8efeaf75a14249 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","16":"C"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"130":"H"},N:{"130":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:"KeyboardEvent.charCode"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","16":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC","16":"C"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"Y kB","2":"A B jB wB","16":"C"},L:{"1":"H"},M:{"130":"X"},N:{"130":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 bc486d9985fb65..ae2862f4a3a906 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","194":"AB BB CB DB EB FB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB","194":"0 1 2 x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"194":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I","194":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"194":"vC"},S:{"1":"wC"}},B:5,C:"KeyboardEvent.code"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB","194":"BB CB DB EB FB GB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x DC EC FC GC jB wB HC kB","194":"0 1 2 3 y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"194":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I","194":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"194":"wC"},S:{"1":"xC"}},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 f2aa3fa6c9de5c..dbe5a0c9941b15 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B G M CC DC EC FC iB vB GC","16":"C"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"KeyboardEvent.getModifierState()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B G M DC EC FC GC jB wB HC","16":"C"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y kB","2":"A B jB wB","16":"C"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 08b5d9a7a94745..d2fdaf80fcfc77 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 xB","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B","132":"r s t u v w"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"0 1 2 3 4 5 F B G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC","16":"C"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:5,C:"KeyboardEvent.key"}; +module.exports={A:{A:{"2":"J D E yB","260":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r 0B 1B","132":"s t u v w x"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"0 1 2 3 4 5 6 F B G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC","16":"C"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"1":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y kB","2":"A B jB wB","16":"C"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 2c8abe190a6e30..d898f6eab2ec84 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"J 3B qB","132":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","16":"C","132":"G M"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB","132":"IC JC KC"},H:{"2":"bC"},I:{"1":"H gC hC","16":"cC dC","132":"lB I eC fC wB"},J:{"132":"D A"},K:{"1":"Y jB","2":"A B iB vB","16":"C"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"KeyboardEvent.location"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"J 4B rB","132":"I n 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC","16":"C","132":"G M"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB","132":"JC KC LC"},H:{"2":"cC"},I:{"1":"H hC iC","16":"dC eC","132":"mB I fC gC xB"},J:{"132":"D A"},K:{"1":"Y kB","2":"A B jB wB","16":"C"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2de3a83a973bbf..9cec78ede302f1 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","16":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","16":"F CC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB","16":"cC dC","132":"gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"132":"X"},M:{"132":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"2":"I","132":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"132":"vC"},S:{"1":"wC"}},B:7,C:"KeyboardEvent.which"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","16":"F DC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB","16":"dC eC","132":"hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"132":"H"},M:{"132":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"2":"I","132":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"132":"wC"},S:{"1":"xC"}},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 f4b1137ed5b065..b36d057f40bea5 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 xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Resource Hints: Lazyload"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"B","2":"A"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 318326b336605c..5b1845e7d2251a 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 xB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","194":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 n o p q r s t u v w x y z","516":"9 AB BB CB DB EB FB GB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","1028":"A rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","322":"G M N O n o p q r s t u v","516":"0 1 2 3 w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","1028":"OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","516":"I"},Q:{"1":"uC"},R:{"516":"vC"},S:{"1":"wC"}},B:6,C:"let"}; +module.exports={A:{A:{"2":"J D E F A yB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","194":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z","516":"AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B","1028":"A sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","322":"G M N O o p q r s t u v w","516":"0 1 2 3 4 x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC","1028":"PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","516":"I"},Q:{"1":"vC"},R:{"516":"wC"},S:{"1":"xC"}},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 725f20ea195338..b4607d8415a03b 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","130":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"130":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D","130":"A"},K:{"1":"Y","130":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"130":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"PNG favicons"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC tB uB vB lB","130":"E rB IC xB JC KC LC MC NC OC PC QC RC SC"},H:{"130":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D","130":"A"},K:{"1":"Y","130":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"130":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 601eb511fb3a91..d1c0a7cefc54f1 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 xB"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB zB 0B","260":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","513":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","1537":"Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB MB NB OB PB QB RB SB TB Y UB VB CC DC EC FC iB vB GC jB","1537":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","130":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"130":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","130":"A"},K:{"2":"Y","130":"A B C iB vB jB"},L:{"1537":"X"},M:{"2":"H"},N:{"130":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC","1537":"qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"513":"wC"}},B:1,C:"SVG favicons"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB 0B 1B","260":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","513":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","1537":"Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB NB OB PB QB RB SB TB UB Y VB WB DC EC FC GC jB wB HC kB","1537":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"TC UC VC WC XC YC ZC aC bC tB uB vB lB","130":"E rB IC xB JC KC LC MC NC OC PC QC RC SC"},H:{"130":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D","130":"A"},K:{"2":"Y","130":"A B C jB wB kB"},L:{"1537":"H"},M:{"2":"X"},N:{"130":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC","1537":"rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"513":"xC"}},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 4e202836b76774..c1b97ec789f90f 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 xB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB","260":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"16":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Resource Hints: dns-prefetch"}; +module.exports={A:{A:{"1":"A B","2":"J D E yB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB","260":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"16":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"16":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"16":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"16":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","16":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a16613dd542018..2dc83c98ff03a7 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:1,C:"Resource Hints: modulepreload"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","2":"I kC lC mC nC"},Q:{"16":"vC"},R:{"16":"wC"},S:{"2":"xC"}},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 32e552a00b1854..983d98d1053e70 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB","2":"0 1 2 3 4 5 6 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","129":"7"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"16":"H"},N:{"2":"A B"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Resource Hints: preconnect"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L","260":"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 nB SB oB TB UB Y VB WB XB YB ZB aB","2":"0 1 2 3 4 5 6 7 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","129":"8"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"16":"X"},N:{"2":"A B"},O:{"16":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 cca2e111d361f1..1da6c16d643072 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","194":"L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","194":"XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"I H gC hC","2":"lB cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Resource Hints: prefetch"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D"},E:{"2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB","194":"L G 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","194":"YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"I H hC iC","2":"mB dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f7992919be64b9..3fe309d05c01ca 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","1028":"N O"},C:{"1":"U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB zB 0B","132":"OB","578":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T"},D:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","322":"B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","322":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"Resource Hints: preload"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M","1028":"N O"},C:{"1":"U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 0B 1B","132":"PB","578":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T"},D:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","322":"B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC","322":"RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 4999a660d3904c..14c277e90b9ef1 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"Resource Hints: prerender"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"1":"B","2":"A"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 26248952676ce1..14ea95d3e9ac2d 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB zB 0B","132":"eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB","66":"eB fB"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","322":"L G 8B 9B AC sB","580":"tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","66":"SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","322":"XC YC ZC aC sB","580":"tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"132":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"Lazy loading via attribute for images & iframes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB 0B 1B","132":"fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB","66":"fB gB"},E:{"2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB","322":"L G 9B AC BC tB","580":"uB vB lB CC"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB DC EC FC GC jB wB HC kB","66":"TB UB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","322":"YC ZC aC bC tB","580":"uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"132":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"qC rC sC tC lB uC","2":"I kC lC mC nC oC sB pC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 7d48bc8d534e6b..0666f4587ecb45 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":"xB","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","132":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F B C CC DC EC FC iB vB GC","132":"jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"E qB HC wB IC JC KC LC MC NC"},H:{"132":"bC"},I:{"1":"H gC hC","132":"lB I cC dC eC fC wB"},J:{"132":"D A"},K:{"1":"Y","16":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","132":"A"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"4":"wC"}},B:6,C:"localeCompare()"}; +module.exports={A:{A:{"1":"B","16":"yB","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","132":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L G M N O o p q r s"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","132":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F B C DC EC FC GC jB wB HC","132":"kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","132":"E rB IC xB JC KC LC MC NC OC"},H:{"132":"cC"},I:{"1":"H hC iC","132":"mB I dC eC fC gC xB"},J:{"132":"D A"},K:{"1":"Y","16":"A B C jB wB","132":"kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","132":"A"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","132":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"4":"xC"}},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 1a8ead79f45cec..8108bb5d40b066 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"194":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"Magnetometer"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB Y VB WB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"194":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 bf9908c6817efb..54efca501a0a44 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 xB","36":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","36":"C K L"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB","36":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","36":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","36":"m J D 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC iB","36":"C G M N O n o vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","36":"HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"cC","36":"lB I dC eC fC wB gC hC"},J:{"36":"D A"},K:{"1":"Y","2":"A B","36":"C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"36":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","36":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"matches() DOM method"}; +module.exports={A:{A:{"2":"J D E yB","36":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","36":"C K L"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B","36":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","36":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","36":"n J D 5B 6B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B DC EC FC GC jB","36":"C G M N O o p wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB","36":"IC xB JC KC LC"},H:{"2":"cC"},I:{"1":"H","2":"dC","36":"mB I eC fC gC xB hC iC"},J:{"36":"D A"},K:{"1":"Y","2":"A B","36":"C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"36":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","36":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 456571dea02b0d..22b0e1bb0233bd 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"matchMedia"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B C DC EC FC GC jB wB HC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"1":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 08cd61dd0da1a4..b3f025467e8b81 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 xB","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h","584":"i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","129":"yB lB zB 0B"},D:{"1":"s","8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h","584":"i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","260":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"2":"F","4":"B C CC DC EC FC iB vB GC jB","8":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB","584":"S T U V W"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB"},H:{"8":"bC"},I:{"8":"lB I H cC dC eC fC wB gC hC"},J:{"1":"A","8":"D"},K:{"8":"A B C Y iB vB jB"},L:{"8":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"4":"iC"},P:{"8":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"8":"uC"},R:{"8":"vC"},S:{"1":"wC"}},B:2,C:"MathML"}; +module.exports={A:{A:{"2":"F A B yB","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h","584":"i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","129":"zB mB 0B 1B"},D:{"1":"t","8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h","584":"i j k l X m H qB 2B","1025":"3B"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","260":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"2":"F","8":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB","584":"S T U V W","2052":"B C DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"rB IC xB"},H:{"8":"cC"},I:{"8":"mB I H dC eC fC gC xB hC iC"},J:{"1":"A","8":"D"},K:{"8":"A B C Y jB wB kB"},L:{"8":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"4":"jC"},P:{"8":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"8":"vC"},R:{"8":"wC"},S:{"1":"xC"}},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 35c93960439f16..64e75d1a69ea8a 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":"xB","900":"J D E F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","1025":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","900":"yB lB zB 0B","1025":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"m 3B","900":"I qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F","132":"B C CC DC EC FC iB vB GC jB"},G:{"1":"HC wB IC JC KC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB","2052":"E LC"},H:{"132":"bC"},I:{"1":"lB I eC fC wB gC hC","16":"cC dC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C iB vB jB","4097":"Y"},L:{"4097":"X"},M:{"4097":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"4097":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1025":"wC"}},B:1,C:"maxlength attribute for input and textarea elements"}; +module.exports={A:{A:{"1":"A B","16":"yB","900":"J D E F"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","1025":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","900":"zB mB 0B 1B","1025":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"n 4B","900":"I rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F","132":"B C DC EC FC GC jB wB HC kB"},G:{"1":"IC xB JC KC LC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB","2052":"E MC"},H:{"132":"cC"},I:{"1":"mB I fC gC xB hC iC","16":"dC eC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C jB wB kB","4097":"Y"},L:{"4097":"H"},M:{"4097":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"4097":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1025":"xC"}},B:1,C:"maxlength attribute for input and textarea elements"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js index 0bd9ac0f6b1fed..47625928aff83a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E xB"},B:{"1":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X","16":"pB 1B 2B"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"B C G M N O n o p q r s DC EC FC iB vB GC jB","2":"0 1 2 3 4 5 6 7 8 9 F t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"16":"bC"},I:{"1":"I H fC wB gC hC","16":"lB cC dC eC"},J:{"16":"D A"},K:{"1":"C Y jB","16":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Media attribute"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},D:{"1":"0 1 2 I n J D E F A B C K L G M N O o p 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"qB 2B 3B"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB"},F:{"1":"B C G M N O o p q r s t EC FC GC jB wB HC kB","2":"0 1 2 3 4 5 6 7 8 9 F u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"16":"cC"},I:{"1":"I H gC xB hC iC","16":"mB dC eC fC"},J:{"16":"D A"},K:{"1":"C Y kB","16":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:1,C:"Media attribute"}; 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 b4eb2975d7ec61..94f10e44663920 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 xB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m 3B qB 4B","132":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC KC","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","132":"H gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"132":"H"},N:{"132":"A B"},O:{"2":"iC"},P:{"2":"I jC","132":"kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"132":"wC"}},B:2,C:"Media Fragments"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","132":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"I n J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n 4B rB 5B","132":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC xB JC KC LC","132":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","132":"H hC iC"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","132":"Y"},L:{"132":"H"},M:{"132":"X"},N:{"132":"A B"},O:{"2":"jC"},P:{"2":"I kC","132":"lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"132":"xC"}},B:2,C:"Media Fragments"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js index f4c21d12a53e92..b20d475e007395 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-session-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","16":"L G 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Media Session API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r 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 n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB","16":"L G 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:6,C:"Media Session API"}; 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 aeca78e78fbdf9..e723cf6ea1dd89 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","324":"JB KB LB MB NB OB PB QB mB RB nB"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","132":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","324":"4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"260":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","132":"jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"260":"wC"}},B:5,C:"Media Capture from DOM Elements API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 0B 1B","260":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","324":"KB LB MB NB OB PB QB RB nB SB oB"},E:{"2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","132":"B C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","324":"5 6 7 8 9 AB BB CB DB EB FB GB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"260":"X"},N:{"2":"A B"},O:{"132":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I","132":"kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"260":"xC"}},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 bdbd9740222f07..bd94ea7b3f6208 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB","194":"FB GB"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","322":"K L jB 8B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"2 3"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","578":"SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:5,C:"MediaRecorder API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB HB"},E:{"1":"G AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB","322":"K L kB 9B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"3 4"},G:{"1":"aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC","578":"TC UC VC WC XC YC ZC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 e0d605a9cb9cc0..32cf5029ff9b10 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 xB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B","66":"0 1 2 3 4 5 6 7 8 9 t u v w x y z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M","33":"r s t u v w x y","66":"N O n o p q"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC","260":"UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Media Source Extensions"}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t 0B 1B","66":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M","33":"s t u v w x y z","66":"N O o p q r"},E:{"1":"E F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC","260":"VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H iC","2":"mB I dC eC fC gC xB hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","2":"I kC lC mC nC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 37dfc4b4d142a5..c8e67c9ee04fb5 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D zB 0B","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T","450":"U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 F B C G M N O n o p q r s t u v w x y z FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"3 4 5 6 7 8 9 AB BB CB DB EB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"450":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Context menu item (menuitem element)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T","450":"U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","66":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","66":"4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"450":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 dcd72781fc51be..34cb7d7b5a220c 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","258":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"513":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","16":"jC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"theme-color Meta Tag"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","258":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB"},E:{"1":"G BC tB uB vB lB CC","2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"513":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I","16":"kC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 dbf713935ee7bd..4b6bb05c2278a2 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"meter element"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F DC EC FC GC"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 aaf04295010150..e50f8b720821a2 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"Web MIDI API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x y DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 090e771dc09f46..44dcb6cdd7ca42 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 xB","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"CSS min/max-width/height"}; +module.exports={A:{A:{"1":"F A B","8":"J yB","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 20ab1298920f75..5d83a9f85de89a 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","132":"I m J D E F A B C K L G M N O n o p zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","2":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"MP3 audio format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","132":"I n J D E F A B C K L G M N O o p q 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","2":"dC eC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 57a6850cd70962..8eb3a7038e8ae3 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 xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","386":"p q"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","386":"q r"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 284541f3d12af3..fec2b9ccb2dd10 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o zB 0B","4":"0 1 2 p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","4":"lB I cC dC fC wB","132":"eC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"260":"H"},N:{"1":"A B"},O:{"4":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"MPEG-4/H.264 video format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p 0B 1B","4":"0 1 2 3 q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H hC iC","4":"mB I dC eC gC xB","132":"fC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"260":"X"},N:{"1":"A B"},O:{"4":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 b26dbe4443e368..dadb8c250e870d 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 Multiple backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 889ba655b273c5..3b35a4f22b1f7d 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 xB"},B:{"1":"C K L G M N O","516":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"132":"KB LB MB NB OB PB QB mB RB nB SB TB Y","164":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B","516":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c","1028":"d e f g h i j k l H X pB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","516":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","132":"F 7B","164":"D E 6B","420":"I m J 3B qB 4B 5B"},F:{"1":"C iB vB GC jB","2":"F B CC DC EC FC","420":"0 1 2 3 4 G M N O n o p q r s t u v w x y z","516":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"MC NC","164":"E KC LC","420":"qB HC wB IC JC"},H:{"1":"bC"},I:{"420":"lB I cC dC eC fC wB gC hC","516":"H"},J:{"420":"D A"},K:{"1":"C iB vB jB","2":"A B","516":"Y"},L:{"516":"X"},M:{"516":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","420":"I"},Q:{"132":"uC"},R:{"132":"vC"},S:{"164":"wC"}},B:4,C:"CSS3 Multiple column layout"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O","516":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"132":"LB MB NB OB PB QB RB nB SB oB TB UB Y","164":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B","516":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c","1028":"d e f g h i j k l X m H qB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","516":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","132":"F 8B","164":"D E 7B","420":"I n J 4B rB 5B 6B"},F:{"1":"C jB wB HC kB","2":"F B DC EC FC GC","420":"0 1 2 3 4 5 G M N O o p q r s t u v w x y z","516":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","132":"NC OC","164":"E LC MC","420":"rB IC xB JC KC"},H:{"1":"cC"},I:{"420":"mB I dC eC fC gC xB hC iC","516":"H"},J:{"420":"D A"},K:{"1":"C jB wB kB","2":"A B","516":"Y"},L:{"516":"H"},M:{"516":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","420":"I"},Q:{"132":"vC"},R:{"132":"wC"},S:{"164":"xC"}},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 05301fd834542f..89911cd811f035 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 xB","260":"F A B"},B:{"132":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N O"},C:{"2":"yB lB I m zB 0B","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"16":"I m J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"16":"3B qB","132":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"C GC jB","2":"F CC DC EC FC","16":"B iB vB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"16":"qB HC","132":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"16":"cC dC","132":"lB I H eC fC wB gC hC"},J:{"132":"D A"},K:{"1":"C jB","2":"A","16":"B iB vB","132":"Y"},L:{"132":"X"},M:{"260":"H"},N:{"260":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"260":"wC"}},B:5,C:"Mutation events"}; +module.exports={A:{A:{"2":"J D E yB","260":"F A B"},B:{"132":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L G M N O"},C:{"2":"zB mB I n 0B 1B","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"16":"I n J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"16":"4B rB","132":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"C HC kB","2":"F DC EC FC GC","16":"B jB wB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"16":"rB IC","132":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"16":"dC eC","132":"mB I H fC gC xB hC iC"},J:{"132":"D A"},K:{"1":"C kB","2":"A","16":"B jB wB","132":"Y"},L:{"132":"H"},M:{"260":"X"},N:{"260":"A B"},O:{"132":"jC"},P:{"132":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"132":"vC"},R:{"132":"wC"},S:{"260":"xC"}},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 74db6c464f4fd6..2fa8385a5d97cf 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 xB","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N","33":"O n o p q r s t u"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC","8":"I fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","8":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Mutation Observer"}; +module.exports={A:{A:{"1":"B","2":"J D E yB","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N","33":"O o p q r s t u v"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","33":"KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB dC eC fC","8":"I gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","8":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7e264382854751..09cb462fe54573 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":"xB","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","4":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Web Storage - name/value pairs"}; +module.exports={A:{A:{"1":"E F A B","2":"yB","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","4":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 3cc0712a17f180..9d9fb1d20ec097 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 xB"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","194":"dB eB fB gB hB P Q R S T U","260":"V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC","516":"sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","194":"SB TB Y UB VB WB XB YB ZB aB","260":"bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","516":"sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"File System Access API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB","194":"eB fB gB hB iB P Q R S T U","260":"V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC","516":"tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB DC EC FC GC jB wB HC kB","194":"TB UB Y VB WB XB YB ZB aB bB","260":"cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","516":"tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 dbb1defdd5342f..dbc61b90e740f9 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","33":"J D E F A B C"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"I H fC wB gC hC","2":"lB cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Navigation Timing API"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n","33":"J D E F A B C"},E:{"1":"E F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"I H gC xB hC iC","2":"mB dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:2,C:"Navigation Timing API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js index dbfe02dc5989a5..978d82e7264e61 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/navigator-language.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"16":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"16":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"1":"wC"}},B:2,C:"Navigator Language API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"16":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"16":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"16":"vC"},R:{"16":"wC"},S:{"1":"xC"}},B:2,C:"Navigator Language 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 948d39a631d6b3..418a4e0aa98eaf 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 xB"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB","1028":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB CC DC EC FC iB vB GC jB","1028":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"cC gC hC","132":"lB I dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","132":"I","516":"jC kC lC"},Q:{"1":"uC"},R:{"516":"vC"},S:{"260":"wC"}},B:7,C:"Network Information API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB","1028":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB DC EC FC GC jB wB HC kB","1028":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"dC hC iC","132":"mB I eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","132":"I","516":"kC lC mC"},Q:{"1":"vC"},R:{"516":"wC"},S:{"260":"xC"}},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 d3026d1c077ec4..75fbe7ba9bf915 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},D:{"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","36":"m J D E F A B C K L G M N O n o p"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","36":"H gC hC"},J:{"1":"A","2":"D"},K:{"2":"A B C iB vB jB","36":"Y"},L:{"513":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"36":"I","258":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"258":"vC"},S:{"1":"wC"}},B:1,C:"Web Notifications"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I","36":"n J D E F A B C K L G M N O o p q"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","36":"H hC iC"},J:{"1":"A","2":"D"},K:{"2":"A B C jB wB kB","36":"Y"},L:{"513":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"36":"I","258":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"258":"wC"},S:{"1":"xC"}},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 f8a089145a3e56..3b8ae69094d1a9 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:6,C:"Object.entries"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","16":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 e1c22168598a4c..9473fd0b091ae1 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G","260":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","132":"E F 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F G M N O CC DC EC","33":"B C FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","132":"E LC MC NC"},H:{"33":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB gC"},J:{"2":"D A"},K:{"1":"Y","2":"A","33":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 object-fit/object-position"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G","260":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B","132":"E F 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F G M N O DC EC FC","33":"B C GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC","132":"E MC NC OC"},H:{"33":"cC"},I:{"1":"H iC","2":"mB I dC eC fC gC xB hC"},J:{"2":"D A"},K:{"1":"Y","2":"A","33":"B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8b0165724ed6c9..5ebbd2b185a402 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 r s t u v w x y z","2":"5 6 7 8 9 F B C G M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I","2":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:7,C:"Object.observe data binding"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 s t u v w x y z","2":"6 7 8 9 F B C G M N O o p q r AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"I","2":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 e63d0002de2306..7a3bc8e9e121dc 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"E qB HC wB IC JC KC LC MC NC OC"},H:{"8":"bC"},I:{"1":"H","8":"lB I cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","8":"I jC"},Q:{"1":"uC"},R:{"8":"vC"},S:{"1":"wC"}},B:6,C:"Object.values method"}; +module.exports={A:{A:{"8":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 sB jB kB 9B AC BC tB uB vB lB CC","8":"I n J D E F A 4B rB 5B 6B 7B 8B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"E rB IC xB JC KC LC MC NC OC PC"},H:{"8":"cC"},I:{"1":"H","8":"mB I dC eC fC gC xB hC iC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","8":"I kC"},Q:{"1":"vC"},R:{"8":"wC"},S:{"1":"xC"}},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 2c51fbcb443d45..68f531419e489e 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 xB"},B:{"1":"K L G M N O","2":"C P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","130":"A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O","2":"C P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D","130":"A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 5559cb6dee7795..5803e822cc3cd5 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 xB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S zB 0B","2":"T U V W Z a b c d e f g h i j k l H X pB","4":"lB","8":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","2":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB FC iB vB GC jB","2":"F cB dB eB fB gB hB P Q R oB S T U V W CC","8":"DC EC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I cC dC eC fC wB gC hC","2":"H"},J:{"1":"D A"},K:{"1":"B C iB vB jB","2":"A Y"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:"Offline web applications"}; +module.exports={A:{A:{"1":"A B","2":"F yB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S 0B 1B","2":"T U V W Z a b c d e f g h i j k l X m H qB","4":"mB","8":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","2":"U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB GC jB wB HC kB","2":"F dB eB fB gB hB iB P Q R pB S T U V W DC","8":"EC FC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I dC eC fC gC xB hC iC","2":"H"},J:{"1":"D A"},K:{"1":"B C jB wB kB","2":"A Y"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0f2c55f846d172..88fadf1865d912 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","322":"QB mB RB nB SB TB Y UB VB WB XB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB CC DC EC FC iB vB GC jB","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"194":"wC"}},B:1,C:"OffscreenCanvas"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 0B 1B","194":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","322":"RB nB SB oB TB UB Y VB WB XB YB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB DC EC FC GC jB wB HC kB","322":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","2":"I kC lC mC nC oC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"194":"xC"}},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 45cc6aef1e0e14..dc444dfa92cb72 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","132":"G 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"A","2":"D"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Ogg Vorbis audio format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B","132":"G AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"A","2":"D"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 991ee0d5ddc60c..4ba10745da44fe 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 xB","8":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:6,C:"Ogg/Theora video format"}; +module.exports={A:{A:{"2":"J D E yB","8":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 da51beda534bc7..b499a82c830353 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","16":"M N O n"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","16":"C"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Reversed attribute of ordered lists"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G","16":"M N O o"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC","16":"C"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 4eedcfa3a3b29b..96d223ce8dc108 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"\"once\" event listener option"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 0B 1B"},D:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 50a51dc08e5344..231bd55d7f776b 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 xB","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB","516":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC","4":"jB"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Online/offline status"}; +module.exports={A:{A:{"1":"F A B","2":"J D yB","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB","516":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC","4":"kB"},G:{"1":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"A","132":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a883c868d67ddc..013a8efaea08dd 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","132":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","132":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Opus"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","132":"B C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC","132":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 523a70f52555c6..4c841ecb9bf34b 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r 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 mB RB nB SB TB Y UB VB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"Orientation Sensor"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB Y VB WB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 31a95e7d46bed6..56794ca9d90f75 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 xB","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC","129":"jB","260":"F B CC DC EC FC iB vB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"C Y jB","260":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"388":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS outline properties"}; +module.exports={A:{A:{"2":"J D yB","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC","129":"kB","260":"F B DC EC FC GC jB wB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"C Y kB","260":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"388":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 d8c9593363fb8f..1fe63f7a4e23d5 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q 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 rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 0B 1B"},D:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 820ad375162966..409d27e76bb426 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"PageTransitionEvent"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7adc9309a68f6a..9ab6971826f948 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B","33":"A B C K L G M N"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K","33":"0 L G M N O n o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B C CC DC EC FC iB vB GC","33":"G M N O n"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","33":"gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Page Visibility"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F 0B 1B","33":"A B C K L G M N"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K","33":"0 1 L G M N O o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B C DC EC FC GC jB wB HC","33":"G M N O o"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB","33":"hC iC"},J:{"1":"A","2":"D"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","33":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 00d53164152c55..0c3392286b296e 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"Passive event listeners"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 0B 1B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 45ae3946b2e3cd..5fb3e2e38be3a5 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 xB"},B:{"2":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","16":"X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X","16":"pB 1B 2B"},E:{"1":"C K jB","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB iB","16":"L G 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB CC DC EC FC iB vB GC jB","16":"LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C iB vB jB","16":"Y"},L:{"16":"X"},M:{"16":"H"},N:{"2":"A","16":"B"},O:{"16":"iC"},P:{"2":"I jC kC","16":"lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:1,C:"Password Rules"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","16":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m 0B 1B","16":"H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"qB 2B 3B"},E:{"1":"C K kB","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB jB","16":"L G 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB DC EC FC GC jB wB HC kB","16":"MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C jB wB kB","16":"Y"},L:{"16":"H"},M:{"16":"X"},N:{"2":"A","16":"B"},O:{"16":"jC"},P:{"2":"I kC lC","16":"mC nC oC sB pC qC rC sC tC lB uC"},Q:{"16":"vC"},R:{"16":"wC"},S:{"2":"xC"}},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 4761e17351155a..0e1cdcc2cc6cf0 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K","132":"L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","132":"E F 6B"},F:{"1":"NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB","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"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","16":"E","132":"LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","132":"I jC kC lC mC nC"},Q:{"132":"uC"},R:{"132":"vC"},S:{"1":"wC"}},B:1,C:"Path2D"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K","132":"L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B","132":"E F 7B"},F:{"1":"OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r DC EC FC GC jB wB HC kB","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"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC","16":"E","132":"MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","132":"I kC lC mC nC oC"},Q:{"132":"vC"},R:{"132":"wC"},S:{"1":"xC"}},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 b13f56533333fd..91afb5b59d6227 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB zB 0B","4162":"NB OB PB QB mB RB nB SB TB Y UB","16452":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB OB PB QB","1090":"mB RB","8196":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","514":"A B rB","8196":"C iB"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"8 9 AB BB CB DB EB FB","8196":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","514":"OC PC QC","8196":"RC SC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"2049":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I","8196":"jC kC lC mC nC rB oC"},Q:{"8196":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"Payment Request API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 0B 1B","4162":"OB PB QB RB nB SB oB TB UB Y VB","16452":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB NB OB PB QB RB","1090":"nB SB","8196":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B","514":"A B sB","8196":"C jB"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"9 AB BB CB DB EB FB GB","8196":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB"},G:{"1":"UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC","514":"PC QC RC","8196":"SC TC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"2049":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"qC rC sC tC lB uC","2":"I","8196":"kC lC mC nC oC sB pC"},Q:{"8196":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:4,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 87f810d5036dac..c8a27a22df11e5 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 xB","132":"B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"16":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Built-in PDF viewer"}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"16":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 a0543a8e45da66..b28c911e44b2db 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB zB 0B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"1":"BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,C:"Permissions API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB 0B 1B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"1":"CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x y DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},B:7,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 4cf7bc4a811c62..e9f34314de8675 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 xB"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB zB 0B","258":"dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","258":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","258":"C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","258":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB","322":"bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC","258":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","258":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","258":"Y"},L:{"388":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC","258":"mC nC rB oC pC qC rC sC kB tC"},Q:{"258":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Permissions Policy"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB 0B 1B","258":"eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","258":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U","322":"V W","388":"Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB","258":"C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB DC EC FC GC jB wB HC kB","258":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB","322":"cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC","258":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","258":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","258":"Y"},L:{"388":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC","258":"nC oC sB pC qC rC sC tC lB uC"},Q:{"258":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 b3dde27bf9f383..ad5db6e90f5b74 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB zB 0B","132":"bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1090":"WB","1412":"aB","1668":"XB YB ZB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB","2114":"YB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","4100":"A B C K rB iB jB"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","8196":"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 Y UB VB WB XB YB ZB aB bB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","4100":"MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"16388":"X"},M:{"16388":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Picture-in-Picture"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB 0B 1B","132":"cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","1090":"XB","1412":"bB","1668":"YB ZB aB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB","2114":"ZB"},E:{"1":"L G 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B","4100":"A B C K sB jB kB"},F:{"1":"dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","8196":"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 Y VB WB XB YB ZB aB bB cB"},G:{"1":"ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC","4100":"NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"16388":"H"},M:{"16388":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:7,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 33c6ffe37fb7b3..e1af5473cc2a38 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","578":"2 3 4 5"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","194":"5"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB","322":"s"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Picture element"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","578":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z","194":"6"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB","322":"t"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 2d0783f4c98a9b..7e742aef37c341 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"2":"yB","194":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"194":"wC"}},B:1,C:"Ping attribute"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"2":"zB","194":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"194":"xC"}},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 9ab4f45589a209..a6b21063be8ddd 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":"xB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"PNG alpha transparency"}; +module.exports={A:{A:{"1":"D E F A B","2":"yB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0f431daeacc200..7e48178bc5ad1d 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:"CSS pointer-events (for HTML)"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 15076ce8d60285..56fc33c34befbc 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 xB","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B","8":"0 1 2 3 4 5 6 7 8 J D E F A B C K L G M N O n o p q r s t u v w x y z","328":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p","8":"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","584":"KB LB MB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","8":"D E F A B C 5B 6B 7B rB iB","1096":"jB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","8":"0 1 2 3 4 5 6 G M N O n o p q r s t u v w x y z","584":"7 8 9"},G:{"1":"VC WC XC YC ZC aC sB tB uB kB","8":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC","6148":"UC"},H:{"2":"bC"},I:{"1":"H","8":"lB I cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"1":"Y","2":"A","8":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","36":"A"},O:{"8":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"jC","8":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"328":"wC"}},B:2,C:"Pointer events"}; +module.exports={A:{A:{"1":"B","2":"J D E F yB","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B","8":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z","328":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q","8":"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","584":"LB MB NB"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B","8":"D E F A B C 6B 7B 8B sB jB","1096":"kB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","8":"0 1 2 3 4 5 6 7 G M N O o p q r s t u v w x y z","584":"8 9 AB"},G:{"1":"WC XC YC ZC aC bC tB uB vB lB","8":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC","6148":"VC"},H:{"2":"cC"},I:{"1":"H","8":"mB I dC eC fC gC xB hC iC"},J:{"8":"D A"},K:{"1":"Y","2":"A","8":"B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","36":"A"},O:{"8":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"kC","8":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"328":"xC"}},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 3f68743e02856b..dd8c25363cd00a 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K zB 0B","33":"0 1 2 3 4 5 6 7 8 L G M N O n o p q r s t u v 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G","33":"0 1 2 3 4 q r s t u v w x y z","66":"M N O n o p"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"G M N O n o p q r"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:2,C:"Pointer Lock API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G","33":"0 1 2 3 4 5 r s t u v w x y z","66":"M N O o p q"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"G M N O o p q r s"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 c49adcb028c80a..b6050d6a2bb3ce 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 xB"},B:{"2":"C K L G M N O P Q R S T","322":"b c d e f g h i j k l H X","450":"U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB","194":"eB fB gB hB P Q R S T","322":"V W Z a b c d e f g h i j k l H X pB 1B 2B","450":"U"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB","194":"SB TB Y UB VB WB XB YB ZB aB bB","322":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"450":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Portals"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T","322":"b c d e f g h i j k l X m H","450":"U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB","194":"fB gB hB iB P Q R S T","322":"V W Z a b c d e f g h i j k l X m H qB 2B 3B","450":"U"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB DC EC FC GC jB wB HC kB","194":"TB UB Y VB WB XB YB ZB aB bB cB","322":"dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"450":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 7a4ee8d4f064d0..9956d651ec732c 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB zB 0B"},D:{"1":"fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"pC qC rC sC kB tC","2":"I jC kC lC mC nC rB oC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"prefers-color-scheme media query"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB 0B 1B"},D:{"1":"gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB"},F:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB DC EC FC GC jB wB HC kB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"qC rC sC tC lB uC","2":"I kC lC mC nC oC sB pC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 34555bd711fa59..9a4bbdbdef329d 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B"},D:{"1":"dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"prefers-reduced-motion media query"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 0B 1B"},D:{"1":"eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"pC qC rC sC tC lB uC","2":"I kC lC mC nC oC sB"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,C:"prefers-reduced-motion media query"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js index c53b87f842ad10..676fe0c2ee49cd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-class-fields.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Private class fields"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB"},E:{"1":"G AC BC tB uB vB lB CC","2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B"},F:{"1":"TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB DC EC FC GC jB wB HC kB"},G:{"1":"aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"pC qC rC sC tC lB uC","2":"I kC lC mC nC oC sB"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:7,C:"Private class fields"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js index e76d2eb88d53e3..e06dfbca19f80d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R S"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B"},F:{"1":"ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O P Q R S"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"G AC BC tB uB vB lB CC","2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B"},F:{"1":"aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB DC EC FC GC jB wB HC kB"},G:{"1":"aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:7,C:"Public class fields"}; 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 8da41a1d638d89..ae6f986bad3e18 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F CC DC EC FC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","132":"KC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"progress element"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F DC EC FC GC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC","132":"LC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 78548ef9ea9dee..8a1d203aae4a08 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 xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N"},C:{"1":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB zB 0B"},D:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Promise.prototype.finally"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N"},C:{"1":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 0B 1B"},D:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 d260f7b9bf246b..41ce6c2eb8ade1 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","4":"v w","8":"yB lB I m J D E F A B C K L G M N O n o p q r s t u zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0","8":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m J D 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","4":"n","8":"F B C G M N O CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB IC JC KC"},H:{"8":"bC"},I:{"1":"H hC","8":"lB I cC dC eC fC wB gC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Promises"}; +module.exports={A:{A:{"8":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","4":"w x","8":"zB mB I n J D E F A B C K L G M N O o p q r s t u v 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"1","8":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"I n J D 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","4":"o","8":"F B C G M N O DC EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"rB IC xB JC KC LC"},H:{"8":"cC"},I:{"1":"H iC","8":"mB I dC eC fC gC xB hC"},J:{"8":"D A"},K:{"1":"Y","8":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 43f6cefa242518..08ab6c0b1d388a 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:4,C:"Proximity API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 ea4037adf056a8..94cc0d86da5fcb 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"6 7 8 9 I m J D E F A B C K L G M N O AB BB CB DB EB FB GB","66":"0 1 2 3 4 5 n o p q r s t u v w x y z"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C t u v w x y z CC DC EC FC iB vB GC jB","66":"G M N O n o p q r s"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:6,C:"Proxy object"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"7 8 9 I n J D E F A B C K L G M N O AB BB CB DB EB FB GB HB","66":"0 1 2 3 4 5 6 o p q r s t u v w x y z"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C u v w x y z DC EC FC GC jB wB HC kB","66":"G M N O o p q r s t"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},B:6,C:"Proxy object"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js index dcaa1ca7dbbee1..bef6b0eec38606 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/public-class-fields.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B","4":"ZB aB bB cB dB","132":"YB"},D:{"1":"bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","260":"L"},F:{"1":"RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB 0B 1B","4":"aB bB cB dB eB","132":"ZB"},D:{"1":"cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB"},E:{"1":"G AC BC tB uB vB lB CC","2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB 9B","260":"L"},F:{"1":"SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB DC EC FC GC jB wB HC kB"},G:{"1":"ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"pC qC rC sC tC lB uC","2":"I kC lC mC nC oC sB"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:7,C:"Public class fields"}; 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 a2c0e3bb6cef94..10a9a891c08781 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB","2":"0 1 2 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB","2":"F B C G M N O n VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","4":"r","16":"o p q s"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB","2":"oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"HTTP Public Key Pinning"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB","2":"0 1 2 3 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB","2":"F B C G M N O o WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","4":"s","16":"p q r t"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB","2":"pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 bf034374cebdc7..298e1eb6b8cc33 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 xB"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB zB 0B","257":"CB EB FB GB HB IB JB LB MB NB OB PB QB mB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1281":"DB KB RB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB","257":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","388":"CB DB EB FB GB HB"},E:{"2":"I m J D E F 3B qB 4B 5B 6B","514":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB","4100":"kB BC"},F:{"2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","16":"5 6 7 8 9","257":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"257":"wC"}},B:5,C:"Push API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 0B 1B","257":"DB FB GB HB IB JB KB MB NB OB PB QB RB nB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","1281":"EB LB SB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB","257":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","388":"DB EB FB GB HB IB"},E:{"2":"I n J D E F 4B rB 5B 6B 7B","514":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB","4100":"lB CC"},F:{"2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","16":"6 7 8 9 AB","257":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"257":"xC"}},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 becf63e608bb12..0e7c1733045eb0 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":"xB","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","8":"F CC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"querySelector/querySelectorAll"}; +module.exports={A:{A:{"1":"F A B","2":"yB","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","8":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","8":"F DC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 60ee1a38e91a2e..e8920035887ace 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"257":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"readonly attribute of input and textarea elements"}; +module.exports={A:{A:{"1":"J D E F A B","16":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB mB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F DC","132":"B C EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB JC KC"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"Y","132":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"257":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8967dccff3f6c0..840e55a30cc8fa 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 xB","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V","2":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","513":"W Z a b c d e f g h i j k l H X pB"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","2":"I m J D E F A B C K L G M N O n o","260":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB","513":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"C iB jB","2":"I m J D 3B qB 4B 5B","132":"E F A B 6B 7B rB","1025":"K L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB","2":"F B C CC DC EC FC iB vB GC jB","513":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"SC TC UC VC","2":"qB HC wB IC JC KC","132":"E LC MC NC OC PC QC RC","1025":"WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"513":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Referrer Policy"}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V","2":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","513":"W Z a b c d e f g h i j k l X m H qB"},D:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","2":"I n J D E F A B C K L G M N O o p","260":"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 nB SB","513":"U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"C jB kB","2":"I n J D 4B rB 5B 6B","132":"E F A B 7B 8B sB","1025":"K L G 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB","2":"F B C DC EC FC GC jB wB HC kB","513":"dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"TC UC VC WC","2":"rB IC xB JC KC LC","132":"E MC NC OC PC QC RC SC","1025":"XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"513":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 615d4d4675bd49..d670b0444604ea 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 xB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"2":"I m J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B CC DC EC FC iB vB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D","129":"A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"Custom protocol handling"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB"},D:{"2":"I n J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B DC EC FC GC jB wB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D","129":"A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 6f7ed7a94f82e9..efeb2b7dd4ef19 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:1,C:"rel=noopener"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 9015ce5861925d..612e5f7ec88213 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 xB","132":"B"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Link type \"noreferrer\""}; +module.exports={A:{A:{"2":"J D E F A yB","132":"B"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"C"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L G"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 270bb5976b7855..654d80ce81ee73 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 xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","132":"N"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","132":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E 3B qB 4B 5B 6B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"132":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I","132":"jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:1,C:"relList (DOMTokenList)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M","132":"N"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y 0B 1B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E 4B rB 5B 6B 7B"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"132":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","2":"I","132":"kC lC mC nC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 7ce8c6e5ae4edc..71a64fe9fc6e69 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 xB","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E HC wB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB","260":"IC"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"rem (root em) units"}; +module.exports={A:{A:{"1":"B","2":"J D E yB","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB"},G:{"1":"E IC xB KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB","260":"JC"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"C Y kB","2":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 d27a0a95a3345f..a6b5728d9644b0 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","33":"B C K L G M N O n o p q","164":"I m J D E F A"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F","33":"q r","164":"O n o p","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","33":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"requestAnimationFrame"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","33":"B C K L G M N O o p q r","164":"I n J D E F A"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F","33":"r s","164":"O o p q","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","33":"KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 f45abdb9e2952d..f115af5b55e642 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","194":"LB MB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB","322":"L G 8B 9B AC sB tB uB kB BC"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC","322":"XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"requestIdleCallback"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B","194":"MB NB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB","322":"L G 9B AC BC tB uB vB lB CC"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC","322":"YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 3b705e0bc6bb67..967b1e54fc1145 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B"},D:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB NB OB PB QB mB RB nB SB TB"},E:{"1":"L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB","66":"K"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","194":"9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"nC rB oC pC qC rC sC kB tC","2":"I jC kC lC mC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Resize Observer"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB 0B 1B"},D:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 nB SB oB TB UB"},E:{"1":"L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB kB","66":"K"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"oC sB pC qC rC sC tC lB uC","2":"I kC lC mC nC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:7,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 d5c2248348095d..7fb34e380b75d6 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","194":"0 1 2 z"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Resource Timing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"0 1 2 3"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 efa0973eceb12b..5dd207520f8788 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB","194":"CB DB EB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y CC DC EC FC iB vB GC jB","194":"0 1 z"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Rest parameters"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB","194":"DB EB FB"},E:{"1":"A B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","194":"0 1 2"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 533efd06cb6f14..82fb193ea55e4c 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","516":"G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","33":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q","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"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"1":"wC"}},B:5,C:"WebRTC Peer-to-peer connections"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L","516":"G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB"},D:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r","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 JB KB LB MB NB OB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"33":"wC"},S:{"1":"xC"}},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 e3804bfa1688a8..4dba4d59a7900a 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 xB"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I"},E:{"4":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I 3B qB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","8":"F B C CC DC EC FC iB vB GC jB"},G:{"4":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB"},H:{"8":"bC"},I:{"4":"lB I H fC wB gC hC","8":"cC dC eC"},J:{"4":"A","8":"D"},K:{"4":"Y","8":"A B C iB vB jB"},L:{"4":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"1":"wC"}},B:1,C:"Ruby annotation"}; +module.exports={A:{A:{"4":"J D E F A B yB"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"0 1 2 3 4 5 6 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"I"},E:{"4":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"I 4B rB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","8":"F B C DC EC FC GC jB wB HC kB"},G:{"4":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"rB IC xB"},H:{"8":"cC"},I:{"4":"mB I H gC xB hC iC","8":"dC eC fC"},J:{"4":"A","8":"D"},K:{"4":"Y","8":"A B C jB wB kB"},L:{"4":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"4":"jC"},P:{"4":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"4":"vC"},R:{"4":"wC"},S:{"1":"xC"}},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 7413e21afedbb4..d400f88a52b42d 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"I m J D E F A B C K L G M N O n o p q r s t u v w x y z","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J 4B","2":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"5B","129":"I 3B qB"},F:{"1":"F B C G M N O CC DC EC FC iB vB GC jB","2":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"HC wB IC JC KC","2":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","129":"qB"},H:{"1":"bC"},I:{"1":"lB I cC dC eC fC wB gC","2":"H hC"},J:{"1":"D A"},K:{"1":"A B C iB vB jB","2":"Y"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"display: run-in"}; +module.exports={A:{A:{"1":"E F A B","2":"J D yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z","2":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J 5B","2":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"6B","129":"I 4B rB"},F:{"1":"F B C G M N O DC EC FC GC jB wB HC kB","2":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"IC xB JC KC LC","2":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","129":"rB"},H:{"1":"cC"},I:{"1":"mB I dC eC fC gC xB hC","2":"H iC"},J:{"1":"D A"},K:{"1":"A B C jB wB kB","2":"Y"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,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 99efd5badefb6a..1b5aca49dd6962 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 xB","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W Z a b c d e f g h i j k l H X"},C:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB zB 0B"},D:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","513":"Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"G 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB iB","2052":"L","3076":"C K jB 8B"},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 Y UB VB WB XB YB ZB","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","513":"aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","2052":"SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"513":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"16":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:6,C:"'SameSite' cookie attribute"}; +module.exports={A:{A:{"2":"J D E F A yB","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W Z a b c d e f g h i j k l X m H"},C:{"1":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB 0B 1B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","513":"Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"G AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB jB","2052":"L","3076":"C K kB 9B"},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 Y VB WB XB YB ZB aB","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","513":"bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC","2052":"TC UC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"513":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"16":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 204f0c467e4957..760b9cf275ebbf 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 xB","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","36":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N zB 0B","36":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB 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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A","36":"B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"Screen Orientation"}; +module.exports={A:{A:{"2":"J D E F A yB","164":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","36":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N 0B 1B","36":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A","36":"B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","16":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a22e0a428f1044..649a0b7bbea5d0 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"async attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","132":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 c06a1f02169ed9..a51fddf2f0d23c 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","257":"I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"defer attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","132":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","257":"I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0e46951150d877..fbb2b7c9a6f6d3 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 xB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","132":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"0 1 2 3 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB"},E:{"1":"BC","2":"I m 3B qB","132":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC FC","16":"B iB vB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GC jB"},G:{"16":"qB HC wB","132":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","16":"cC dC","132":"lB I eC fC wB gC hC"},J:{"132":"D A"},K:{"1":"Y","132":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"132":"iC"},P:{"132":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"132":"vC"},S:{"1":"wC"}},B:5,C:"scrollIntoView"}; +module.exports={A:{A:{"2":"J D yB","132":"E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","132":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","132":"0 1 2 3 4 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"1":"CC","2":"I n 4B rB","132":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F DC EC FC GC","16":"B jB wB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HC kB"},G:{"16":"rB IC xB","132":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","16":"dC eC","132":"mB I fC gC xB hC iC"},J:{"132":"D A"},K:{"1":"Y","132":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"132":"jC"},P:{"132":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"132":"wC"},S:{"1":"xC"}},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 f8684ee5cde130..835794c5b11d80 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 5b5699a89631c1..5e5243a15bf0dc 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s 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":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB","2":"F B C cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","2":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB","2":"F B C dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 ddb6fb4f24c133..93d569900da1c9 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":"xB","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B","2180":"BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","132":"F B C CC DC EC FC iB vB GC jB"},G:{"16":"wB","132":"qB HC","516":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","16":"lB I cC dC eC fC","1025":"wB"},J:{"1":"A","16":"D"},K:{"1":"Y","16":"A B C iB vB","132":"jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","16":"A"},O:{"1025":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2180":"wC"}},B:5,C:"Selection API"}; +module.exports={A:{A:{"1":"F A B","16":"yB","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","132":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 0B 1B","2180":"CB DB EB FB GB HB IB JB KB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","132":"F B C DC EC FC GC jB wB HC kB"},G:{"16":"xB","132":"rB IC","516":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H hC iC","16":"mB I dC eC fC gC","1025":"xB"},J:{"1":"A","16":"D"},K:{"1":"Y","16":"A B C jB wB","132":"kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","16":"A"},O:{"1025":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2180":"xC"}},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 a684e12bd91e5b..84f18ebbffdf60 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB zB 0B"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","196":"RB nB SB TB","324":"Y"},E:{"2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","516":"K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Server Timing"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB 0B 1B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","196":"SB oB TB UB","324":"Y"},E:{"2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB","516":"K L G kB 9B AC BC tB uB vB lB CC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 705c58d0e3ea1c..3af91024145a21 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","322":"G M"},C:{"1":"CB EB FB GB HB IB JB LB MB NB OB PB QB mB nB SB TB Y UB VB WB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"1 2 3 4 5 6 7 8 9 AB BB","513":"DB KB RB XB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","4":"8 9 AB BB CB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","4":"v w x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","4":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","4":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"4":"vC"},S:{"2":"wC"}},B:4,C:"Service Workers"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L","322":"G M"},C:{"1":"DB FB GB HB IB JB KB MB NB OB PB QB RB nB oB TB UB Y VB WB XB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"2 3 4 5 6 7 8 9 AB BB CB","513":"EB LB SB YB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 I n J D E F A B C K L G M N O o p q r s t u v w x y z","4":"9 AB BB CB DB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v DC EC FC GC jB wB HC kB","4":"0 w x y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","4":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","4":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"4":"wC"},S:{"2":"xC"}},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 636eb29ca86637..16724ea92699a1 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 xB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js index d257fe35e87a5d..8e67c4d2f4a926 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sha-2.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","2":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","260":"cC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C iB vB jB"},L:{"1":"X"},M:{"16":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","16":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"SHA-2 SSL certificates"}; +module.exports={A:{A:{"1":"J D E F A B","2":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"1":"mB I H eC fC gC xB hC iC","260":"dC"},J:{"1":"D A"},K:{"1":"Y","16":"A B C jB wB kB"},L:{"1":"H"},M:{"16":"X"},N:{"16":"A B"},O:{"16":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","16":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:6,C:"SHA-2 SSL certificates"}; 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 20a7dcac11fcda..4846f80d1d33da 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 xB"},B:{"1":"P","2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","66":"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 mB RB"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","2":"I m J D E F A B C K L G M N O n o p q r s Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},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 Y UB VB","2":"F B C WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","33":"G M N O n o p"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB","33":"gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC","2":"qC rC sC kB tC","33":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P","2":"C K L G M N O Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","66":"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 nB SB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"I n J D E F A B C K L G M N O o p q r s t Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 u v w x y z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB 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 Y VB WB","2":"F B C XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","33":"G M N O o p q"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB","33":"hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC","2":"rC sC tC lB uC","33":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 4f674f6d156aae..ade15883a9f3fb 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB zB 0B","322":"QB","578":"mB RB nB SB"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC","132":"OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I","4":"jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Shadow DOM (V1)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 0B 1B","322":"RB","578":"nB SB oB TB"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC","132":"PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I","4":"kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 55b6db4509c1f7..3cf21a27ac9bd4 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 xB"},B:{"1":"P Q R S T U V W Z a b","2":"C K L G","194":"M N O","513":"c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB zB 0B","194":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","450":"dB eB fB gB hB","513":"P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB","194":"RB nB SB TB Y UB VB WB","513":"c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A 3B qB 4B 5B 6B 7B","194":"B C K L G rB iB jB 8B 9B AC","513":"sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB CC DC EC FC iB vB GC jB","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC","194":"PC QC RC SC TC UC VC WC XC YC ZC aC","513":"sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"513":"X"},M:{"513":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Shared Array Buffer"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b","2":"C K L G","194":"M N O","513":"c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 0B 1B","194":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB","450":"eB fB gB hB iB","513":"P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","194":"SB oB TB UB Y VB WB XB","513":"c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A 4B rB 5B 6B 7B 8B","194":"B C K L G sB jB kB 9B AC BC","513":"tB uB vB lB CC"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB DC EC FC GC jB wB HC kB","194":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC","194":"QC RC SC TC UC VC WC XC YC ZC aC bC","513":"tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"513":"H"},M:{"513":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 70bf3c51f13b84..603e17a5f1d14b 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"m J 4B kB BC","2":"I D E F A B C K L G 3B qB 5B 6B 7B rB iB jB 8B 9B AC sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC DC EC"},G:{"1":"IC JC kB","2":"E qB HC wB KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C iB vB jB","2":"Y","16":"A"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I","2":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:1,C:"Shared Web Workers"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"n J 5B lB CC","2":"I D E F A B C K L G 4B rB 6B 7B 8B sB jB kB 9B AC BC tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","2":"F DC EC FC"},G:{"1":"JC KC lB","2":"E rB IC xB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"B C jB wB kB","2":"Y","16":"A"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"I","2":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 51306e5c031f79..e7fa51785e026f 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 xB","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},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 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Server Name Indication"}; +module.exports={A:{A:{"1":"F A B","2":"J yB","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB"},H:{"1":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 be2d7e7f98c011..7d6cb7e0f5c39d 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","2":"yB lB I m J D E F A B C JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","2":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"E F A B C 7B rB iB","2":"I m J D 3B qB 4B 5B 6B","129":"K L G jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 G M N O n o p q r s t u v w x y z AB CB jB","2":"8 9 F B C BB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC"},G:{"1":"E LC MC NC OC PC QC RC SC","2":"qB HC wB IC JC KC","257":"TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I fC wB gC hC","2":"H cC dC eC"},J:{"2":"D A"},K:{"1":"jB","2":"A B C Y iB vB"},L:{"2":"X"},M:{"2":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I","2":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"16":"vC"},S:{"1":"wC"}},B:7,C:"SPDY protocol"}; +module.exports={A:{A:{"1":"B","2":"J D E F A yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","2":"zB mB I n J D E F A B C KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","2":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"E F A B C 8B sB jB","2":"I n J D 4B rB 5B 6B 7B","129":"K L G kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 G M N O o p q r s t u v w x y z BB DB kB","2":"9 F B C AB CB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC"},G:{"1":"E MC NC OC PC QC RC SC TC","2":"rB IC xB JC KC LC","257":"UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I gC xB hC iC","2":"H dC eC fC"},J:{"2":"D A"},K:{"1":"kB","2":"A B C Y jB wB"},L:{"2":"H"},M:{"2":"X"},N:{"1":"B","2":"A"},O:{"2":"jC"},P:{"1":"I","2":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"16":"wC"},S:{"1":"xC"}},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 085114689fe9be..973ae6f92f77f4 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 xB"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B","322":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"I m J D E F A B C K L G M N O n o p 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L 3B qB 4B 5B 6B 7B rB iB jB 8B","2084":"G 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","1026":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC","2084":"ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"164":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"322":"wC"}},B:7,C:"Speech Recognition API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B","322":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"I n J D E F A B C K L G M N O o p q 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L 4B rB 5B 6B 7B 8B sB jB kB 9B","2084":"G AC BC tB uB vB lB CC"},F:{"2":"F B C G M N O o p q r s t u v DC EC FC GC jB wB HC kB","1026":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","2084":"aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"164":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"164":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"164":"vC"},R:{"164":"wC"},S:{"322":"xC"}},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 2eb8ddca9d90a1..0ae03e775754d4 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 xB"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y zB 0B","194":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"0 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","257":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},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","2":"F B C G M N O n o p q r s t u CC DC EC FC iB vB GC jB","257":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,C:"Speech Synthesis API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB","2":"0 1 I n J D E F A B C K L G M N O o p q r s t u v w x y z","257":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B"},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","2":"F B C G M N O o p q r s t u v DC EC FC GC jB wB HC kB","257":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 c66b37a650a256..aade49430503cf 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"4":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"4":"lB I H cC dC eC fC wB gC hC"},J:{"1":"A","4":"D"},K:{"4":"A B C Y iB vB jB"},L:{"4":"X"},M:{"4":"H"},N:{"4":"A B"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"4":"vC"},S:{"2":"wC"}},B:1,C:"Spellcheck attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"4":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"4":"cC"},I:{"4":"mB I H dC eC fC gC xB hC iC"},J:{"1":"A","4":"D"},K:{"4":"A B C Y jB wB kB"},L:{"4":"H"},M:{"4":"X"},N:{"4":"A B"},O:{"4":"jC"},P:{"4":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"4":"wC"},S:{"2":"xC"}},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 4cf695f95f42a1..e94e261941932f 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB","2":"K L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC","2":"UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:7,C:"Web SQL Database"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB kB","2":"K L G 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC","2":"VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 6cad6bdfe18ec8..c25c05a9b91a05 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C","514":"K L G"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","194":"0 1 2 3 4 5"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","260":"2 3 4 5"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B 5B","260":"E 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o CC DC EC FC iB vB GC jB","260":"p q r s"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","260":"E LC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Srcset and sizes attributes"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C","514":"K L G"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","194":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z","260":"3 4 5 6"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B 6B","260":"E 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p DC EC FC GC jB wB HC kB","260":"q r s t"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC","260":"E MC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7d5413dcd6aed1..39468338f8b6db 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M zB 0B","129":"4 5 6 7 8 9","420":"0 1 2 3 N O n o p q r s t u v w x y z"},D:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o","420":"0 1 2 3 4 5 6 7 8 9 p q 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 iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B G M N CC DC EC FC iB vB GC","420":"0 1 2 3 4 5 6 7 C O n o p q r s t u v w x y z jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","513":"XC YC ZC aC sB tB uB kB","1537":"QC RC SC TC UC VC WC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","420":"A"},K:{"1":"Y","2":"A B iB vB","420":"C jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","420":"I jC"},Q:{"1":"uC"},R:{"420":"vC"},S:{"2":"wC"}},B:4,C:"getUserMedia/Stream API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M 0B 1B","129":"5 6 7 8 9 AB","420":"0 1 2 3 4 N O o p q r s t u v w x y z"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p","420":"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"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B G M N DC EC FC GC jB wB HC","420":"0 1 2 3 4 5 6 7 8 C O o p q r s t u v w x y z kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC","513":"YC ZC aC bC tB uB vB lB","1537":"RC SC TC UC VC WC XC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","420":"A"},K:{"1":"Y","2":"A B jB wB","420":"C kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","420":"I kC"},Q:{"1":"vC"},R:{"420":"wC"},S:{"2":"xC"}},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 495f95698704d1..ec4a3b7cccc920 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 xB","130":"B"},B:{"1":"a b c d e f g h i j k l H X","16":"C K","260":"L G","1028":"P Q R S T U V W Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB zB 0B","5124":"l H X pB","7172":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k","7746":"PB QB mB RB nB SB TB Y"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","260":"KB LB MB NB OB PB QB","1028":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z"},E:{"2":"I m J D E F 3B qB 4B 5B 6B 7B","1028":"G 9B AC sB tB uB kB BC","3076":"A B C K L rB iB jB 8B"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","260":"7 8 9 AB BB CB DB","1028":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC","16":"OC","1028":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"5124":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"sC kB tC","2":"I jC kC","1028":"lC mC nC rB oC pC qC rC"},Q:{"1028":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"Streams"}; +module.exports={A:{A:{"2":"J D E F A yB","130":"B"},B:{"1":"a b c d e f g h i j k l X m H","16":"C K","260":"L G","1028":"P Q R S T U V W Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 0B 1B","5124":"l X m H qB","7172":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k","7746":"QB RB nB SB oB TB UB Y"},D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","260":"LB MB NB OB PB QB RB","1028":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z"},E:{"2":"I n J D E F 4B rB 5B 6B 7B 8B","1028":"G AC BC tB uB vB lB CC","3076":"A B C K L sB jB kB 9B"},F:{"1":"gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","260":"8 9 AB BB CB DB EB","1028":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E rB IC xB JC KC LC MC NC OC","16":"PC","1028":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"5124":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"tC lB uC","2":"I kC lC","1028":"mC nC oC sB pC qC rC sC"},Q:{"1028":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 376469962a9331..0785e213aab898 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 xB","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Strict Transport Security"}; +module.exports={A:{A:{"2":"J D E F A yB","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 9200871520c45e..44a67d3d758108 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"yB lB I m J D E F A B C K L G M N O n o nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","322":"NB OB PB QB mB RB"},D:{"2":"5 6 7 8 9 I m J D E F A B C K L G M N O n AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","194":"0 1 2 3 4 o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:7,C:"Scoped CSS"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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","2":"zB mB I n J D E F A B C K L G M N O o p oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","322":"OB PB QB RB nB SB"},D:{"2":"6 7 8 9 I n J D E F A B C K L G M N O o AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","194":"0 1 2 3 4 5 p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"1":"xC"}},B:7,C:"Scoped CSS"}; 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 5e24638d1f3913..0ab2940b874380 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB zB 0B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","194":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Subresource Integrity"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 0B 1B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC","194":"RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 1b4bbeaa6247f2..4a7021529e5853 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","516":"C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","260":"I m J D E F A B C K L G M N O n o p q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I"},E:{"1":"m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B","132":"I qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB HC"},H:{"260":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"Y","260":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"SVG in CSS backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","516":"C K L G"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","260":"I n J D E F A B C K L G M N O o p q r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"I"},E:{"1":"n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B","132":"I rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","132":"rB IC"},H:{"260":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"Y","260":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 c6ddf300c8d0b0..52046c9b0aac0d 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I","4":"m J D"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"SVG filters"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I","4":"n J D"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 71dcd97992870f..2a42a4b5c27773 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 xB","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","2":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","130":"6 7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B"},F:{"1":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB","2":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","130":"0 1 2 3 4 t u v w x y z"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"258":"bC"},I:{"1":"lB I fC wB gC hC","2":"H cC dC eC"},J:{"1":"D A"},K:{"1":"A B C iB vB jB","2":"Y"},L:{"130":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I","130":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"130":"vC"},S:{"2":"wC"}},B:2,C:"SVG fonts"}; +module.exports={A:{A:{"2":"F A B yB","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z","2":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","130":"7 8 9 AB BB CB DB EB FB GB HB IB JB"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B"},F:{"1":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB","2":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","130":"0 1 2 3 4 5 u v w x y z"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"258":"cC"},I:{"1":"mB I gC xB hC iC","2":"H dC eC fC"},J:{"1":"D A"},K:{"1":"A B C jB wB kB","2":"Y"},L:{"130":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"I","130":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"130":"wC"},S:{"2":"xC"}},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 9966592351c3e1..884a9f6c61f0e9 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 xB","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D F A B 3B qB 4B 5B 7B rB","132":"E 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"G M N O n o p q","4":"B C DC EC FC iB vB GC","16":"F CC","132":"0 1 2 3 4 r s t u v w x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC MC NC OC PC QC","132":"E LC"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D","132":"A"},K:{"1":"Y jB","4":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"132":"vC"},S:{"1":"wC"}},B:4,C:"SVG fragment identifiers"}; +module.exports={A:{A:{"2":"J D E yB","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},D:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D F A B 4B rB 5B 6B 8B sB","132":"E 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"G M N O o p q r","4":"B C EC FC GC jB wB HC","16":"F DC","132":"0 1 2 3 4 5 s t u v w x y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC NC OC PC QC RC","132":"E MC"},H:{"1":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D","132":"A"},K:{"1":"Y kB","4":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","132":"I"},Q:{"1":"vC"},R:{"132":"wC"},S:{"1":"xC"}},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 587a02c6ca7b3a..5e600b89041645 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 xB","388":"F A B"},B:{"4":"P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB","4":"lB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","4":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"4":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB","4":"H gC hC"},J:{"1":"A","2":"D"},K:{"4":"A B C Y iB vB jB"},L:{"4":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"1":"wC"}},B:2,C:"SVG effects for HTML"}; +module.exports={A:{A:{"2":"J D E yB","388":"F A B"},B:{"4":"P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB","4":"mB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"4B rB","4":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"4":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB","4":"H hC iC"},J:{"1":"A","2":"D"},K:{"4":"A B C Y jB wB kB"},L:{"4":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"4":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"4":"vC"},R:{"4":"wC"},S:{"1":"xC"}},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 63935c6294d1b2..699ac0c3f6f56a 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":"xB","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","8":"I m J"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"I m 3B qB","129":"J D E 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"B FC iB vB","8":"F CC DC EC"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","8":"qB HC wB","129":"E IC JC KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","129":"lB I fC wB"},J:{"1":"A","129":"D"},K:{"1":"C Y jB","8":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"129":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Inline SVG in HTML5"}; +module.exports={A:{A:{"2":"yB","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","8":"I n J"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"I n 4B rB","129":"J D E 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"B GC jB wB","8":"F DC EC FC"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","8":"rB IC xB","129":"E JC KC LC MC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"dC eC fC","129":"mB I gC xB"},J:{"1":"A","129":"D"},K:{"1":"C Y kB","8":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"129":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 1f863bbdef7c20..f623ee6b93ccb0 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B","4":"qB","132":"I m J D E 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"E qB HC wB IC JC KC LC"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","132":"lB I fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"SVG in HTML img element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L G M N O o p q r s t u v w"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B","4":"rB","132":"I n J D E 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","132":"E rB IC xB JC KC LC MC"},H:{"1":"cC"},I:{"1":"H hC iC","2":"dC eC fC","132":"mB I gC xB"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 9e5649bc55a403..1cedb4221daa15 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":"xB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB","132":"I m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB HC wB IC"},H:{"2":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"SVG SMIL animation"}; +module.exports={A:{A:{"2":"yB","8":"J D E F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"I"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"4B rB","132":"I n 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","132":"rB IC xB JC"},H:{"2":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 fe511fa031e08d..909f2a9ba987f5 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":"xB","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","4":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"H gC hC","2":"cC dC eC","132":"lB I fC wB"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"257":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"SVG (basic support)"}; +module.exports={A:{A:{"2":"yB","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","4":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","4":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"H hC iC","2":"dC eC fC","132":"mB I gC xB"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"257":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 17640961ca3ff8..b97374c92c02f3 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB","132":"aB bB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"16":"iC"},P:{"1":"oC pC qC rC sC kB tC","2":"I jC kC lC mC nC rB"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB","132":"bB cB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"16":"jC"},P:{"1":"pC qC rC sC tC lB uC","2":"I kC lC mC nC oC sB"},Q:{"16":"vC"},R:{"16":"wC"},S:{"2":"xC"}},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 b80fff562bf6b7..ef2ee8d35a1a1c 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"16":"yB lB zB 0B","129":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"16":"I m 3B qB","257":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"769":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"16":"lB I H cC dC eC fC wB gC hC"},J:{"16":"D A"},K:{"16":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"16":"A B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"16":"vC"},S:{"129":"wC"}},B:1,C:"tabindex global attribute"}; +module.exports={A:{A:{"1":"D E F A B","16":"J yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"16":"zB mB 0B 1B","129":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"16":"I n 4B rB","257":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","16":"F"},G:{"769":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"16":"mB I H dC eC fC gC xB hC iC"},J:{"16":"D A"},K:{"16":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"16":"A B"},O:{"16":"jC"},P:{"16":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"16":"wC"},S:{"129":"xC"}},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 6e1e69a3e6965e..32769e38458225 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 xB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","16":"C"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B","129":"C"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w CC DC EC FC iB vB GC jB"},G:{"1":"MC NC OC PC QC RC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC","129":"SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"ES6 Template Literals (Template Strings)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","16":"C"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B","129":"C"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x DC EC FC GC jB wB HC kB"},G:{"1":"NC OC PC QC RC SC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC","129":"TC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8564fae69c3762..58e9adda4dab39 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 xB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C","388":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t","132":"0 1 2 u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D 3B qB 4B","388":"E 6B","514":"5B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","132":"G M N O n o p"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC","388":"E LC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"HTML templates"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C","388":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u","132":"0 1 2 3 v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D 4B rB 5B","388":"E 7B","514":"6B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","132":"G M N O o p q"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC","388":"E MC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 1dfa054195f935..fce732bf69631e 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"Temporal"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 3a29474bdf16a9..6288fc4d7c0b24 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 xB","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","16":"I m"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"B C"},E:{"2":"I J 3B qB 4B","16":"m D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC vB GC jB","16":"iB"},G:{"2":"qB HC wB IC JC","16":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC fC wB gC hC","16":"eC"},J:{"2":"A","16":"D"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Test feature - updated"}; +module.exports={A:{A:{"2":"J D E A B yB","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","16":"I n"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"B C"},E:{"2":"I J 4B rB 5B","16":"n D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC wB HC kB","16":"jB"},G:{"2":"rB IC xB JC KC","16":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC gC xB hC iC","16":"fC"},J:{"2":"A","16":"D"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 c8b5c9fc6e495e..c6dfdc77257007 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 xB"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m zB 0B","1028":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","1060":"0 1 2 3 J D E F A B C K L G M N O n o p q r s t u v w x y z"},D:{"2":"I m J D E F A B C K L G M N O n o p q r s t","226":"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","2052":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D 3B qB 4B 5B","772":"K L G jB 8B 9B AC sB tB uB kB BC","804":"E F A B C 7B rB iB","1316":"6B"},F:{"2":"0 1 2 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","226":"3 4 5 6 7 8 9 AB BB","2052":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"qB HC wB IC JC KC","292":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"2052":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2052":"iC"},P:{"2":"I jC kC","2052":"lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"1":"vC"},S:{"1028":"wC"}},B:4,C:"text-decoration styling"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n 0B 1B","1028":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","1060":"0 1 2 3 4 J D E F A B C K L G M N O o p q r s t u v w x y z"},D:{"2":"I n J D E F A B C K L G M N O o p q r s t u","226":"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","2052":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D 4B rB 5B 6B","772":"K L G kB 9B AC BC tB uB vB lB CC","804":"E F A B C 8B sB jB","1316":"7B"},F:{"2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","226":"4 5 6 7 8 9 AB BB CB","2052":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"rB IC xB JC KC LC","292":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"2052":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2052":"jC"},P:{"2":"I kC lC","2052":"mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"1":"wC"},S:{"1028":"xC"}},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 ced192f7d24fbc..bbf86864434d8b 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 xB"},B:{"1":"k l H X","2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB zB 0B","322":"DB"},D:{"1":"k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B","164":"D 5B"},F:{"1":"V W","2":"F B C CC DC EC FC iB vB GC jB","164":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB","164":"gC hC"},J:{"2":"D","164":"A"},K:{"2":"A B C iB vB jB","164":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"164":"iC"},P:{"164":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"164":"uC"},R:{"164":"vC"},S:{"1":"wC"}},B:4,C:"text-emphasis styling"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"k l X m H","2":"C K L G M N O","164":"P Q R S T U V W Z a b c d e f g h i j"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB 0B 1B","322":"EB"},D:{"1":"k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B","164":"D 6B"},F:{"1":"V W","2":"F B C DC EC FC GC jB wB HC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB","164":"hC iC"},J:{"2":"D","164":"A"},K:{"2":"A B C jB wB kB","164":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"164":"jC"},P:{"164":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"164":"vC"},R:{"164":"wC"},S:{"1":"xC"}},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 f1ffc76d2aa129..05df7610ec22d4 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":"xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","8":"yB lB I m J zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","33":"F CC DC EC FC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"Y jB","33":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 Text-overflow"}; +module.exports={A:{A:{"1":"J D E F A B","2":"yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","8":"zB mB I n J 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","33":"F DC EC FC GC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"Y kB","33":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 e9f62044e68987..44908b6087e899 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","258":"u"},E:{"2":"I m J D E F A B C K L G 3B qB 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","258":"4B"},F:{"1":"BB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CB CC DC EC FC iB vB GC jB"},G:{"2":"qB HC wB","33":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"33":"H"},N:{"161":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"CSS text-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","258":"v"},E:{"2":"I n J D E F A B C K L G 4B rB 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","258":"5B"},F:{"1":"CB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB DB DC EC FC GC jB wB HC kB"},G:{"2":"rB IC xB","33":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"33":"X"},N:{"161":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 aa7f6620f19f82..074afbbff030d0 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 xB"},B:{"2":"C K L","33":"P Q R S T U V W Z a b c d e f g h i j k l H X","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B","161":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","450":"GB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"33":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"33":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","36":"qB"},H:{"2":"bC"},I:{"2":"lB","33":"I H cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"2":"A B C iB vB jB","33":"Y"},L:{"33":"X"},M:{"161":"H"},N:{"2":"A B"},O:{"33":"iC"},P:{"33":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"33":"uC"},R:{"33":"vC"},S:{"161":"wC"}},B:7,C:"CSS text-stroke and text-fill"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L","33":"P Q R S T U V W Z a b c d e f g h i j k l X m H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 0B 1B","161":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","450":"HB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"33":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"33":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","36":"rB"},H:{"2":"cC"},I:{"2":"mB","33":"I H dC eC fC gC xB hC iC"},J:{"33":"D A"},K:{"2":"A B C jB wB kB","33":"Y"},L:{"33":"H"},M:{"161":"X"},N:{"2":"A B"},O:{"33":"jC"},P:{"33":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"33":"vC"},R:{"33":"wC"},S:{"161":"xC"}},B:7,C:"CSS text-stroke and text-fill"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js index 391475ced8a066..c9f4ccc01624b5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-underline-offset.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B","130":"YB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"text-underline-offset"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB 0B 1B","130":"ZB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:5,C:"text-underline-offset"}; 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 e66cc57188d226..218a2098385d8b 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Node.textContent"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","16":"F"},G:{"1":"E IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 07498f570b5241..24ac048ee64cce 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B","132":"n"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"TextEncoder & TextDecoder"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O 0B 1B","132":"o"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 dbadfb193009c0..ea886439482ab4 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 xB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB","2":"yB lB I m J D E F A B C K L G M N O n o p q zB 0B","66":"r","129":"XB YB ZB aB bB cB dB eB fB gB","388":"hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T","2":"I m J D E F A B C K L G M N O n o p","1540":"U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K 6B 7B rB iB jB","2":"I m J 3B qB 4B 5B","513":"L G 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB jB","2":"F B C CC DC EC FC iB vB GC","1540":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"129":"H"},N:{"1":"B","66":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"TLS 1.1"}; +module.exports={A:{A:{"1":"B","2":"J D yB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB","2":"zB mB I n J D E F A B C K L G M N O o p q r 0B 1B","66":"s","129":"YB ZB aB bB cB dB eB fB gB hB","388":"iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","2":"I n J D E F A B C K L G M N O o p q","1540":"U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"D E F A B C K 7B 8B sB jB kB","2":"I n J 4B rB 5B 6B","513":"L G 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB kB","2":"F B C DC EC FC GC jB wB HC","1540":"dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"1":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"1":"A","2":"D"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"129":"X"},N:{"1":"B","66":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 504f18c2df6f0e..b7da1a03fd95e6 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 xB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","66":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F G CC","66":"B C DC EC FC iB vB GC jB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"Y jB","2":"A B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","66":"A"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"TLS 1.2"}; +module.exports={A:{A:{"1":"B","2":"J D yB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s 0B 1B","66":"t u v"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F G DC","66":"B C EC FC GC jB wB HC kB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"1":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"1":"A","2":"D"},K:{"1":"Y kB","2":"A B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","66":"A"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 7fe2e4b550aece..6e523f40fbe529 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B","132":"RB nB SB","450":"JB KB LB MB NB OB PB QB mB"},D:{"1":"ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","706":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","1028":"K jB 8B"},F:{"1":"PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB","706":"MB NB OB"},G:{"1":"TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rB oC pC qC rC sC kB tC","2":"I jC kC lC mC nC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:6,C:"TLS 1.3"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 0B 1B","132":"SB oB TB","450":"KB LB MB NB OB PB QB RB nB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","706":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB"},E:{"1":"L G AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB","1028":"K kB 9B"},F:{"1":"QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB","706":"NB OB PB"},G:{"1":"UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sB pC qC rC sC tC lB uC","2":"I kC lC mC nC oC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:6,C:"TLS 1.3"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js index d65709cbe19dae..aaa7ba4a5186b6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/token-binding.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B xB"},B:{"2":"C K L","194":"P Q R S T U V W Z a b c d e f g h i j k l H X","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H zB 0B","16":"X pB"},D:{"2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","16":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E 3B qB 4B 5B 6B","16":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB","16":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC","16":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"16":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","16":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","16":"Y"},L:{"16":"X"},M:{"16":"H"},N:{"2":"A","16":"B"},O:{"16":"iC"},P:{"16":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"16":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:6,C:"Token Binding"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L","194":"P Q R S T U V W Z a b c d e f g h i j k l X m H","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m 0B 1B","16":"H qB"},D:{"2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z","16":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E 4B rB 5B 6B 7B","16":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C G M N O o p q r s t u v w x y DC EC FC GC jB wB HC kB","16":"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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC","16":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"16":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","16":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","16":"Y"},L:{"16":"H"},M:{"16":"X"},N:{"2":"A","16":"B"},O:{"16":"jC"},P:{"16":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"16":"vC"},R:{"16":"wC"},S:{"2":"xC"}},B:6,C:"Token Binding"}; 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 a6098ffbe6c05c..e16c9700353da9 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 xB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","578":"C K L G M N O"},C:{"1":"O n o p q r s KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","4":"I m J D E F A B C K L G M N","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"},D:{"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A","260":"B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:2,C:"Touch events"}; +module.exports={A:{A:{"2":"J D E F yB","8":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","578":"C K L G M N O"},C:{"1":"O o p q r s t LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","4":"I n J D E F A B C K L G M N","194":"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"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A","260":"B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 4171dac5ebecdb..9caa983ea8076f 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":"xB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","33":"I m J D E F A B C K L G zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","33":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC","33":"B C G M N O n o p q EC FC iB vB GC"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","33":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","33":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"CSS3 2D Transforms"}; +module.exports={A:{A:{"2":"yB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","33":"I n J D E F A B C K L G 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","33":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F DC EC","33":"B C G M N O o p q r FC GC jB wB HC"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","33":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","33":"mB I dC eC fC gC xB hC iC"},J:{"33":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 5e846ba5ba6865..debf7521c81ca9 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 xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F zB 0B","33":"A B C K L G"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B","33":"0 1 2 3 C K L G M N O n o p q r s t u v w x y z"},E:{"1":"tB uB kB BC","2":"3B qB","33":"I m J D E 4B 5B 6B","257":"F A B C K L G 7B rB iB jB 8B 9B AC sB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"G M N O n o p q"},G:{"1":"tB uB kB","33":"E qB HC wB IC JC KC LC","257":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"1":"H","2":"cC dC eC","33":"lB I fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS3 3D Transforms"}; +module.exports={A:{A:{"2":"J D E F yB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F 0B 1B","33":"A B C K L G"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B","33":"0 1 2 3 4 C K L G M N O o p q r s t u v w x y z"},E:{"1":"uB vB lB CC","2":"4B rB","33":"I n J D E 5B 6B 7B","257":"F A B C K L G 8B sB jB kB 9B AC BC tB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"G M N O o p q r"},G:{"1":"uB vB lB","33":"E rB IC xB JC KC LC MC","257":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"1":"H","2":"dC eC fC","33":"mB I gC xB hC iC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a1532e90bccb1f..e46ddfb177c082 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 xB"},B:{"1":"S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"qC rC sC kB tC","2":"I jC kC lC mC nC rB oC pC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Trusted Types for DOM manipulation"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"rC sC tC lB uC","2":"I kC lC mC nC oC sB pC qC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 82f137cea03240..cb6954616d3cda 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 xB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W DC EC FC iB vB GC jB","2":"F CC"},G:{"1":"E wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC"},H:{"2":"bC"},I:{"1":"lB I H dC eC fC wB gC hC","2":"cC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; +module.exports={A:{A:{"2":"J D E yB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W EC FC GC jB wB HC kB","2":"F DC"},G:{"1":"E xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC"},H:{"2":"cC"},I:{"1":"mB I H eC fC gC xB hC iC","2":"dC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 3669484225a3e5..ff15704c76ce2a 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 xB","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","260":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","260":"wB"},H:{"1":"bC"},I:{"1":"I H fC wB gC hC","2":"lB cC dC eC"},J:{"1":"A","2":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Typed Arrays"}; +module.exports={A:{A:{"1":"B","2":"J D E F yB","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB","260":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC","260":"xB"},H:{"1":"cC"},I:{"1":"I H gC xB hC iC","2":"mB dC eC fC"},J:{"1":"A","2":"D"},K:{"1":"C Y kB","2":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8eea13f4f4d0f2..a5a5ae2cb4ce40 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 xB"},B:{"2":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","322":"FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB"},D:{"2":"0 1 2 3 4 5 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","130":"6 7 8","513":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB"},F:{"2":"0 1 2 3 4 5 6 7 9 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","513":"8 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"322":"wC"}},B:6,C:"FIDO U2F API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","513":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B","322":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB"},D:{"2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z","130":"7 8 9","513":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z AB DC EC FC GC jB wB HC kB","513":"9 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"322":"xC"}},B:6,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 59516155fba94a..aa48d21b08c797 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","16":"QC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:1,C:"unhandledrejection/rejectionhandled events"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB 0B 1B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC","16":"RC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 8c78d8202c3a65..3bb27f53c96a89 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r s t u v w x CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Upgrade Insecure Requests"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB 0B 1B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s t u v w x y DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 fc4c1cc5c0c7ac..8299174dd56b46 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 xB"},B:{"1":"S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB","66":"dB eB fB gB hB P Q"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB","66":"VB WB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"qC rC sC kB tC","2":"I jC kC lC mC nC rB oC pC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"URL Scroll-To-Text Fragment"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"S T U V W Z a b c d e f g h i j k l X m 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 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB","66":"eB fB gB hB iB P Q"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB DC EC FC GC jB wB HC kB","66":"WB XB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"rC sC tC lB uC","2":"I kC lC mC nC oC sB pC qC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 4ec7aa6bb91c41..1110a1f6224246 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q","130":"r s t u v w x y z"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B 5B","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","130":"G M N O"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC","130":"KC"},H:{"2":"bC"},I:{"1":"H hC","2":"lB I cC dC eC fC wB","130":"gC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"URL API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r","130":"0 s t u v w x y z"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B 6B","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","130":"G M N O"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC","130":"LC"},H:{"2":"cC"},I:{"1":"H iC","2":"mB I dC eC fC gC xB","130":"hC"},J:{"2":"D","130":"A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 cea0c4b594675c..cb395f10cfc3fe 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","132":"0 1 2 3 4 5 6 7 8 9 x y z AB BB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","2":"I"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:1,C:"URLSearchParams"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","2":"I"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 ffe24acf18c6e3..3011766ce4129f 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H fC wB gC hC","2":"cC dC eC"},J:{"1":"D A"},K:{"1":"C Y vB jB","2":"A B iB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"ECMAScript 5 Strict Mode"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","132":"n 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"1":"cC"},I:{"1":"mB I H gC xB hC iC","2":"dC eC fC"},J:{"1":"D A"},K:{"1":"C Y wB kB","2":"A B jB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 dbbeb87a687ff3..974dd4271cd16b 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 xB","33":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","33":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","33":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB zB 0B"},D:{"1":"MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"BC","33":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","33":"0 1 2 3 4 5 6 7 8 G M N O n o p q r s t u v w x y z"},G:{"33":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","33":"lB I cC dC eC fC wB gC hC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"33":"A B"},O:{"2":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","33":"I jC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"33":"wC"}},B:5,C:"CSS user-select: none"}; +module.exports={A:{A:{"2":"J D E F yB","33":"A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","33":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","33":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB 0B 1B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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":"CC","33":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z"},G:{"33":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","33":"mB I dC eC fC gC xB hC iC"},J:{"33":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"33":"A B"},O:{"2":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","33":"I kC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"33":"xC"}},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 f29a3fc76c2f78..8d864fccb1750e 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"User Timing API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 0a3c17907feebb..059ba2eecea38c 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 xB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB zB 0B","4609":"SB TB Y UB VB WB XB YB ZB","4674":"nB","5698":"RB","7490":"LB MB NB OB PB","7746":"QB mB","8705":"aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","4097":"VB","4290":"mB RB nB","6148":"SB TB Y UB"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","4609":"B C iB jB","8193":"K L 8B 9B"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB CC DC EC FC iB vB GC jB","4097":"LB","6148":"HB IB JB KB"},G:{"1":"UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC","4097":"QC RC SC TC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"4097":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC","4097":"mC nC rB oC pC qC rC sC kB tC"},Q:{"4097":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Variable fonts"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 0B 1B","4609":"TB UB Y VB WB XB YB ZB aB","4674":"oB","5698":"SB","7490":"MB NB OB PB QB","7746":"RB nB","8705":"bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","4097":"WB","4290":"nB SB oB","6148":"TB UB Y VB"},E:{"1":"G BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","4609":"B C jB kB","8193":"K L 9B AC"},F:{"1":"NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB DC EC FC GC jB wB HC kB","4097":"MB","6148":"IB JB KB LB"},G:{"1":"VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC","4097":"RC SC TC UC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"4097":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC","4097":"nC oC sB pC qC rC sC tC lB uC"},Q:{"4097":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 767c2b0f456603..8d6854c649156f 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","2":"F B CC DC EC FC iB vB"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"1":"bC"},I:{"1":"H gC hC","16":"lB I cC dC eC fC wB"},J:{"16":"D A"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","2":"F B DC EC FC GC jB wB"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"1":"cC"},I:{"1":"H hC iC","16":"mB I dC eC fC gC xB"},J:{"16":"D A"},K:{"1":"C Y kB","2":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 632b2cad6b7be1..9fef101e64fd85 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A zB 0B","33":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n o p q r s t u v w x"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"Vibration API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A 0B 1B","33":"B C K L G"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 06f6b4f1e08430..ca207b7325a095 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"I m J D E F A B C K L G M N O n zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A 4B 5B 6B 7B rB","2":"3B qB","513":"B C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC","513":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","132":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Video element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","260":"I n J D E F A B C K L G M N O o 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A 5B 6B 7B 8B sB","2":"4B rB","513":"B C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC","513":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","132":"dC eC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8df038eb1cbfc7..9d828e6eeb7888 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 xB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J 3B qB 4B"},F:{"2":"F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"322":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"194":"wC"}},B:1,C:"Video Tracks"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J 4B rB 5B"},F:{"2":"0 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"322":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"194":"xC"}},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 fb1d16d975bfe1..cd170f7e09c4fb 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 xB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k","194":"l H X pB 1B 2B"},E:{"1":"tB uB kB BC","2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"Large, Small, and Dynamic viewport units"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k","194":"l X m H qB 2B 3B"},E:{"1":"uB vB lB CC","2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 67961d9a44ac66..e2c2302d9d4a7e 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 xB","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N O n","260":"o p q r s t"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC","516":"KC","772":"JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"260":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; +module.exports={A:{A:{"2":"J D E yB","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N O o","260":"p q r s t u"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC","516":"LC","772":"KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"260":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 e337ccc4310af2..8d389f22ec5772 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 xB","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"4":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"3B qB","4":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"4":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"4":"bC"},I:{"2":"lB I cC dC eC fC wB","4":"H gC hC"},J:{"2":"D A"},K:{"4":"A B C Y iB vB jB"},L:{"4":"X"},M:{"4":"H"},N:{"4":"A B"},O:{"2":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"4":"wC"}},B:2,C:"WAI-ARIA Accessibility features"}; +module.exports={A:{A:{"2":"J D yB","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"4B rB","4":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"4":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"4":"cC"},I:{"2":"mB I dC eC fC gC xB","4":"H hC iC"},J:{"2":"D A"},K:{"4":"A B C Y jB wB kB"},L:{"4":"H"},M:{"4":"X"},N:{"4":"A B"},O:{"2":"jC"},P:{"4":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"4":"vC"},R:{"4":"wC"},S:{"4":"xC"}},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 bf7775fc5cedd4..db67b0505c4a3d 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 xB"},B:{"1":"b c d e f g h i j k l H X","2":"C K L G M N O","194":"P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB","194":"aB bB cB dB eB fB gB hB P Q R S T"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB CC DC EC FC iB vB GC jB","194":"QB RB SB TB Y UB VB WB XB YB ZB aB bB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"rC sC kB tC","2":"I jC kC lC mC nC rB oC pC qC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"Screen Wake Lock API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"b c d e f g h i j k l X m H","2":"C K L G M N O","194":"P Q R S T U V W Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB","194":"bB cB dB eB fB gB hB iB P Q R S T"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB DC EC FC GC jB wB HC kB","194":"RB SB TB UB Y VB WB XB YB ZB aB bB cB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"sC tC lB uC","2":"I kC lC mC nC oC sB pC qC rC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 afa68e1d3ca1f3..98433f615402ab 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 xB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L","578":"G"},C:{"1":"LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB zB 0B","194":"FB GB HB IB JB","1025":"KB"},D:{"1":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","322":"JB KB LB MB NB OB"},E:{"1":"B C K L G iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","322":"6 7 8 9 AB BB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"194":"wC"}},B:6,C:"WebAssembly"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L","578":"G"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 0B 1B","194":"GB HB IB JB KB","1025":"LB"},D:{"1":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","322":"KB LB MB NB OB PB"},E:{"1":"B C K L G jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","322":"7 8 9 AB BB CB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"194":"xC"}},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 9d3128ef724f15..316f0133b0e887 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W EC FC iB vB GC jB","2":"F CC DC"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","16":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"Wav audio format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W FC GC jB wB HC kB","2":"F DC EC"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","16":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 adf10813588989..666b4876f1c43f 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 xB","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","16":"F"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB"},H:{"1":"bC"},I:{"1":"lB I H eC fC wB gC hC","16":"cC dC"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"wbr (word break opportunity) element"}; +module.exports={A:{A:{"1":"J D yB","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","16":"F"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB"},H:{"1":"cC"},I:{"1":"mB I H fC gC xB hC iC","16":"dC eC"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 617916e0268a85..652f71b2e45506 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 xB"},B:{"1":"T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B","260":"mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB","516":"FB GB HB IB JB KB LB MB NB OB PB QB","580":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB","2049":"eB fB gB hB P Q"},D:{"1":"T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z","132":"4 5 6","260":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B rB","1090":"B C K iB jB","2049":"L 8B 9B"},F:{"1":"aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB","132":"r 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 RB SB TB Y UB VB WB XB YB ZB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC","1090":"QC RC SC TC UC VC WC","2049":"XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"260":"iC"},P:{"260":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"260":"uC"},R:{"260":"vC"},S:{"516":"wC"}},B:5,C:"Web Animations API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B","260":"nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB","516":"GB HB IB JB KB LB MB NB OB PB QB RB","580":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB","2049":"fB gB hB iB P Q"},D:{"1":"T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"5 6 7","260":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"G BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B sB","1090":"B C K jB kB","2049":"L 9B AC"},F:{"1":"bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r DC EC FC GC jB wB HC kB","132":"s t u","260":"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 Y VB WB XB YB ZB aB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC","1090":"RC SC TC UC VC WC XC","2049":"YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"260":"jC"},P:{"260":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"260":"vC"},R:{"260":"wC"},S:{"516":"xC"}},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 ec12cfdf03a69e..73096aeef4b3c1 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB V W Z a b c d e f g h i j k l H X pB zB 0B","578":"fB gB hB P Q R oB S T U"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC","260":"RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"2":"wC"}},B:5,C:"Add to home screen (A2HS)"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB V W Z a b c d e f g h i j k l X m H qB 0B 1B","578":"gB hB iB P Q R pB S T U"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC","260":"SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"2":"xC"}},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 5450c0bfd67775..e06d74e25bc0b2 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 xB"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB","194":"DB EB FB GB HB IB JB KB","706":"LB MB NB","1025":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","450":"4 5 6 7","706":"8 9 AB","1025":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC hC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","1025":"Y"},L:{"1025":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"kC lC mC nC rB oC pC qC rC sC kB tC","2":"I jC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Web Bluetooth"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB","194":"EB FB GB HB IB JB KB LB","706":"MB NB OB","1025":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","450":"5 6 7 8","706":"9 AB BB","1025":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC iC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","1025":"Y"},L:{"1025":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"lC mC nC oC sB pC qC rC sC tC lB uC","2":"I kC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 6724d799dd5cd1..aa1fc33dbc3b6f 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 xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB","66":"hB P Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y CC DC EC FC iB vB GC jB","66":"UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Web Serial API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"a b c d e f g h i j k l X m H","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB","66":"iB P Q R S T U V W Z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y DC EC FC GC jB wB HC kB","66":"VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 a11c966b1bf314..6f7d0c547466cb 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 xB"},B:{"2":"C K L G M N O P Q","516":"R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z","130":"O n o p q r s","1028":"a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"L G 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","2049":"K jB 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","2049":"TC UC VC WC XC"},H:{"2":"bC"},I:{"2":"lB I cC dC eC fC wB gC","258":"H hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","258":"Y"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I","258":"jC kC lC"},Q:{"2":"uC"},R:{"16":"vC"},S:{"2":"wC"}},B:5,C:"Web Share API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P Q","516":"R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z","130":"O o p q r s t","1028":"a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"L G AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB","2049":"K kB 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC","2049":"UC VC WC XC YC"},H:{"2":"cC"},I:{"2":"mB I dC eC fC gC xB hC","258":"H iC"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","258":"Y"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I","258":"kC lC mC"},Q:{"2":"vC"},R:{"16":"wC"},S:{"2":"xC"}},B:5,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 762145e05abbcc..38bb12b789e659 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 xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C","226":"K L G M N"},C:{"1":"RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB zB 0B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB"},E:{"1":"K L G 8B 9B AC sB tB uB kB BC","2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB","322":"jB"},F:{"1":"MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB CC DC EC FC iB vB GC jB"},G:{"1":"ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC","578":"VC","2052":"YC","3076":"WC XC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"tC","2":"I jC kC lC mC nC rB oC pC qC rC sC kB"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:2,C:"Web Authentication API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C","226":"K L G M N"},C:{"1":"SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB 0B 1B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB"},E:{"1":"K L G 9B AC BC tB uB vB lB CC","2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB","322":"kB"},F:{"1":"NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB DC EC FC GC jB wB HC kB"},G:{"1":"aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC","578":"WC","2052":"ZC","3076":"XC YC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"uC","2":"I kC lC mC nC oC sB pC qC rC sC tC lB"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},B:2,C:"Web Authentication 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 da8d7ef6be393d..89d6ab5804d16f 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":"xB","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","129":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","129":"I m J D E F A B C K L G M N O n o p q r"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D","129":"0 E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB","129":"J D 4B 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B CC DC EC FC iB vB GC","129":"C G M N O jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC KC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"1":"A","2":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A","129":"B"},O:{"129":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"129":"wC"}},B:6,C:"WebGL - 3D Canvas graphics"}; +module.exports={A:{A:{"2":"yB","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","129":"C K L G M N O"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","129":"I n J D E F A B C K L G M N O o p q r s"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D","129":"0 1 E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB","129":"J D 5B 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B DC EC FC GC jB wB HC","129":"C G M N O kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC LC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"1":"A","2":"D"},K:{"1":"C Y kB","2":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A","129":"B"},O:{"129":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"129":"xC"}},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 f2dc4aaa96d2b2..e00c1431d5aabf 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s zB 0B","194":"AB BB CB","450":"0 1 2 3 4 5 6 7 8 9 t u v w x y z","2242":"DB EB FB GB HB IB"},D:{"1":"OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB","578":"BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"G AC sB tB uB kB BC","2":"I m J D E F A 3B qB 4B 5B 6B 7B","1090":"B C K L rB iB jB 8B 9B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB CC DC EC FC iB vB GC jB"},G:{"1":"aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC","1090":"SC TC UC VC WC XC YC ZC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"lC mC nC rB oC pC qC rC sC kB tC","2":"I jC kC"},Q:{"578":"uC"},R:{"2":"vC"},S:{"2242":"wC"}},B:6,C:"WebGL 2.0"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t 0B 1B","194":"BB CB DB","450":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB","2242":"EB FB GB HB IB JB"},D:{"1":"PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","578":"CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"G BC tB uB vB lB CC","2":"I n J D E F A 4B rB 5B 6B 7B 8B","1090":"B C K L sB jB kB 9B AC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB DC EC FC GC jB wB HC kB"},G:{"1":"bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC","1090":"TC UC VC WC XC YC ZC aC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"mC nC oC sB pC qC rC sC tC lB uC","2":"I kC lC"},Q:{"578":"vC"},R:{"2":"wC"},S:{"2242":"xC"}},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 502b866b095e9d..a9b0b59fc12721 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 xB"},B:{"2":"C K L G M N O P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB zB 0B","194":"TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B 3B qB 4B 5B 6B 7B rB","322":"C K L G iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB CC DC EC FC iB vB GC jB","578":"cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"194":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:5,C:"WebGPU"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 0B 1B","194":"UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","578":"Q R S T U V W Z a b c d e","1602":"f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B 4B rB 5B 6B 7B 8B sB","322":"C K L G jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB DC EC FC GC jB wB HC kB","578":"dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"194":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 7ed7906c9d7058..12c03b0fbf056f 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 xB"},B:{"1":"a b c d e f g h i j k l H X","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB","66":"hB P Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB CC DC EC FC iB vB GC jB","66":"VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"WebHID API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"a b c d e f g h i j k l X m H","2":"C K L G M N O","66":"P Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB","66":"iB P Q R S T U V W Z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB DC EC FC GC jB wB HC kB","66":"WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 3286e87568cfb6..122e48b71bf85b 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 xB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"16":"I m J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"F B C CC DC EC FC iB vB GC jB","132":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"CSS -webkit-user-drag property"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"16":"I n J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"F B C DC EC FC GC jB wB HC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 f0dc4d13cbb636..f7dbc18901dfb2 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 xB","520":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","8":"C K","388":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","132":"I m J D E F A B C K L G M N O n o p q r s t u v"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","132":"J D E F A B C K L G M N O n o p q r s"},E:{"1":"kB BC","2":"3B","8":"I m qB 4B","520":"J D E F A B C 5B 6B 7B rB iB","1028":"K jB 8B","7172":"L","8196":"G 9B AC sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC","132":"B C G FC iB vB GC jB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC","1028":"TC UC VC WC XC","3076":"YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"1":"H","2":"cC dC","132":"lB I eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"8":"A B"},O:{"1":"iC"},P:{"1":"jC kC lC mC nC rB oC pC qC rC sC kB tC","132":"I"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:6,C:"WebM video format"}; +module.exports={A:{A:{"2":"J D E yB","520":"F A B"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","8":"C K","388":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","132":"I n J D E F A B C K L G M N O o p q r s t u v w"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n","132":"J D E F A B C K L G M N O o p q r s t"},E:{"1":"lB CC","2":"4B","8":"I n rB 5B","520":"J D E F A B C 6B 7B 8B sB jB","1028":"K kB 9B","7172":"L","8196":"G AC BC tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F DC EC FC","132":"B C G GC jB wB HC kB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC","1028":"UC VC WC XC YC","3076":"ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"1":"H","2":"dC eC","132":"mB I fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"8":"A B"},O:{"1":"jC"},P:{"1":"kC lC mC nC oC sB pC qC rC sC tC lB uC","132":"I"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 307fe8c9e33a7a..e05a02cdb1c6a5 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 xB"},B:{"2":"C K L G M N O P a b c d e f g h i j k l H X","450":"Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P a b c d e f g h i j k l H X pB 1B 2B","450":"Q R S T U V W Z"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB CC DC EC FC iB vB GC jB","450":"WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"257":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"Web NFC"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O P a b c d e f g h i j k l X m H","450":"Q R S T U V W Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P a b c d e f g h i j k l X m H qB 2B 3B","450":"Q R S T U V W Z"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB DC EC FC GC jB wB HC kB","450":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"257":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 ab0678f5abe36e..7ccc5b6293dc30 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 xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N"},C:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m","8":"J D E","132":"F A B C K L G M N O n o p q","260":"r s t u v w x y z"},E:{"1":"kB BC","2":"I m J D E F A B C K 3B qB 4B 5B 6B 7B rB iB jB 8B","516":"L G 9B AC sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F CC DC EC","8":"B FC","132":"iB vB GC","260":"C G M N O jB"},G:{"1":"YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC"},H:{"1":"bC"},I:{"1":"H wB gC hC","2":"lB cC dC eC","132":"I fC"},J:{"2":"D A"},K:{"1":"C Y iB vB jB","2":"A","132":"B"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"8":"wC"}},B:6,C:"WebP image format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n","8":"J D E","132":"F A B C K L G M N O o p q r","260":"0 s t u v w x y z"},E:{"1":"lB CC","2":"I n J D E F A B C K 4B rB 5B 6B 7B 8B sB jB kB 9B","516":"L G AC BC tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F DC EC FC","8":"B GC","132":"jB wB HC","260":"C G M N O kB"},G:{"1":"ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"1":"cC"},I:{"1":"H xB hC iC","2":"mB dC eC fC","132":"I gC"},J:{"2":"D A"},K:{"1":"C Y jB wB kB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"8":"xC"}},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 07a17a0dacd69c..e9914a2fbd6f0b 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB zB 0B","132":"I m","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"m 4B","260":"J 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC EC FC","132":"B C iB vB GC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC","132":"wB IC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","129":"D"},K:{"1":"Y jB","2":"A","132":"B C iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Web Sockets"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB 0B 1B","132":"I n","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","132":"n 5B","260":"J 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F DC EC FC GC","132":"B C jB wB HC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC","132":"xB JC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","129":"D"},K:{"1":"Y kB","2":"A","132":"B C jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:1,C:"Web Sockets"}; 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 a9fd696297141e..541da97d4c78d0 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","66":"MB NB OB PB QB mB RB"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"0 1 2 3 4 5 6 7 8 F B C G M N O n o p q r s t u v w x y z CC DC EC FC iB vB GC jB","66":"9 AB BB CB DB EB FB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"1":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"1":"mC nC rB oC pC qC rC sC kB tC","2":"I jC kC lC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:7,C:"WebUSB"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","66":"NB OB PB QB RB nB SB"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z DC EC FC GC jB wB HC kB","66":"AB BB CB DB EB FB GB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"1":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"1":"nC oC sB pC qC rC sC tC lB uC","2":"I kC lC mC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 d45ef3f0735fab..f00371b92c634b 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 xB"},B:{"2":"C K L Q R S T U V W Z a b c d e f g h i j k l H X","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B","129":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","194":"MB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","66":"PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P"},E:{"2":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","66":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C Y iB vB jB"},L:{"2":"X"},M:{"2":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"513":"I","516":"jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"66":"vC"},S:{"2":"wC"}},B:7,C:"WebVR API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L Q R S T U V W Z a b c d e f g h i j k l X m H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 0B 1B","129":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","194":"NB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","66":"QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P"},E:{"2":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","66":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C Y jB wB kB"},L:{"2":"H"},M:{"2":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"513":"I","516":"kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"66":"wC"},S:{"2":"xC"}},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 06f92aa0394da1..4f5cda20c4c250 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"yB lB I m J D E F A B C K L G M N O n o p q r zB 0B","66":"s t u v w x y","129":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB","257":"NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I m J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB IC JC"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB I cC dC eC fC wB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"B","2":"A"},O:{"2":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"129":"wC"}},B:5,C:"WebVTT - Web Video Text Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"zB mB I n J D E F A B C K L G M N O o p q r s 0B 1B","66":"t u v w x y z","129":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB","257":"OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I n J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB JC KC"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB I dC eC fC gC xB"},J:{"1":"A","2":"D"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"B","2":"A"},O:{"2":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"129":"xC"}},B:5,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 b7d62b7bc35f98..c7b9e2bcdf70df 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":"xB","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","8":"yB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","8":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W FC iB vB GC jB","2":"F CC","8":"DC EC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H cC gC hC","2":"lB I dC eC fC wB"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","8":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Web Workers"}; +module.exports={A:{A:{"1":"A B","2":"yB","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","8":"zB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","8":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W GC jB wB HC kB","2":"F DC","8":"EC FC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"H dC hC iC","2":"mB I eC fC gC xB"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","8":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a8f05632bffd77..fef29a80dafd32 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 xB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB zB 0B","322":"gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y","66":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","132":"P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"2":"I m J D E F A B C 3B qB 4B 5B 6B 7B rB iB jB","578":"K L G 8B 9B AC sB tB uB kB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB CC DC EC FC iB vB GC jB","66":"KB LB MB NB OB PB QB RB SB TB Y UB","132":"VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W"},G:{"2":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"2":"bC"},I:{"2":"lB I H cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"2":"A B C iB vB jB","132":"Y"},L:{"132":"X"},M:{"322":"H"},N:{"2":"A B"},O:{"2":"iC"},P:{"2":"I jC kC lC mC nC rB oC","132":"pC qC rC sC kB tC"},Q:{"2":"uC"},R:{"2":"vC"},S:{"2":"wC"}},B:4,C:"WebXR Device API"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB 0B 1B","322":"hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y","66":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","132":"P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"2":"I n J D E F A B C 4B rB 5B 6B 7B 8B sB jB kB","578":"K L G 9B AC BC tB uB vB lB CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB DC EC FC GC jB wB HC kB","66":"LB MB NB OB PB QB RB SB TB UB Y VB","132":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W"},G:{"2":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"2":"cC"},I:{"2":"mB I H dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"2":"A B C jB wB kB","132":"Y"},L:{"132":"H"},M:{"322":"X"},N:{"2":"A B"},O:{"2":"jC"},P:{"2":"I kC lC mC nC oC sB pC","132":"qC rC sC tC lB uC"},Q:{"2":"vC"},R:{"2":"wC"},S:{"2":"xC"}},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 47b64461ee38f4..8005d0ba00bcf2 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 xB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l H X","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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L G M N O n o p q r s t u v w zB 0B","194":"0 1 2 3 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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q r CC DC EC FC iB vB GC jB"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS will-change property"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"P Q R S T U V W Z a b c d e f g h i j k l X m 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L G M N O o p q r s t u v w x 0B 1B","194":"0 1 2 3 4 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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r s DC EC FC GC jB wB HC kB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:5,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 3c8198646c1427..a0778a41b9a3da 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB 0B","2":"yB lB zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"I"},E:{"1":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I m 3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W iB vB GC jB","2":"F B CC DC EC FC"},G:{"1":"E IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB"},H:{"2":"bC"},I:{"1":"H gC hC","2":"lB cC dC eC fC wB","130":"I"},J:{"1":"D A"},K:{"1":"B C Y iB vB jB","2":"A"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:2,C:"WOFF - Web Open Font Format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 1B","2":"zB mB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"I"},E:{"1":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I n 4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W jB wB HC kB","2":"F B DC EC FC GC"},G:{"1":"E JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB"},H:{"2":"cC"},I:{"1":"H hC iC","2":"mB dC eC fC gC xB","130":"I"},J:{"1":"D A"},K:{"1":"B C Y jB wB kB","2":"A"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 510d65dd6a2f6f..ed3bbc96f1a0d2 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 xB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X","2":"C K"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"0 1 2 3 4 5 6 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","2":"0 1 2 3 I m J D E F A B C K L G M N O n o p q r s t u v w x y z"},E:{"1":"C K L G jB 8B 9B AC sB tB uB kB BC","2":"I m J D E F 3B qB 4B 5B 6B 7B","132":"A B rB iB"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C G M N O n o p q CC DC EC FC iB vB GC jB"},G:{"1":"OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"E qB HC wB IC JC KC LC MC NC"},H:{"2":"bC"},I:{"1":"H","2":"lB I cC dC eC fC wB gC hC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"2":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}; +module.exports={A:{A:{"2":"J D E F A B yB"},B:{"1":"L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H","2":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"0 1 2 3 4 5 6 7 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"C K L G kB 9B AC BC tB uB vB lB CC","2":"I n J D E F 4B rB 5B 6B 7B 8B","132":"A B sB jB"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C G M N O o p q r DC EC FC GC jB wB HC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"E rB IC xB JC KC LC MC NC OC"},H:{"2":"cC"},I:{"1":"H","2":"mB I dC eC fC gC xB hC iC"},J:{"2":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"2":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,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 da29bbdb96d3b3..19d6cb9ffabab4 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB I m J D E F A B C K L zB 0B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m J D E 3B qB 4B 5B 6B"},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 Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","2":"F B C CC DC EC FC iB vB GC jB","4":"G M N O n o p q r s t u v w x y"},G:{"1":"MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"E qB HC wB IC JC KC LC"},H:{"2":"bC"},I:{"1":"H","4":"lB I cC dC eC fC wB gC hC"},J:{"4":"D A"},K:{"1":"Y","2":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"4":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:5,C:"CSS3 word-break"}; +module.exports={A:{A:{"1":"J D E F A B yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB I n J D E F A B C K L 0B 1B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB"},E:{"1":"F A B C K L G 8B sB jB kB 9B AC BC tB uB vB lB CC","4":"I n J D E 4B rB 5B 6B 7B"},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 Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","2":"F B C DC EC FC GC jB wB HC kB","4":"G M N O o p q r s t u v w x y z"},G:{"1":"NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","4":"E rB IC xB JC KC LC MC"},H:{"2":"cC"},I:{"1":"H","4":"mB I dC eC fC gC xB hC iC"},J:{"4":"D A"},K:{"1":"Y","2":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"4":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"4":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:5,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 8b1f62e398b418..8e4bf1bf7c68a1 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 xB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l H X","4":"C K L G M N"},C:{"1":"HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","4":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","4":"I m J D E F A B C K L G M N O n o p q"},E:{"1":"D E F A B C K L G 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","4":"I m J 3B qB 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F CC DC","4":"B C EC FC iB vB GC"},G:{"1":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","4":"qB HC wB IC JC"},H:{"4":"bC"},I:{"1":"H gC hC","4":"lB I cC dC eC fC wB"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"4":"wC"}},B:5,C:"CSS3 Overflow-wrap"}; +module.exports={A:{A:{"4":"J D E F A B yB"},B:{"1":"O P Q R S T U V W Z a b c d e f g h i j k l X m H","4":"C K L G M N"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","4":"I n J D E F A B C K L G M N O o p q r"},E:{"1":"D E F A B C K L G 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","4":"I n J 4B rB 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F DC EC","4":"B C FC GC jB wB HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","4":"rB IC xB JC KC"},H:{"4":"cC"},I:{"1":"H hC iC","4":"mB I dC eC fC gC xB"},J:{"1":"A","4":"D"},K:{"1":"Y","4":"A B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"4":"xC"}},B:5,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 e71ccf191ac9f3..b627ae90266577 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 xB","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B","2":"yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"3B qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB","2":"F"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"4":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"Cross-document messaging"}; +module.exports={A:{A:{"2":"J D yB","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B","2":"zB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"4B rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB","2":"F"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"4":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 8d26cf7a532d47..4da0f7a5e92955 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 xB"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB","4":"I m J D E F A B C K L G M N ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","16":"yB lB zB 0B"},D:{"4":"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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J D E F A B C K L G M N O n o p q r s t"},E:{"4":"J D E F A B C K L G 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","16":"I m 3B qB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W GC jB","16":"F B CC DC EC FC iB vB"},G:{"4":"E KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","16":"qB HC wB IC JC"},H:{"2":"bC"},I:{"4":"I H fC wB gC hC","16":"lB cC dC eC"},J:{"4":"D A"},K:{"4":"Y jB","16":"A B C iB vB"},L:{"4":"X"},M:{"4":"H"},N:{"1":"A B"},O:{"4":"iC"},P:{"4":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"4":"uC"},R:{"4":"vC"},S:{"1":"wC"}},B:6,C:"X-Frame-Options HTTP header"}; +module.exports={A:{A:{"1":"E F A B","2":"J D yB"},B:{"1":"C K L G M N O","4":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB","4":"I n J D E F A B C K L G M N aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","16":"zB mB 0B 1B"},D:{"4":"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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"4":"J D E F A B C K L G 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","16":"I n 4B rB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W HC kB","16":"F B DC EC FC GC jB wB"},G:{"4":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","16":"rB IC xB JC KC"},H:{"2":"cC"},I:{"4":"I H gC xB hC iC","16":"mB dC eC fC"},J:{"4":"D A"},K:{"4":"Y kB","16":"A B C jB wB"},L:{"4":"H"},M:{"4":"X"},N:{"1":"A B"},O:{"4":"jC"},P:{"4":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"4":"vC"},R:{"4":"wC"},S:{"1":"xC"}},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 c74a3cf09b15d3..81eb7a46f31dc2 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 xB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","2":"yB lB","260":"A B","388":"J D E F","900":"I m zB 0B"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","16":"I m J","132":"x y","388":"D E F A B C K L G M N O n o p q r s t u v w"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","2":"I 3B qB","132":"D 5B","388":"m J 4B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W jB","2":"F B CC DC EC FC iB vB GC","132":"G M N"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","2":"qB HC wB","132":"KC","388":"IC JC"},H:{"2":"bC"},I:{"1":"H hC","2":"cC dC eC","388":"gC","900":"lB I fC wB"},J:{"132":"A","388":"D"},K:{"1":"C Y jB","2":"A B iB vB"},L:{"1":"X"},M:{"1":"H"},N:{"132":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:1,C:"XMLHttpRequest advanced features"}; +module.exports={A:{A:{"2":"J D E F yB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","2":"zB mB","260":"A B","388":"J D E F","900":"I n 0B 1B"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","16":"I n J","132":"y z","388":"D E F A B C K L G M N O o p q r s t u v w x"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","2":"I 4B rB","132":"D 6B","388":"n J 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W kB","2":"F B DC EC FC GC jB wB HC","132":"G M N"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","2":"rB IC xB","132":"LC","388":"JC KC"},H:{"2":"cC"},I:{"1":"H iC","2":"dC eC fC","388":"hC","900":"mB I gC xB"},J:{"132":"A","388":"D"},K:{"1":"C Y kB","2":"A B jB wB"},L:{"1":"H"},M:{"1":"X"},N:{"132":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},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 a19e09b25311a6..a618b31b9eb580 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"1":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"1":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"1":"bC"},I:{"1":"lB I H cC dC eC fC wB gC hC"},J:{"1":"D A"},K:{"1":"A B C Y iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"2":"vC"},S:{"1":"wC"}},B:1,C:"XHTML served as application/xhtml+xml"}; +module.exports={A:{A:{"1":"F A B","2":"J D E yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"1":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"1":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"1":"cC"},I:{"1":"mB I H dC eC fC gC xB hC iC"},J:{"1":"D A"},K:{"1":"A B C Y jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"2":"wC"},S:{"1":"xC"}},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 0c56473c10c649..242ac8b5f5335a 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 xB","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"8":"0 1 2 3 4 5 6 7 8 9 yB lB I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB zB 0B"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I m J D E F A B C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B"},E:{"8":"I m J D E F A B C K L G 3B qB 4B 5B 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W CC DC EC FC iB vB GC jB"},G:{"8":"E qB HC wB IC JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB"},H:{"8":"bC"},I:{"8":"lB I H cC dC eC fC wB gC hC"},J:{"8":"D A"},K:{"8":"A B C Y iB vB jB"},L:{"8":"X"},M:{"8":"H"},N:{"2":"A B"},O:{"8":"iC"},P:{"8":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"8":"uC"},R:{"8":"vC"},S:{"8":"wC"}},B:7,C:"XHTML+SMIL animation"}; +module.exports={A:{A:{"2":"F A B yB","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 zB mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB 0B 1B"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B"},E:{"8":"I n J D E F A B C K L G 4B rB 5B 6B 7B 8B sB jB kB 9B AC BC tB uB vB lB CC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W DC EC FC GC jB wB HC kB"},G:{"8":"E rB IC xB JC KC LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB"},H:{"8":"cC"},I:{"8":"mB I H dC eC fC gC xB hC iC"},J:{"8":"D A"},K:{"8":"A B C Y jB wB kB"},L:{"8":"H"},M:{"8":"X"},N:{"2":"A B"},O:{"8":"jC"},P:{"8":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"8":"vC"},R:{"8":"wC"},S:{"8":"xC"}},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 590ec049b4013f..f1170583fe5e4b 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 xB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l H X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W Z a b c d e f g h i j k l H X pB","132":"B","260":"yB lB I m J D zB 0B","516":"E F A"},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 mB RB nB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R S T U V W Z a b c d e f g h i j k l H X pB 1B 2B","132":"I m J D E F A B C K L G M N O n o p q r s t u v w x y"},E:{"1":"E F A B C K L G 6B 7B rB iB jB 8B 9B AC sB tB uB kB BC","132":"I m J D 3B qB 4B 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB Y UB VB WB XB YB ZB aB bB cB dB eB fB gB hB P Q R oB S T U V W","16":"F CC","132":"B C G M N DC EC FC iB vB GC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC sB tB uB kB","132":"qB HC wB IC JC KC"},H:{"132":"bC"},I:{"1":"H gC hC","132":"lB I cC dC eC fC wB"},J:{"132":"D A"},K:{"1":"Y","16":"A","132":"B C iB vB jB"},L:{"1":"X"},M:{"1":"H"},N:{"1":"A B"},O:{"1":"iC"},P:{"1":"I jC kC lC mC nC rB oC pC qC rC sC kB tC"},Q:{"1":"uC"},R:{"1":"vC"},S:{"1":"wC"}},B:4,C:"DOM Parsing and Serialization"}; +module.exports={A:{A:{"1":"A B","260":"J D E F yB"},B:{"1":"C K L G M N O P Q R S T U V W Z a b c d e f g h i j k l X m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W Z a b c d e f g h i j k l X m H qB","132":"B","260":"zB mB I n J D 0B 1B","516":"E F A"},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 nB SB oB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W Z a b c d e f g h i j k l X m H qB 2B 3B","132":"I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 7B 8B sB jB kB 9B AC BC tB uB vB lB CC","132":"I n J D 4B rB 5B 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB Y VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W","16":"F DC","132":"B C G M N EC FC GC jB wB HC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC tB uB vB lB","132":"rB IC xB JC KC LC"},H:{"132":"cC"},I:{"1":"H hC iC","132":"mB I dC eC fC gC xB"},J:{"132":"D A"},K:{"1":"Y","16":"A","132":"B C jB wB kB"},L:{"1":"H"},M:{"1":"X"},N:{"1":"A B"},O:{"1":"jC"},P:{"1":"I kC lC mC nC oC sB pC qC rC sC tC lB uC"},Q:{"1":"vC"},R:{"1":"wC"},S:{"1":"xC"}},B:4,C:"DOM Parsing and Serialization"}; 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 1de89d8716da4a..1d4845d23577d1 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.30001356", + "version": "1.0.30001362", "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/full-chromium-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js index bf68030957339c..cfc97e9ae5008a 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 @@ -1807,7 +1807,9 @@ module.exports = { "17.4.4", "17.4.5", "17.4.6", - "17.4.7" + "17.4.7", + "17.4.8", + "17.4.9" ], "99.0.4767.0": [ "18.0.0-alpha.1", @@ -1883,7 +1885,8 @@ module.exports = { "18.3.1", "18.3.2", "18.3.3", - "18.3.4" + "18.3.4", + "18.3.5" ], "102.0.4962.3": [ "19.0.0-alpha.1", @@ -1950,6 +1953,13 @@ module.exports = { "19.0.3", "19.0.4" ], + "102.0.5005.115": [ + "19.0.5", + "19.0.6" + ], + "102.0.5005.134": [ + "19.0.7" + ], "103.0.5044.0": [ "20.0.0-alpha.1", "20.0.0-nightly.20220518", @@ -1968,6 +1978,11 @@ module.exports = { "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", "21.0.0-nightly.20220602", "21.0.0-nightly.20220603", "21.0.0-nightly.20220606", @@ -1979,6 +1994,18 @@ module.exports = { "21.0.0-nightly.20220614", "21.0.0-nightly.20220615", "21.0.0-nightly.20220616", - "21.0.0-nightly.20220617" + "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" + ], + "105.0.5129.0": [ + "21.0.0-nightly.20220628", + "21.0.0-nightly.20220629", + "21.0.0-nightly.20220630", + "21.0.0-nightly.20220701" ] }; \ 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 8ad6d94a28ec93..87c5eb639ae805 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"],"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"],"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"],"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","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"]} \ 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"],"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"],"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"],"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","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"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701"]} \ 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 f4547f0819022c..957d5c0c4bd75b 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 @@ -1292,6 +1292,8 @@ module.exports = { "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", "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", @@ -1368,6 +1370,7 @@ module.exports = { "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", "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", @@ -1408,12 +1411,20 @@ module.exports = { "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", "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-nightly.20220330": "102.0.4962.3", "20.0.0-nightly.20220411": "102.0.4971.0", "20.0.0-nightly.20220414": "102.0.4989.0", @@ -1458,5 +1469,15 @@ module.exports = { "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.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" }; \ 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 19231dc335f9f0..83359de2602247 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","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","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","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-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","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"} \ 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","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","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","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-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","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"} \ 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 9566551ce2723f..2df987461bbfae 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.161", + "version": "1.4.177", "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.1041.0", + "electron-releases": "^3.1057.0", "nyc": "^15.1.0", "request": "^2.65.0", "shelljs": "^0.8.4" diff --git a/tools/node_modules/eslint/node_modules/flatted/esm.js b/tools/node_modules/eslint/node_modules/flatted/esm.js new file mode 100644 index 00000000000000..c20ae09e976e55 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/flatted/esm.js @@ -0,0 +1,2 @@ +/*! (c) 2020 Andrea Giammarchi */ +const{parse:t,stringify:e}=JSON,{keys:n}=Object,o=String,c={},r=(t,e)=>e,s=t=>t instanceof o?o(t):t,l=(t,e)=>"string"==typeof e?new o(e):e,a=(t,e,r,s)=>{const l=[];for(let a=n(r),{length:f}=a,i=0;i{const c=o(e.push(n)-1);return t.set(n,c),c},i=(e,n)=>{const o=t(e,l).map(s),c=o[0],f=n||r,i="object"==typeof c&&c?a(o,new Set,c,f):c;return f.call({"":i},"",i)},p=(t,n,o)=>{const c=n&&"object"==typeof n?(t,e)=>""===t||-1t(p(e)),g=t=>i(e(t));export{g as fromJSON,i as parse,p as stringify,u as toJSON}; diff --git a/tools/node_modules/eslint/node_modules/flatted/index.js b/tools/node_modules/eslint/node_modules/flatted/index.js index 9cc91070180dcf..afb193dc4227db 100644 --- a/tools/node_modules/eslint/node_modules/flatted/index.js +++ b/tools/node_modules/eslint/node_modules/flatted/index.js @@ -1,7 +1,15 @@ self.Flatted = (function (exports) { 'use strict'; - + function _typeof(obj) { + "@babel/helpers - typeof"; + + return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { + return typeof obj; + } : function (obj) { + return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }, _typeof(obj); + } /*! (c) 2020 Andrea Giammarchi */ var $parse = JSON.parse, @@ -23,7 +31,7 @@ self.Flatted = (function (exports) { }; var Primitives = function Primitives(_, value) { - return typeof(value) === primitive ? new Primitive(value) : value; + return _typeof(value) === primitive ? new Primitive(value) : value; }; var revive = function revive(input, parsed, output, $) { @@ -36,7 +44,7 @@ self.Flatted = (function (exports) { if (value instanceof Primitive) { var tmp = input[value]; - if (typeof(tmp) === object && !parsed.has(tmp)) { + if (_typeof(tmp) === object && !parsed.has(tmp)) { parsed.add(tmp); output[k] = ignore; lazy.push({ @@ -67,13 +75,13 @@ self.Flatted = (function (exports) { var input = $parse(text, Primitives).map(primitives); var value = input[0]; var $ = reviver || noop; - var tmp = typeof(value) === object && value ? revive(input, new Set(), value, $) : value; + var tmp = _typeof(value) === object && value ? revive(input, new Set(), value, $) : value; return $.call({ '': tmp }, '', tmp); }; var stringify = function stringify(value, replacer, space) { - var $ = replacer && typeof(replacer) === object ? function (k, v) { + var $ = replacer && _typeof(replacer) === object ? function (k, v) { return k === '' || -1 < replacer.indexOf(k) ? v : void 0; } : replacer || noop; var known = new Map(); @@ -99,7 +107,7 @@ self.Flatted = (function (exports) { var after = $.call(this, key, value); - switch (typeof(after)) { + switch (_typeof(after)) { case object: if (after === null) return after; diff --git a/tools/node_modules/eslint/node_modules/flatted/min.js b/tools/node_modules/eslint/node_modules/flatted/min.js index a822de22434f24..b7a8efc10d3e0e 100644 --- a/tools/node_modules/eslint/node_modules/flatted/min.js +++ b/tools/node_modules/eslint/node_modules/flatted/min.js @@ -1,2 +1,2 @@ -self.Flatted=function(n){"use strict"; -/*! (c) 2020 Andrea Giammarchi */var t=JSON.parse,r=JSON.stringify,e=Object.keys,u=String,a="string",f={},i="object",o=function(n,t){return t},c=function(n){return n instanceof u?u(n):n},l=function(n,t){return typeof t===a?new u(t):t},s=function n(t,r,a,o){for(var c=[],l=e(a),s=l.length,p=0;p ./coverage/lcov.info" @@ -34,28 +35,29 @@ }, "homepage": "https://github.com/WebReflection/flatted#readme", "devDependencies": { - "@babel/core": "^7.16.0", - "@babel/preset-env": "^7.16.0", - "@ungap/structured-clone": "^0.3.4", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@ungap/structured-clone": "^1.0.1", "ascjs": "^5.0.1", - "c8": "^7.10.0", + "c8": "^7.11.3", "circular-json": "^0.5.9", "circular-json-es6": "^2.0.2", - "drop-babel-typeof": "^1.0.3", - "jsan": "^3.1.13", - "rollup": "^2.59.0", + "jsan": "^3.1.14", + "rollup": "^2.75.7", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^7.0.2", - "terser": "^5.9.0" + "terser": "^5.14.1" }, "module": "./esm/index.js", "type": "module", "exports": { ".": { + "types": "./types.d.ts", "import": "./esm/index.js", "default": "./cjs/index.js" }, + "./esm": "./esm.js", "./package.json": "./package.json" } } diff --git a/tools/node_modules/eslint/node_modules/update-browserslist-db/LICENSE b/tools/node_modules/eslint/node_modules/update-browserslist-db/LICENSE new file mode 100644 index 00000000000000..377ae1bee969f6 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright 2022 Andrey Sitnik and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/update-browserslist-db/cli.js b/tools/node_modules/eslint/node_modules/update-browserslist-db/cli.js new file mode 100755 index 00000000000000..e6829ce94962e2 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/cli.js @@ -0,0 +1,41 @@ +#!/usr/bin/env node + +let { readFileSync } = require('fs') +let { join } = require('path') + +let updateDb = require('./') + +const ROOT = __dirname + +function getPackage() { + return JSON.parse(readFileSync(join(ROOT, 'package.json'))) +} + +let args = process.argv.slice(2) + +let USAGE = 'Usage:\n npx update-browserslist-db\n' + +function isArg(arg) { + return args.some(i => i === arg) +} + +function error(msg) { + process.stderr.write('update-browserslist-db: ' + msg + '\n') + process.exit(1) +} + +if (isArg('--help') || isArg('-h')) { + process.stdout.write(getPackage().description + '.\n\n' + USAGE + '\n') +} else if (isArg('--version') || isArg('-v')) { + process.stdout.write('browserslist-lint ' + getPackage().version + '\n') +} else { + try { + updateDb() + } catch (e) { + if (e.name === 'BrowserslistUpdateError') { + error(e.message) + } else { + throw e + } + } +} diff --git a/tools/node_modules/eslint/node_modules/browserslist/update-db.js b/tools/node_modules/eslint/node_modules/update-browserslist-db/index.js similarity index 59% rename from tools/node_modules/eslint/node_modules/browserslist/update-db.js rename to tools/node_modules/eslint/node_modules/update-browserslist-db/index.js index 3e69e640a648ee..ccd941f089e223 100644 --- a/tools/node_modules/eslint/node_modules/browserslist/update-db.js +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/index.js @@ -1,41 +1,55 @@ -var childProcess = require('child_process') -var escalade = require('escalade/sync') -var pico = require('picocolors') -var path = require('path') -var fs = require('fs') +let childProcess = require('child_process') +let escalade = require('escalade/sync') +let pico = require('picocolors') +let path = require('path') +let fs = require('fs') -var BrowserslistError = require('./error') +function BrowserslistUpdateError(message) { + this.name = 'BrowserslistUpdateError' + this.message = message + this.browserslist = true + if (Error.captureStackTrace) { + Error.captureStackTrace(this, BrowserslistUpdateError) + } +} + +BrowserslistUpdateError.prototype = Error.prototype + +/* c8 ignore next 3 */ +function defaultPrint(str) { + process.stdout.write(str) +} function detectLockfile() { - var packageDir = escalade('.', function (dir, names) { + let packageDir = escalade('.', (dir, names) => { return names.indexOf('package.json') !== -1 ? dir : '' }) if (!packageDir) { - throw new BrowserslistError( + throw new BrowserslistUpdateError( 'Cannot find package.json. ' + - 'Is this the right directory to run `npx browserslist --update-db` in?' + 'Is this the right directory to run `npx update-browserslist-db` in?' ) } - var lockfileNpm = path.join(packageDir, 'package-lock.json') - var lockfileShrinkwrap = path.join(packageDir, 'npm-shrinkwrap.json') - var lockfileYarn = path.join(packageDir, 'yarn.lock') - var lockfilePnpm = path.join(packageDir, 'pnpm-lock.yaml') + let lockfileNpm = path.join(packageDir, 'package-lock.json') + let lockfileShrinkwrap = path.join(packageDir, 'npm-shrinkwrap.json') + let lockfileYarn = path.join(packageDir, 'yarn.lock') + let lockfilePnpm = path.join(packageDir, 'pnpm-lock.yaml') if (fs.existsSync(lockfilePnpm)) { return { mode: 'pnpm', file: lockfilePnpm } } else if (fs.existsSync(lockfileNpm)) { return { mode: 'npm', file: lockfileNpm } } else if (fs.existsSync(lockfileYarn)) { - var lock = { mode: 'yarn', file: lockfileYarn } + let lock = { mode: 'yarn', file: lockfileYarn } lock.content = fs.readFileSync(lock.file).toString() lock.version = /# yarn lockfile v1/.test(lock.content) ? 1 : 2 return lock } else if (fs.existsSync(lockfileShrinkwrap)) { return { mode: 'npm', file: lockfileShrinkwrap } } - throw new BrowserslistError( + throw new BrowserslistUpdateError( 'No lockfile found. Run "npm install", "yarn install" or "pnpm install"' ) } @@ -57,62 +71,39 @@ function getLatestInfo(lock) { ) } -function getBrowsersList() { - return childProcess - .execSync('npx browserslist') - .toString() - .trim() - .split('\n') - .map(function (line) { - return line.trim().split(' ') - }) - .reduce(function (result, entry) { - if (!result[entry[0]]) { - result[entry[0]] = [] - } - result[entry[0]].push(entry[1]) - return result - }, {}) +function getBrowsers() { + let browserslist = require('browserslist') + return browserslist().reduce((result, entry) => { + if (!result[entry[0]]) { + result[entry[0]] = [] + } + result[entry[0]].push(entry[1]) + return result + }, {}) } -function diffBrowsersLists(old, current) { - var browsers = Object.keys(old).concat( - Object.keys(current).filter(function (browser) { - return old[browser] === undefined - }) +function diffBrowsers(old, current) { + let browsers = Object.keys(old).concat( + Object.keys(current).filter(browser => old[browser] === undefined) ) return browsers - .map(function (browser) { - var oldVersions = old[browser] || [] - var currentVersions = current[browser] || [] - var intersection = oldVersions.filter(function (version) { - return currentVersions.indexOf(version) !== -1 - }) - var addedVersions = currentVersions.filter(function (version) { - return intersection.indexOf(version) === -1 - }) - var removedVersions = oldVersions.filter(function (version) { - return intersection.indexOf(version) === -1 - }) - return removedVersions - .map(function (version) { - return pico.red('- ' + browser + ' ' + version) - }) - .concat( - addedVersions.map(function (version) { - return pico.green('+ ' + browser + ' ' + version) - }) - ) + .map(browser => { + let oldVersions = old[browser] || [] + let currentVersions = current[browser] || [] + let common = oldVersions.filter(v => currentVersions.includes(v)) + let added = currentVersions.filter(v => !common.includes(v)) + let removed = oldVersions.filter(v => !common.includes(v)) + return removed + .map(v => pico.red('- ' + browser + ' ' + v)) + .concat(added.map(v => pico.green('+ ' + browser + ' ' + v))) }) - .reduce(function (result, array) { - return result.concat(array) - }, []) + .reduce((result, array) => result.concat(array), []) .join('\n') } function updateNpmLockfile(lock, latest) { - var metadata = { latest: latest, versions: [] } - var content = deletePackage(JSON.parse(lock.content), metadata) + let metadata = { latest, versions: [] } + let content = deletePackage(JSON.parse(lock.content), metadata) metadata.content = JSON.stringify(content, null, ' ') return metadata } @@ -120,27 +111,27 @@ function updateNpmLockfile(lock, latest) { function deletePackage(node, metadata) { if (node.dependencies) { if (node.dependencies['caniuse-lite']) { - var version = node.dependencies['caniuse-lite'].version + let version = node.dependencies['caniuse-lite'].version metadata.versions[version] = true delete node.dependencies['caniuse-lite'] } - for (var i in node.dependencies) { + for (let i in node.dependencies) { node.dependencies[i] = deletePackage(node.dependencies[i], metadata) } } return node } -var yarnVersionRe = /version "(.*?)"/ +let yarnVersionRe = /version "(.*?)"/ function updateYarnLockfile(lock, latest) { - var blocks = lock.content.split(/(\n{2,})/).map(function (block) { + let blocks = lock.content.split(/(\n{2,})/).map(block => { return block.split('\n') }) - var versions = {} - blocks.forEach(function (lines) { + let versions = {} + blocks.forEach(lines => { if (lines[0].indexOf('caniuse-lite@') !== -1) { - var match = yarnVersionRe.exec(lines[1]) + let match = yarnVersionRe.exec(lines[1]) versions[match[1]] = true if (match[1] !== latest.version) { lines[1] = lines[1].replace( @@ -162,12 +153,8 @@ function updateYarnLockfile(lock, latest) { } } }) - var content = blocks - .map(function (lines) { - return lines.join('\n') - }) - .join('') - return { content: content, versions: versions } + let content = blocks.map(lines => lines.join('\n')).join('') + return { content, versions } } function updateLockfile(lock, latest) { @@ -181,8 +168,8 @@ function updateLockfile(lock, latest) { } function updatePackageManually(print, lock, latest) { - var lockfileData = updateLockfile(lock, latest) - var caniuseVersions = Object.keys(lockfileData.versions).sort() + let lockfileData = updateLockfile(lock, latest) + let caniuseVersions = Object.keys(lockfileData.versions).sort() if (caniuseVersions.length === 1 && caniuseVersions[0] === latest.version) { print( 'Installed version: ' + @@ -206,7 +193,7 @@ function updatePackageManually(print, lock, latest) { ) fs.writeFileSync(lock.file, lockfileData.content) - var install = lock.mode === 'yarn' ? 'yarn add -W' : lock.mode + ' install' + let install = lock.mode === 'yarn' ? 'yarn add -W' : lock.mode + ' install' print( 'Installing new caniuse-lite version\n' + pico.yellow('$ ' + install + ' caniuse-lite') + @@ -229,7 +216,7 @@ function updatePackageManually(print, lock, latest) { process.exit(1) } /* c8 ignore end */ - var del = lock.mode === 'yarn' ? 'yarn remove -W' : lock.mode + ' uninstall' + let del = lock.mode === 'yarn' ? 'yarn remove -W' : lock.mode + ' uninstall' print( 'Cleaning package.json dependencies from caniuse-lite\n' + pico.yellow('$ ' + del + ' caniuse-lite') + @@ -259,16 +246,16 @@ function updateWith(print, cmd) { } /* c8 ignore end */ } -module.exports = function updateDB(print) { - var lock = detectLockfile() - var latest = getLatestInfo(lock) +module.exports = function updateDB(print = defaultPrint) { + let lock = detectLockfile() + let latest = getLatestInfo(lock) - var browsersListRetrievalError - var oldBrowsersList + let listError + let oldList try { - oldBrowsersList = getBrowsersList() + oldList = getBrowsers() } catch (e) { - browsersListRetrievalError = e + listError = e } print('Latest version: ' + pico.bold(pico.green(latest.version)) + '\n') @@ -283,33 +270,30 @@ module.exports = function updateDB(print) { print('caniuse-lite has been successfully updated\n') - var currentBrowsersList - if (!browsersListRetrievalError) { + let newList + if (!listError) { try { - currentBrowsersList = getBrowsersList() + newList = getBrowsers() } catch (e) /* c8 ignore start */ { - browsersListRetrievalError = e + listError = e } /* c8 ignore end */ } - if (browsersListRetrievalError) { + if (listError) { print( pico.red( '\n' + - browsersListRetrievalError.stack + + listError.stack + '\n\n' + 'Problem with browser list retrieval.\n' + 'Target browser changes won’t be shown.\n' ) ) } else { - var targetBrowserChanges = diffBrowsersLists( - oldBrowsersList, - currentBrowsersList - ) - if (targetBrowserChanges) { + let changes = diffBrowsers(oldList, newList) + if (changes) { print('\nTarget browser changes:\n') - print(targetBrowserChanges + '\n') + print(changes + '\n') } else { print('\n' + pico.green('No target browser changes') + '\n') } 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 new file mode 100644 index 00000000000000..fcaa527123bc43 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/package.json @@ -0,0 +1,38 @@ +{ + "name": "update-browserslist-db", + "version": "1.0.4", + "description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config", + "keywords": [ + "caniuse", + "browsers", + "target" + ], + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "author": "Andrey Sitnik ", + "license": "MIT", + "repository": "browserslist/update-db", + "types": "./index.d.ts", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + }, + "bin": { + "browserslist-lint": "cli.js" + } +} diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json index 2a3ec9c8a3a882..e5a987f989dbe1 100644 --- a/tools/node_modules/eslint/package.json +++ b/tools/node_modules/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.18.0", + "version": "8.19.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": { @@ -97,7 +97,6 @@ "cheerio": "^0.22.0", "common-tags": "^1.8.0", "core-js": "^3.1.3", - "dateformat": "^4.5.1", "ejs": "^3.0.2", "eslint": "file:.", "eslint-config-eslint": "file:packages/eslint-config-eslint", From b4b15b71d7f14d0796aaf08980d3ccf7d964a581 Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Mon, 4 Jul 2022 19:09:13 +0900 Subject: [PATCH 116/175] doc: add daeyeon to triagers Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: https://github.com/nodejs/node/pull/43637 Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Darshan Sen Reviewed-By: Qingyu Deng Reviewed-By: Xuguang Mei Reviewed-By: Gireesh Punathil --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 08f33caad450b7..6911048866690d 100644 --- a/README.md +++ b/README.md @@ -646,6 +646,8 @@ maintaining the Node.js project. * [Ayase-252](https://github.com/Ayase-252) - **Qingyu Deng** <> +* [daeyeon](https://github.com/daeyeon) - + **Daeyeon Jeong** <> (he/him) * [F3n67u](https://github.com/F3n67u) - **Feng Yu** <> (he/him) * [himadriganguly](https://github.com/himadriganguly) - From 0b4956079a4cf0cdb65fcede9687d9227709c03f Mon Sep 17 00:00:00 2001 From: cola119 Date: Tue, 21 Jun 2022 12:27:56 +0900 Subject: [PATCH 117/175] test: add test to ensure repl doesn't support --input-type PR-URL: https://github.com/nodejs/node/pull/43507 Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Antoine du Hamel Reviewed-By: James M Snell Reviewed-By: Michael Dawson --- test/parallel/test-repl-unsupported-option.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/parallel/test-repl-unsupported-option.js diff --git a/test/parallel/test-repl-unsupported-option.js b/test/parallel/test-repl-unsupported-option.js new file mode 100644 index 00000000000000..c5b234614983f6 --- /dev/null +++ b/test/parallel/test-repl-unsupported-option.js @@ -0,0 +1,10 @@ +'use strict'; + +require('../common'); + +const assert = require('assert'); +const { spawnSync } = require('child_process'); + +const result = spawnSync(process.execPath, ['-i', '--input-type=module']); + +assert.match(result.stderr.toString(), /Cannot specify --input-type for REPL/); From 3a8edb363e44e6765e324525f3bfd55c65142137 Mon Sep 17 00:00:00 2001 From: cola119 Date: Tue, 21 Jun 2022 12:44:29 +0900 Subject: [PATCH 118/175] doc: improve description of --input-type PR-URL: https://github.com/nodejs/node/pull/43507 Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Antoine du Hamel Reviewed-By: James M Snell Reviewed-By: Michael Dawson --- doc/api/cli.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/api/cli.md b/doc/api/cli.md index ce8f661040d5e3..62f198abd00543 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -585,6 +585,8 @@ module. String input is input via `--eval`, `--print`, or `STDIN`. Valid values are `"commonjs"` and `"module"`. The default is `"commonjs"`. +The REPL does not support this option. + ### `--inspect-brk[=[host:]port]` -Thrown by [`util.parseArgs()`][], when a postional argument is provided and +Thrown by [`util.parseArgs()`][], when a positional argument is provided and `allowPositionals` is set to `false`. @@ -2690,7 +2690,7 @@ added: - v12.17.0 --> -The TLS socket must be connected and securily established. Ensure the 'secure' +The TLS socket must be connected and securely established. Ensure the 'secure' event is emitted before continuing. From 267f66b5cca2312d38bd84a470809768299df5d7 Mon Sep 17 00:00:00 2001 From: Vincent Weevers Date: Tue, 5 Jul 2022 20:44:07 +0200 Subject: [PATCH 120/175] doc: fix default of duplex.allowHalfOpen PR-URL: https://github.com/nodejs/node/pull/43665 Reviewed-By: Luigi Pinca Reviewed-By: Darshan Sen --- doc/api/stream.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index 4480eaff0db193..3dfe70845c7600 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2270,7 +2270,7 @@ added: v0.9.4 If `false` then the stream will automatically end the writable side when the readable side ends. Set initially by the `allowHalfOpen` constructor option, -which defaults to `false`. +which defaults to `true`. This can be changed manually to change the half-open behavior of an existing `Duplex` stream instance, but must be changed before the `'end'` event is From ca0fbfd87f608d7024daed32d2c0d6cbed36c821 Mon Sep 17 00:00:00 2001 From: Douglas Wilson <67512+dougwilson@users.noreply.github.com> Date: Tue, 5 Jul 2022 16:26:48 -0400 Subject: [PATCH 121/175] doc: add note regarding special case of 0 stat.size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs: https://github.com/nodejs/node/issues/43669 PR-URL: https://github.com/nodejs/node/pull/43690 Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Juan José Arboleda Reviewed-By: LiviaMedeiros --- doc/api/fs.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/api/fs.md b/doc/api/fs.md index f34314518f01ee..fc375e39837c3e 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -6633,6 +6633,9 @@ A numeric device identifier if the file represents a device. The size of the file in bytes. +If the underlying file system does not support getting the size of the file, +this will be `0`. + #### `stats.blksize` * {number|bigint} From d46261ceed1ec0c7c5bd7a5563a50e19454da243 Mon Sep 17 00:00:00 2001 From: 0xSanyam <108138884+0xSanyam@users.noreply.github.com> Date: Thu, 7 Jul 2022 03:46:00 +0530 Subject: [PATCH 122/175] doc: improve readability of `dns.md` PR-URL: https://github.com/nodejs/node/pull/43694 Reviewed-By: Matteo Collina Reviewed-By: Benjamin Gruenbaum Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Harshitha K P --- doc/api/dns.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/api/dns.md b/doc/api/dns.md index dc2f578fa05336..0f43c7a1d7276e 100644 --- a/doc/api/dns.md +++ b/doc/api/dns.md @@ -144,7 +144,7 @@ The resolver instance will send its requests from the specified IP address. This allows programs to specify outbound interfaces when used on multi-homed systems. -If a v4 or v6 address is not specified, it is set to the default, and the +If a v4 or v6 address is not specified, it is set to the default and the operating system will choose a local address automatically. The resolver will use the v4 local address when making requests to IPv4 DNS @@ -239,7 +239,7 @@ such as no available file descriptors. `dns.lookup()` does not necessarily have anything to do with the DNS protocol. The implementation uses an operating system facility that can associate names -with addresses, and vice versa. This implementation can have subtle but +with addresses and vice versa. This implementation can have subtle but important consequences on the behavior of any Node.js program. Please take some time to consult the [Implementation considerations section][] before using `dns.lookup()`. @@ -285,7 +285,7 @@ The following flags can be passed as hints to [`dns.lookup()`][]. returned if the current system has at least one IPv4 address configured. * `dns.V4MAPPED`: If the IPv6 family was specified, but no IPv6 addresses were found, then return IPv4 mapped IPv6 addresses. It is not supported - on some operating systems (e.g FreeBSD 10.1). + on some operating systems (e.g. FreeBSD 10.1). * `dns.ALL`: If `dns.V4MAPPED` is specified, return resolved IPv6 addresses as well as IPv4 mapped IPv6 addresses. @@ -387,7 +387,7 @@ changes: * `hostname` {string} Host name to resolve. * `options` {Object} - * `ttl` {boolean} Retrieve the Time-To-Live value (TTL) of each record. + * `ttl` {boolean} Retrieves the Time-To-Live value (TTL) of each record. When `true`, the callback receives an array of `{ address: '1.2.3.4', ttl: 60 }` objects rather than an array of strings, with the TTL expressed in seconds. @@ -426,7 +426,7 @@ changes: * `err` {Error} * `addresses` {string\[] | Object\[]} -Uses the DNS protocol to resolve a IPv6 addresses (`AAAA` records) for the +Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the `hostname`. The `addresses` argument passed to the `callback` function will contain an array of IPv6 addresses. @@ -575,7 +575,7 @@ changes: * `err` {Error} * `addresses` {Object\[]} -Uses the DNS protocol to resolve regular expression based records (`NAPTR` +Uses the DNS protocol to resolve regular expression-based records (`NAPTR` records) for the `hostname`. The `addresses` argument passed to the `callback` function will contain an array of objects with the following properties: @@ -901,7 +901,7 @@ added: --> Cancel all outstanding DNS queries made by this resolver. The corresponding -promises will be rejected with an error with code `ECANCELLED`. +promises will be rejected with an error with the code `ECANCELLED`. ### `dnsPromises.getServers()` @@ -965,7 +965,7 @@ such as no available file descriptors. [`dnsPromises.lookup()`][] does not necessarily have anything to do with the DNS protocol. The implementation uses an operating system facility that can -associate names with addresses, and vice versa. This implementation can have +associate names with addresses and vice versa. This implementation can have subtle but important consequences on the behavior of any Node.js program. Please take some time to consult the [Implementation considerations section][] before using `dnsPromises.lookup()`. @@ -1182,7 +1182,7 @@ added: v10.6.0 * `hostname` {string} -Uses the DNS protocol to resolve regular expression based records (`NAPTR` +Uses the DNS protocol to resolve regular expression-based records (`NAPTR` records) for the `hostname`. On success, the `Promise` is resolved with an array of objects with the following properties: @@ -1380,11 +1380,11 @@ earlier ones time out or result in some other error. Each DNS query can return one of the following error codes: -* `dns.NODATA`: DNS server returned answer with no data. +* `dns.NODATA`: DNS server returned an answer with no data. * `dns.FORMERR`: DNS server claims query was misformatted. * `dns.SERVFAIL`: DNS server returned general failure. * `dns.NOTFOUND`: Domain name not found. -* `dns.NOTIMP`: DNS server does not implement requested operation. +* `dns.NOTIMP`: DNS server does not implement the requested operation. * `dns.REFUSED`: DNS server refused query. * `dns.BADQUERY`: Misformatted DNS query. * `dns.BADNAME`: Misformatted host name. @@ -1405,7 +1405,7 @@ Each DNS query can return one of the following error codes: * `dns.ADDRGETNETWORKPARAMS`: Could not find `GetNetworkParams` function. * `dns.CANCELLED`: DNS query cancelled. -The above error codes are also exported by the `dnsPromises` API, e.g., `dnsPromises.NODATA`. +The `dnsPromises` API also exports the above error codes, e.g., `dnsPromises.NODATA`. ## Implementation considerations @@ -1441,7 +1441,7 @@ allow the default resolver, `dns.lookup()`, to be replaced. These functions are implemented quite differently than [`dns.lookup()`][]. They do not use getaddrinfo(3) and they _always_ perform a DNS query on the -network. This network communication is always done asynchronously, and does not +network. This network communication is always done asynchronously and does not use libuv's threadpool. As a result, these functions cannot have the same negative impact on other From 7679c77347b035999296612042780485add324fe Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 6 Jul 2022 17:30:36 -0700 Subject: [PATCH 123/175] doc: add Geoffrey Booth to TSC PR-URL: https://github.com/nodejs/node/pull/43706 Reviewed-By: Geoffrey Booth Reviewed-By: Colin Ihrig Reviewed-By: Ruben Bridgewater Reviewed-By: Richard Lau Reviewed-By: Beth Griggs --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6911048866690d..a82d6cc1d33aa9 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,8 @@ For information about the governance of the Node.js project, see **Danielle Adams** <> (she/her) * [fhinkel](https://github.com/fhinkel) - **Franziska Hinkelmann** <> (she/her) +* [GeoffreyBooth](https://github.com/geoffreybooth) - + **Geoffrey Booth** <> (he/him) * [gireeshpunathil](https://github.com/gireeshpunathil) - **Gireesh Punathil** <> (he/him) * [jasnell](https://github.com/jasnell) - From 088b9266d0b276044bed602b862ea9fdecbfbc67 Mon Sep 17 00:00:00 2001 From: Colin Ihrig Date: Thu, 7 Jul 2022 02:51:53 -0400 Subject: [PATCH 124/175] doc: remove extra 'in's 'when in an' -> 'when an' PR-URL: https://github.com/nodejs/node/pull/43705 Reviewed-By: Richard Lau Reviewed-By: Gireesh Punathil Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel --- doc/api/process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index ac8f2d1288961b..b5bcfbc7928406 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -340,7 +340,7 @@ changes: * `err` {Error} The uncaught exception. * `origin` {string} Indicates if the exception originates from an unhandled rejection or from a synchronous error. Can either be `'uncaughtException'` or - `'unhandledRejection'`. The latter is used when in an exception happens in a + `'unhandledRejection'`. The latter is used when an exception happens in a `Promise` based async context (or if a `Promise` is rejected) and [`--unhandled-rejections`][] flag set to `strict` or `throw` (which is the default) and the rejection is not handled, or when a rejection happens during @@ -438,7 +438,7 @@ added: * `err` {Error} The uncaught exception. * `origin` {string} Indicates if the exception originates from an unhandled rejection or from synchronous errors. Can either be `'uncaughtException'` or - `'unhandledRejection'`. The latter is used when in an exception happens in a + `'unhandledRejection'`. The latter is used when an exception happens in a `Promise` based async context (or if a `Promise` is rejected) and [`--unhandled-rejections`][] flag set to `strict` or `throw` (which is the default) and the rejection is not handled, or when a rejection happens during From ca5af0dbf7c2761ba744d02017c7c74c13399d9c Mon Sep 17 00:00:00 2001 From: RafaelGSS Date: Tue, 5 Jul 2022 15:58:09 -0300 Subject: [PATCH 125/175] doc: update changelog-maker to the new flags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43696 Reviewed-By: Richard Lau Reviewed-By: Tobias Nießen Reviewed-By: Beth Griggs Reviewed-By: Matteo Collina Reviewed-By: Darshan Sen Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Danielle Adams Reviewed-By: Luigi Pinca --- doc/contributing/releases.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/contributing/releases.md b/doc/contributing/releases.md index cbe547a0fc8ac1..4c93944bb69ab3 100644 --- a/doc/contributing/releases.md +++ b/doc/contributing/releases.md @@ -251,7 +251,7 @@ Collect a formatted list of commits since the last release. Use [`changelog-maker`](https://github.com/nodejs/changelog-maker) to do this: ```console -$ changelog-maker --group +$ changelog-maker --group --markdown ``` `changelog-maker` counts commits since the last tag and if the last tag @@ -259,7 +259,7 @@ in the repository was not on the current branch you may have to supply a `--start-ref` argument: ```console -$ changelog-maker --group --filter-release --start-ref v1.2.2 +$ changelog-maker --group --markdown --filter-release --start-ref v1.2.2 ``` `--filter-release` will remove the release commit from the previous release. @@ -299,7 +299,7 @@ You can use `branch-diff` to get a list of commits with the `notable-change` label: ```console -$ branch-diff upstream/v1.x v1.2.3-proposal --require-label=notable-change -format=simple +$ branch-diff upstream/v1.x v1.2.3-proposal --require-label=notable-change --plaintext ``` Be sure that the `` tag, as well as the two headings, are not indented at From aafdf1239e447157eaf836324730a49a2376ab5c Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Sun, 29 May 2022 12:19:04 +0800 Subject: [PATCH 126/175] tools: refactor `tools/license2rtf` to ESM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 331088f4a450e29f3ea8a28a9f98ccc9f8951386. PR-URL: https://github.com/nodejs/node/pull/43232 Refs: https://github.com/nodejs/node/issues/43213 Reviewed-By: Darshan Sen Reviewed-By: LiviaMedeiros Reviewed-By: Michaël Zasso --- Makefile | 2 +- tools/{license2rtf.js => license2rtf.mjs} | 34 +++++++++++------------ vcbuild.bat | 10 +++---- 3 files changed, 22 insertions(+), 24 deletions(-) rename tools/{license2rtf.js => license2rtf.mjs} (94%) diff --git a/Makefile b/Makefile index dc90da2fd1e438..c75e1c74056cc9 100644 --- a/Makefile +++ b/Makefile @@ -1096,7 +1096,7 @@ endif $(MACOSOUTDIR)/dist/npm/usr/local/lib/node_modules unlink $(MACOSOUTDIR)/dist/node/usr/local/bin/npm unlink $(MACOSOUTDIR)/dist/node/usr/local/bin/npx - $(NODE) tools/license2rtf.js < LICENSE > \ + $(NODE) tools/license2rtf.mjs < LICENSE > \ $(MACOSOUTDIR)/installer/productbuild/Resources/license.rtf cp doc/osx_installer_logo.png $(MACOSOUTDIR)/installer/productbuild/Resources pkgbuild --version $(FULLVERSION) \ diff --git a/tools/license2rtf.js b/tools/license2rtf.mjs similarity index 94% rename from tools/license2rtf.js rename to tools/license2rtf.mjs index 817da81d7a6ada..d982e679c3e653 100644 --- a/tools/license2rtf.js +++ b/tools/license2rtf.mjs @@ -1,8 +1,7 @@ -'use strict'; - -const assert = require('assert'); -const Stream = require('stream'); - +import assert from 'node:assert'; +import Stream from 'node:stream'; +import { pipeline } from 'node:stream/promises'; +import { stdin, stdout } from 'node:process'; /* * This filter consumes a stream of characters and emits one string per line. @@ -28,6 +27,7 @@ class LineSplitter extends Stream { if (this.buffer) { this.emit('data', this.buffer); } + this.writable = false; this.emit('end'); } } @@ -53,6 +53,7 @@ class ParagraphParser extends Stream { if (data) this.parseLine(data + ''); this.flushParagraph(); + this.writable = false; this.emit('end'); } @@ -212,6 +213,7 @@ class Unwrapper extends Stream { end(data) { if (data) this.write(data); + this.writable = false; this.emit('end'); } } @@ -273,6 +275,7 @@ class RtfGenerator extends Stream { this.write(data); if (this.didWriteAnything) this.emitFooter(); + this.writable = false; this.emit('end'); } @@ -287,19 +290,14 @@ class RtfGenerator extends Stream { } } - -const stdin = process.stdin; -const stdout = process.stdout; -const lineSplitter = new LineSplitter(); -const paragraphParser = new ParagraphParser(); -const unwrapper = new Unwrapper(); -const rtfGenerator = new RtfGenerator(); - stdin.setEncoding('utf-8'); stdin.resume(); -stdin.pipe(lineSplitter); -lineSplitter.pipe(paragraphParser); -paragraphParser.pipe(unwrapper); -unwrapper.pipe(rtfGenerator); -rtfGenerator.pipe(stdout); +await pipeline( + stdin, + new LineSplitter(), + new ParagraphParser(), + new Unwrapper(), + new RtfGenerator(), + stdout, +); diff --git a/vcbuild.bat b/vcbuild.bat index 1f200a6818eb6a..eb2fc28628ed47 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -405,7 +405,7 @@ if errorlevel 1 echo "Could not create junction to 'out\%config%'." & exit /B if not defined sign goto licensertf call tools\sign.bat Release\node.exe -if errorlevel 1 echo Failed to sign exe&goto exit +if errorlevel 1 echo Failed to sign exe, got error code %errorlevel%&goto exit :licensertf @rem Skip license.rtf generation if not requested. @@ -426,12 +426,12 @@ if "%use_x64_node_exe%"=="true" ( set exit_code=1 goto exit ) - %x64_node_exe% tools\license2rtf.js < LICENSE > %config%\license.rtf + %x64_node_exe% tools\license2rtf.mjs < LICENSE > %config%\license.rtf ) else ( - %node_exe% tools\license2rtf.js < LICENSE > %config%\license.rtf + %node_exe% tools\license2rtf.mjs < LICENSE > %config%\license.rtf ) -if errorlevel 1 echo Failed to generate license.rtf&goto exit +if errorlevel 1 echo Failed to generate license.rtf, got error code %errorlevel%&goto exit :stage_package if not defined stage_package goto install-doctools @@ -538,7 +538,7 @@ if errorlevel 1 goto exit if not defined sign goto upload call tools\sign.bat node-v%FULLVERSION%-%target_arch%.msi -if errorlevel 1 echo Failed to sign msi&goto exit +if errorlevel 1 echo Failed to sign msi, got error code %errorlevel%&goto exit :upload @rem Skip upload if not requested From 482bd53357d6dda76aeb4457c38386f39a1e6624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 7 Jul 2022 22:17:49 +0200 Subject: [PATCH 127/175] build: clarify missing clang-format tool PR-URL: https://github.com/nodejs/node/pull/42762 Co-authored-by: Rich Trott Reviewed-By: Darshan Sen Reviewed-By: Rich Trott Reviewed-By: Mestery Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Michael Dawson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c75e1c74056cc9..e0d756fea3ac35 100644 --- a/Makefile +++ b/Makefile @@ -1440,7 +1440,7 @@ ifneq ("","$(wildcard tools/clang-format/node_modules/)") $(CLANG_FORMAT_START) -- \ $(LINT_CPP_FILES) else - $(info clang-format is not installed.) + $(info Required tooling for C++ code formatting is not installed.) $(info To install (requires internet access) run: $$ make format-cpp-build) endif From 2e181f68a37f94f57313577189b889159675b7ed Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Fri, 8 Jul 2022 05:37:50 +0900 Subject: [PATCH 128/175] src,stream: change return type to `Maybe` This changes the return types of some functions to indicate that the functions may have a pending exception, and removes some of todos related. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: https://github.com/nodejs/node/pull/43575 Reviewed-By: Darshan Sen Reviewed-By: Anna Henningsen --- src/stream_wrap.cc | 43 +++++++++++++++++++++++++++---------------- src/stream_wrap.h | 4 +--- 2 files changed, 28 insertions(+), 19 deletions(-) diff --git a/src/stream_wrap.cc b/src/stream_wrap.cc index ef85ba681f8588..d0c5664adcd897 100644 --- a/src/stream_wrap.cc +++ b/src/stream_wrap.cc @@ -25,6 +25,7 @@ #include "env-inl.h" #include "handle_wrap.h" #include "node_buffer.h" +#include "node_errors.h" #include "node_external_reference.h" #include "pipe_wrap.h" #include "req_wrap-inl.h" @@ -38,14 +39,18 @@ namespace node { +using errors::TryCatchScope; using v8::Context; using v8::DontDelete; using v8::EscapableHandleScope; using v8::FunctionCallbackInfo; using v8::FunctionTemplate; using v8::HandleScope; +using v8::JustVoid; using v8::Local; +using v8::Maybe; using v8::MaybeLocal; +using v8::Nothing; using v8::Object; using v8::PropertyAttribute; using v8::ReadOnly; @@ -191,15 +196,19 @@ bool LibuvStreamWrap::IsIPCPipe() { return is_named_pipe_ipc(); } - int LibuvStreamWrap::ReadStart() { - return uv_read_start(stream(), [](uv_handle_t* handle, - size_t suggested_size, - uv_buf_t* buf) { - static_cast(handle->data)->OnUvAlloc(suggested_size, buf); - }, [](uv_stream_t* stream, ssize_t nread, const uv_buf_t* buf) { - static_cast(stream->data)->OnUvRead(nread, buf); - }); + return uv_read_start( + stream(), + [](uv_handle_t* handle, size_t suggested_size, uv_buf_t* buf) { + static_cast(handle->data) + ->OnUvAlloc(suggested_size, buf); + }, + [](uv_stream_t* stream, ssize_t nread, const uv_buf_t* buf) { + LibuvStreamWrap* wrap = static_cast(stream->data); + TryCatchScope try_catch(wrap->env()); + try_catch.SetVerbose(true); + wrap->OnUvRead(nread, buf); + }); } @@ -239,8 +248,7 @@ static MaybeLocal AcceptHandle(Environment* env, return scope.Escape(wrap_obj); } - -void LibuvStreamWrap::OnUvRead(ssize_t nread, const uv_buf_t* buf) { +Maybe LibuvStreamWrap::OnUvRead(ssize_t nread, const uv_buf_t* buf) { HandleScope scope(env()->isolate()); Context::Scope context_scope(env()->context()); uv_handle_type type = UV_UNKNOWN_HANDLE; @@ -268,18 +276,21 @@ void LibuvStreamWrap::OnUvRead(ssize_t nread, const uv_buf_t* buf) { } Local local_pending_obj; - if (pending_obj.ToLocal(&local_pending_obj) && - object()->Set(env()->context(), - env()->pending_handle_string(), - local_pending_obj).IsNothing()) { - return; + if (type != UV_UNKNOWN_HANDLE && + (!pending_obj.ToLocal(&local_pending_obj) || + object() + ->Set(env()->context(), + env()->pending_handle_string(), + local_pending_obj) + .IsNothing())) { + return Nothing(); } } EmitRead(nread, *buf); + return JustVoid(); } - void LibuvStreamWrap::GetWriteQueueSize( const FunctionCallbackInfo& info) { LibuvStreamWrap* wrap; diff --git a/src/stream_wrap.h b/src/stream_wrap.h index 8cbce923bfed89..197303990c90bc 100644 --- a/src/stream_wrap.h +++ b/src/stream_wrap.h @@ -105,9 +105,7 @@ class LibuvStreamWrap : public HandleWrap, public StreamBase { // Callbacks for libuv void OnUvAlloc(size_t suggested_size, uv_buf_t* buf); - // TODO(RaisinTen): Update the return type to a Maybe, so that we can indicate - // if there is a pending exception/termination. - void OnUvRead(ssize_t nread, const uv_buf_t* buf); + v8::Maybe OnUvRead(ssize_t nread, const uv_buf_t* buf); static void AfterUvWrite(uv_write_t* req, int status); static void AfterUvShutdown(uv_shutdown_t* req, int status); From 061ed0e76b02f52949571dd4aa9162fe2277c0b0 Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Fri, 8 Jul 2022 17:12:13 +0900 Subject: [PATCH 129/175] events: improve `Event` compatibility This fixes `Event` constructor to improve `Event Web API` compatibility. The test added was written by referring to `wpt@dom/events/Event-constructors.any.js`. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: https://github.com/nodejs/node/pull/43461 Reviewed-By: Antoine du Hamel Reviewed-By: LiviaMedeiros Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- lib/internal/event_target.js | 8 ++--- .../test-whatwg-events-event-constructors.js | 29 +++++++++++++++++++ 2 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 test/parallel/test-whatwg-events-event-constructors.js diff --git a/lib/internal/event_target.js b/lib/internal/event_target.js index bd153c972ae276..dfb907b1bf68b4 100644 --- a/lib/internal/event_target.js +++ b/lib/internal/event_target.js @@ -95,13 +95,11 @@ class Event { * composed?: boolean, * }} [options] */ - constructor(type, options = null) { + constructor(type, options = kEmptyObject) { if (arguments.length === 0) throw new ERR_MISSING_ARGS('type'); - validateObject(options, 'options', { - allowArray: true, allowFunction: true, nullable: true, - }); - const { cancelable, bubbles, composed } = { ...options }; + validateObject(options, 'options'); + const { bubbles, cancelable, composed } = options; this.#cancelable = !!cancelable; this.#bubbles = !!bubbles; this.#composed = !!composed; diff --git a/test/parallel/test-whatwg-events-event-constructors.js b/test/parallel/test-whatwg-events-event-constructors.js new file mode 100644 index 00000000000000..7880b10043e462 --- /dev/null +++ b/test/parallel/test-whatwg-events-event-constructors.js @@ -0,0 +1,29 @@ +'use strict'; + +require('../common'); +const { test, assert_equals, assert_array_equals } = + require('../common/wpt').harness; + +// Source: https://github.com/web-platform-tests/wpt/blob/6cef1d2087d6a07d7cc6cee8cf207eec92e27c5f/dom/events/Event-constructors.any.js#L91-L112 +test(function() { + const called = []; + const ev = new Event('Xx', { + get cancelable() { + called.push('cancelable'); + return false; + }, + get bubbles() { + called.push('bubbles'); + return true; + }, + get sweet() { + called.push('sweet'); + return 'x'; + }, + }); + assert_array_equals(called, ['bubbles', 'cancelable']); + assert_equals(ev.type, 'Xx'); + assert_equals(ev.bubbles, true); + assert_equals(ev.cancelable, false); + assert_equals(ev.sweet, undefined); +}); From c9f130e1cfd630fb5c20c00613b00347069992cc Mon Sep 17 00:00:00 2001 From: Kohei Ueno Date: Fri, 8 Jul 2022 17:12:22 +0900 Subject: [PATCH 130/175] test: improve code coverage for performance_entry PR-URL: https://github.com/nodejs/node/pull/43434 Reviewed-By: Luigi Pinca Reviewed-By: Darshan Sen Reviewed-By: James M Snell --- .../test-perf-hooks-resourcetiming.js | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/test/parallel/test-perf-hooks-resourcetiming.js b/test/parallel/test-perf-hooks-resourcetiming.js index bf4b49347bb289..056924c4eb8c6f 100644 --- a/test/parallel/test-perf-hooks-resourcetiming.js +++ b/test/parallel/test-perf-hooks-resourcetiming.js @@ -2,6 +2,7 @@ const common = require('../common'); const assert = require('assert'); +const util = require('util'); const { PerformanceObserver, PerformanceEntry, @@ -14,6 +15,7 @@ const { assert(PerformanceObserver); assert(PerformanceEntry); +assert.throws(() => new PerformanceEntry(), { code: 'ERR_ILLEGAL_CONSTRUCTOR' }); assert(PerformanceResourceTiming); assert(clearResourceTimings); assert(markResourceTiming); @@ -174,6 +176,54 @@ function createTimingInfo({ encodedBodySize: 0, decodedBodySize: 0, }); + assert.strictEqual(util.inspect(performance.getEntries()), `[ + PerformanceResourceTiming { + name: 'http://localhost:8080', + entryType: 'resource', + startTime: 0, + duration: 0, + initiatorType: 'fetch', + nextHopProtocol: [], + workerStart: 0, + redirectStart: 0, + redirectEnd: 0, + fetchStart: 0, + domainLookupStart: 0, + domainLookupEnd: 0, + connectStart: 0, + connectEnd: 0, + secureConnectionStart: 0, + requestStart: 0, + responseStart: 0, + responseEnd: 0, + transferSize: 0, + encodedBodySize: 0, + decodedBodySize: 0 + } +]`); + assert.strictEqual(util.inspect(resource), `PerformanceResourceTiming { + name: 'http://localhost:8080', + entryType: 'resource', + startTime: 0, + duration: 0, + initiatorType: 'fetch', + nextHopProtocol: [], + workerStart: 0, + redirectStart: 0, + redirectEnd: 0, + fetchStart: 0, + domainLookupStart: 0, + domainLookupEnd: 0, + connectStart: 0, + connectEnd: 0, + secureConnectionStart: 0, + requestStart: 0, + responseStart: 0, + responseEnd: 0, + transferSize: 0, + encodedBodySize: 0, + decodedBodySize: 0 +}`); assert(resource instanceof PerformanceEntry); assert(resource instanceof PerformanceResourceTiming); From 9d918d99236ac3c2e43d86b9648b0b210ec63368 Mon Sep 17 00:00:00 2001 From: "hemanth.hm" Date: Fri, 8 Jul 2022 01:12:32 -0700 Subject: [PATCH 131/175] module: add isBuiltIn method MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43396 Fixes: https://github.com/nodejs/node/issues/42785 Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater Reviewed-By: Michaël Zasso Reviewed-By: Anto Aravinth Reviewed-By: Juan José Arboleda --- doc/api/module.md | 16 ++++++++++++++++ lib/internal/modules/cjs/loader.js | 11 +++++++++++ test/parallel/test-module-isBuiltin.js | 16 ++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 test/parallel/test-module-isBuiltin.js diff --git a/doc/api/module.md b/doc/api/module.md index 85ba9a79e2291d..04b5263155c76b 100644 --- a/doc/api/module.md +++ b/doc/api/module.md @@ -62,6 +62,22 @@ const require = createRequire(import.meta.url); const siblingModule = require('./sibling-module'); ``` +### `module.isBuiltin(moduleName)` + + + +* `moduleName` {string} name of the module +* Returns: {boolean} returns true if the module is builtin else returns false + +```mjs +import { isBuiltin } from 'node:module'; +isBuiltin('node:fs'); // true +isBuiltin('fs'); // true +isBuiltin('wss'); // false +``` + ### `module.syncBuiltinESMExports()` + +When the number of connections reaches the threshold of `server.maxConnections`, +the server will drop new connections and emit `'drop'` event instead. If it is a +TCP server, the argument is as follows, otherwise the argument is `undefined`. + +* `data` {Object} The argument passed to event listener. + * `localAddress` {string} Local address. + * `localPort` {number} Local port. + * `remoteAddress` {string} Remote address. + * `remotePort` {number} Remote port. + * `remoteFamily` {string} Remote IP family. `'IPv4'` or `'IPv6'`. + ### `server.address()` An ESM loader hook returned without calling `next()` and without explicitly diff --git a/doc/api/esm.md b/doc/api/esm.md index 407c8d405002a1..3a02f456a789d2 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -8,7 +8,7 @@ added: v8.5.0 changes: - version: - - REPLACEME + - v18.6.0 pr-url: https://github.com/nodejs/node/pull/42623 description: Add support for chaining loaders. - version: @@ -681,7 +681,7 @@ of Node.js applications. added: v8.8.0 changes: - version: - - REPLACEME + - v18.6.0 pr-url: https://github.com/nodejs/node/pull/42623 description: Add support for chaining loaders. - version: v16.12.0 @@ -731,7 +731,7 @@ prevent unintentional breaks in the chain. diff --git a/doc/api/module.md b/doc/api/module.md index 04b5263155c76b..16938ffc317e81 100644 --- a/doc/api/module.md +++ b/doc/api/module.md @@ -65,7 +65,7 @@ const siblingModule = require('./sibling-module'); ### `module.isBuiltin(moduleName)` * `moduleName` {string} name of the module diff --git a/doc/api/net.md b/doc/api/net.md index cd4d388524d422..5731af523d0151 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -284,7 +284,7 @@ Emitted when the server has been bound after calling [`server.listen()`][]. ### Event: `'drop'` When the number of connections reaches the threshold of `server.maxConnections`, diff --git a/doc/api/v8.md b/doc/api/v8.md index 0e58bad9dbe5c4..4ed65dc2b45222 100644 --- a/doc/api/v8.md +++ b/doc/api/v8.md @@ -879,7 +879,7 @@ occur synchronously in the case of `Promise.resolve()` or `Promise.reject()`. ## Startup Snapshot API > Stability: 1 - Experimental @@ -950,7 +950,7 @@ snapshot cannot use these APIs again. ### `v8.startupSnapshot.addSerializeCallback(callback[, data])` * `callback` {Function} Callback to be invoked before serialization. @@ -965,7 +965,7 @@ into a form more suitable for serialization. ### `v8.startupSnapshot.addDeserializeCallback(callback[, data])` * `callback` {Function} Callback to be invoked after the snapshot is @@ -982,7 +982,7 @@ when the application is restarted from the snapshot. ### `v8.startupSnapshot.setDeserializeMainFunction(callback[, data])` * `callback` {Function} Callback to be invoked as the entry point after the @@ -1000,7 +1000,7 @@ needs to be provided to the deserialized application. ### `v8.startupSnapshot.isBuildingSnapshot()` * Returns: {boolean} diff --git a/doc/changelogs/CHANGELOG_V18.md b/doc/changelogs/CHANGELOG_V18.md index b976c53f1ab926..20fa78467da5ba 100644 --- a/doc/changelogs/CHANGELOG_V18.md +++ b/doc/changelogs/CHANGELOG_V18.md @@ -8,6 +8,7 @@ +18.6.0
        18.5.0
        18.4.0
        18.3.0
        @@ -38,6 +39,212 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2022-07-13, Version 18.6.0 (Current), @targos + +### Notable Changes + +#### Experimental ESM Loader Hooks API + +Node.js ESM Loader hooks now support multiple custom loaders, and composition is +achieved via "chaining": `foo-loader` calls `bar-loader` calls `qux-loader` +(a custom loader _must_ now signal a short circuit when intentionally not +calling the next). See the [ESM docs](https://nodejs.org/api/esm.html) for details. + +Real-world use-cases are laid out for end-users with working examples in the +article [Custom ESM loaders: Who, what, when, where, why, how](https://dev.to/jakobjingleheimer/custom-esm-loaders-who-what-when-where-why-how-4i1o). + +Contributed by Jacob Smith, Geoffrey Booth, and Bradley Farias - + +### Commits + +#### Semver-minor commits + +* \[[`0bca7b722e`](https://github.com/nodejs/node/commit/0bca7b722e)] - **(SEMVER-MINOR)** **dns**: export error code constants from `dns/promises` (Feng Yu) [#43176](https://github.com/nodejs/node/pull/43176) +* \[[`da61e2330f`](https://github.com/nodejs/node/commit/da61e2330f)] - **(SEMVER-MINOR)** **esm**: add chaining to loaders (Jacob Smith) [#42623](https://github.com/nodejs/node/pull/42623) +* \[[`8c97f63401`](https://github.com/nodejs/node/commit/8c97f63401)] - **(SEMVER-MINOR)** **http**: add diagnostics channel for http client (theanarkh) [#43580](https://github.com/nodejs/node/pull/43580) +* \[[`b27856d3d4`](https://github.com/nodejs/node/commit/b27856d3d4)] - **(SEMVER-MINOR)** **http**: add perf\_hooks detail for http request and client (theanarkh) [#43361](https://github.com/nodejs/node/pull/43361) +* \[[`9d918d9923`](https://github.com/nodejs/node/commit/9d918d9923)] - **(SEMVER-MINOR)** **module**: add isBuiltIn method (hemanth.hm) [#43396](https://github.com/nodejs/node/pull/43396) +* \[[`a0e7b9983c`](https://github.com/nodejs/node/commit/a0e7b9983c)] - **(SEMVER-MINOR)** **net**: add drop event for net server (theanarkh) [#43582](https://github.com/nodejs/node/pull/43582) +* \[[`4bda6e02a3`](https://github.com/nodejs/node/commit/4bda6e02a3)] - **(SEMVER-MINOR)** **test\_runner**: expose `describe` and `it` (Moshe Atlow) [#43420](https://github.com/nodejs/node/pull/43420) +* \[[`34e83312a4`](https://github.com/nodejs/node/commit/34e83312a4)] - **(SEMVER-MINOR)** **v8**: add v8.startupSnapshot utils (Joyee Cheung) [#43329](https://github.com/nodejs/node/pull/43329) + +#### Semver-patch commits + +* \[[`ef174eac87`](https://github.com/nodejs/node/commit/ef174eac87)] - **assert**: callTracker throw a specific error message when possible (Moshe Atlow) [#43640](https://github.com/nodejs/node/pull/43640) +* \[[`07836637af`](https://github.com/nodejs/node/commit/07836637af)] - **bootstrap**: move global initialization to js (Alena Khineika) [#43625](https://github.com/nodejs/node/pull/43625) +* \[[`e9ee7e44be`](https://github.com/nodejs/node/commit/e9ee7e44be)] - **build,test**: increase stack size limit on Windows (Tobias Nießen) [#43632](https://github.com/nodejs/node/pull/43632) +* \[[`3ca9e653a6`](https://github.com/nodejs/node/commit/3ca9e653a6)] - **child\_process**: improve ipc write performance (rubikscraft) [#42931](https://github.com/nodejs/node/pull/42931) +* \[[`cad6d990ec`](https://github.com/nodejs/node/commit/cad6d990ec)] - **child\_process**: speed up 'advanced' ipc receiving (rubikscraft) [#42931](https://github.com/nodejs/node/pull/42931) +* \[[`ce3a22a9e3`](https://github.com/nodejs/node/commit/ce3a22a9e3)] - **cluster**: fix closing dgram sockets in cluster workers throws errors (Ouyang Yadong) [#43709](https://github.com/nodejs/node/pull/43709) +* \[[`5d8ee519db`](https://github.com/nodejs/node/commit/5d8ee519db)] - **cluster**: fix fd leak (theanarkh) [#43650](https://github.com/nodejs/node/pull/43650) +* \[[`fa5c4643e2`](https://github.com/nodejs/node/commit/fa5c4643e2)] - **cluster, net**: fix listen pipe with readable and writable in cluster (theanarkh) [#43634](https://github.com/nodejs/node/pull/43634) +* \[[`4df96b501d`](https://github.com/nodejs/node/commit/4df96b501d)] - **crypto**: don't disable TLS 1.3 without suites (Adam Majer) [#43427](https://github.com/nodejs/node/pull/43427) +* \[[`a43928ae78`](https://github.com/nodejs/node/commit/a43928ae78)] - **crypto**: use ByteSource::Builder in To\*Copy (Tobias Nießen) [#43477](https://github.com/nodejs/node/pull/43477) +* \[[`bb326f7ece`](https://github.com/nodejs/node/commit/bb326f7ece)] - **crypto**: handle webcrypto generateKey() usages edge case (Filip Skokan) [#43454](https://github.com/nodejs/node/pull/43454) +* \[[`9bd13bbb3a`](https://github.com/nodejs/node/commit/9bd13bbb3a)] - **crypto**: update Wrapping and unwrapping keys webcrypto example (Filip Skokan) [#43452](https://github.com/nodejs/node/pull/43452) +* \[[`679f19128e`](https://github.com/nodejs/node/commit/679f19128e)] - **crypto**: fix webcrypto generateKey() with empty usages (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`64a9dd7b83`](https://github.com/nodejs/node/commit/64a9dd7b83)] - **crypto**: fix webcrypto digest() invalid algorithm (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`dedb22e965`](https://github.com/nodejs/node/commit/dedb22e965)] - **crypto**: fix webcrypto RSA generateKey() use of publicExponent (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`018f61cb4f`](https://github.com/nodejs/node/commit/018f61cb4f)] - **crypto**: fix webcrypto AES-KW keys accepting encrypt/decrypt usages (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`3ee0bb8d03`](https://github.com/nodejs/node/commit/3ee0bb8d03)] - **crypto**: fix webcrypto deriveBits for non-byte lengths (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`7fc075b23a`](https://github.com/nodejs/node/commit/7fc075b23a)] - **deps**: update undici to 5.7.0 (Node.js GitHub Bot) [#43790](https://github.com/nodejs/node/pull/43790) +* \[[`d6a9e93426`](https://github.com/nodejs/node/commit/d6a9e93426)] - **deps**: patch V8 to 10.2.154.13 (Michaël Zasso) [#43727](https://github.com/nodejs/node/pull/43727) +* \[[`428d03cb94`](https://github.com/nodejs/node/commit/428d03cb94)] - **deps**: update corepack to 0.12.0 (Node.js GitHub Bot) [#43748](https://github.com/nodejs/node/pull/43748) +* \[[`74914698e5`](https://github.com/nodejs/node/commit/74914698e5)] - **deps**: upgrade npm to 8.13.2 (npm team) [#43622](https://github.com/nodejs/node/pull/43622) +* \[[`0636f86ecc`](https://github.com/nodejs/node/commit/0636f86ecc)] - **deps**: upgrade npm to 8.13.1 (npm team) [#43552](https://github.com/nodejs/node/pull/43552) +* \[[`2149acda60`](https://github.com/nodejs/node/commit/2149acda60)] - **dns**: make promise API fully constructed from `lib/internal/dns/promises` (Feng Yu) [#43227](https://github.com/nodejs/node/pull/43227) +* \[[`79ea19e5e2`](https://github.com/nodejs/node/commit/79ea19e5e2)] - **errors**: extract type detection & use in `ERR_INVALID_RETURN_VALUE` (Jacob Smith) [#43558](https://github.com/nodejs/node/pull/43558) +* \[[`80ced1ae31`](https://github.com/nodejs/node/commit/80ced1ae31)] - **esm**: treat `307` and `308` as redirects in HTTPS imports (Kid) [#43689](https://github.com/nodejs/node/pull/43689) +* \[[`953fefe77b`](https://github.com/nodejs/node/commit/953fefe77b)] - **esm**: restore `next`'s `context` as optional arg (Jacob Smith) [#43553](https://github.com/nodejs/node/pull/43553) +* \[[`10bcad5c6e`](https://github.com/nodejs/node/commit/10bcad5c6e)] - **esm**: fix chain advances when loader calls next\ multiple times (Jacob Smith) [#43303](https://github.com/nodejs/node/pull/43303) +* \[[`50d64edd49`](https://github.com/nodejs/node/commit/50d64edd49)] - **esm**: refactor responseURL handling (Guy Bedford) [#43164](https://github.com/nodejs/node/pull/43164) +* \[[`254efd9e3b`](https://github.com/nodejs/node/commit/254efd9e3b)] - **esm**: fix http(s) import via custom loader (Jacob Smith) [#43130](https://github.com/nodejs/node/pull/43130) +* \[[`061ed0e76b`](https://github.com/nodejs/node/commit/061ed0e76b)] - **events**: improve `Event` compatibility (Daeyeon Jeong) [#43461](https://github.com/nodejs/node/pull/43461) +* \[[`66fb059547`](https://github.com/nodejs/node/commit/66fb059547)] - **events**: improve `EventListener` validation (Daeyeon Jeong) [#43491](https://github.com/nodejs/node/pull/43491) +* \[[`12a591a676`](https://github.com/nodejs/node/commit/12a591a676)] - **fs**: refactor realpath with Map and Set (LiviaMedeiros) [#43569](https://github.com/nodejs/node/pull/43569) +* \[[`df501316c1`](https://github.com/nodejs/node/commit/df501316c1)] - **fs**: don't end fs promises on Isolate termination (Santiago Gimeno) [#42910](https://github.com/nodejs/node/pull/42910) +* \[[`e6d4837fad`](https://github.com/nodejs/node/commit/e6d4837fad)] - **http**: fix failing test (Paolo Insogna) [#43641](https://github.com/nodejs/node/pull/43641) +* \[[`491c7619c4`](https://github.com/nodejs/node/commit/491c7619c4)] - **http**: defer reentrant execution of Parser::Execute (Paolo Insogna) [#43369](https://github.com/nodejs/node/pull/43369) +* \[[`d71ba322b0`](https://github.com/nodejs/node/commit/d71ba322b0)] - **http**: fix http agent keep alive (theanarkh) [#43380](https://github.com/nodejs/node/pull/43380) +* \[[`1f4f811de5`](https://github.com/nodejs/node/commit/1f4f811de5)] - **http2**: log debug only when in debug mode (Basit) [#43626](https://github.com/nodejs/node/pull/43626) +* \[[`c8cbec4cef`](https://github.com/nodejs/node/commit/c8cbec4cef)] - **lib**: make `validateObject` less affected by prototype tampering (Antoine du Hamel) [#42929](https://github.com/nodejs/node/pull/42929) +* \[[`dc484b6f6f`](https://github.com/nodejs/node/commit/dc484b6f6f)] - **lib**: implement safe alternatives to `Promise` static methods (Antoine du Hamel) [#43728](https://github.com/nodejs/node/pull/43728) +* \[[`2233567331`](https://github.com/nodejs/node/commit/2233567331)] - **lib**: use null-prototype objects for property descriptors (Antoine du Hamel) [#43473](https://github.com/nodejs/node/pull/43473) +* \[[`b9198d977f`](https://github.com/nodejs/node/commit/b9198d977f)] - **lib**: refactor to avoid unsafe regex primordials (Antoine du Hamel) [#43475](https://github.com/nodejs/node/pull/43475) +* \[[`deaf4bb5cd`](https://github.com/nodejs/node/commit/deaf4bb5cd)] - **lib**: fix TODO in `freeze_intrinsics` (Antoine du Hamel) [#43472](https://github.com/nodejs/node/pull/43472) +* \[[`61e6d7858a`](https://github.com/nodejs/node/commit/61e6d7858a)] - **lib,src**: add source map support for global eval (Chengzhong Wu) [#43428](https://github.com/nodejs/node/pull/43428) +* \[[`58646eaad6`](https://github.com/nodejs/node/commit/58646eaad6)] - **loader**: make `require.resolve` throw for unknown builtin modules (木杉) [#43336](https://github.com/nodejs/node/pull/43336) +* \[[`e914185c44`](https://github.com/nodejs/node/commit/e914185c44)] - **module**: cjs-module-lexer WebAssembly fallback (Guy Bedford) [#43612](https://github.com/nodejs/node/pull/43612) +* \[[`3ad4d37b3c`](https://github.com/nodejs/node/commit/3ad4d37b3c)] - **module**: also enable subpath imports in REPL (Ray) [#43450](https://github.com/nodejs/node/pull/43450) +* \[[`bf4ac4c55f`](https://github.com/nodejs/node/commit/bf4ac4c55f)] - **net**: remove redundant connecting assignment (Ouyang Yadong) [#43710](https://github.com/nodejs/node/pull/43710) +* \[[`ad1d0541c5`](https://github.com/nodejs/node/commit/ad1d0541c5)] - **net**: fix net keepalive and noDelay (theanarkh) [#43561](https://github.com/nodejs/node/pull/43561) +* \[[`f8bdc53e4f`](https://github.com/nodejs/node/commit/f8bdc53e4f)] - **net**: prevent /32 ipv4 mask from matching all ips (supriyo-biswas) [#43381](https://github.com/nodejs/node/pull/43381) +* \[[`47a252257b`](https://github.com/nodejs/node/commit/47a252257b)] - **net**: fix net.Server keepalive and noDelay (theanarkh) [#43497](https://github.com/nodejs/node/pull/43497) +* \[[`d834d216f2`](https://github.com/nodejs/node/commit/d834d216f2)] - **perf\_hooks**: add initiatorType getter (Rafael Gonzaga) [#43593](https://github.com/nodejs/node/pull/43593) +* \[[`02009b7069`](https://github.com/nodejs/node/commit/02009b7069)] - **perf\_hooks**: fix miscounted gc performance entry starttime (#43066) (Xuguang Mei) [#43066](https://github.com/nodejs/node/pull/43066) +* \[[`e9574f3009`](https://github.com/nodejs/node/commit/e9574f3009)] - **readline**: fix to not access a property on an undefined value (Kohei Ueno) [#43543](https://github.com/nodejs/node/pull/43543) +* \[[`fe1f740f61`](https://github.com/nodejs/node/commit/fe1f740f61)] - **src**: merge RunInThisContext() with RunInContext() (Daeyeon Jeong) [#43225](https://github.com/nodejs/node/pull/43225) +* \[[`0f6d19489a`](https://github.com/nodejs/node/commit/0f6d19489a)] - **src**: fix crash on FSReqPromise destructor (Santiago Gimeno) [#43533](https://github.com/nodejs/node/pull/43533) +* \[[`4e6a844207`](https://github.com/nodejs/node/commit/4e6a844207)] - **src**: delegate NodeArrayBufferAllocator to v8's allocator (Jeremy Rose) [#43594](https://github.com/nodejs/node/pull/43594) +* \[[`5ae30bf17a`](https://github.com/nodejs/node/commit/5ae30bf17a)] - **src**: remove a stale comment in `async_hooks` (Daeyeon Jeong) [#43317](https://github.com/nodejs/node/pull/43317) +* \[[`0b432b957e`](https://github.com/nodejs/node/commit/0b432b957e)] - **src**: fix compiler warning in src/heap\_utils.cc (Darshan Sen) [#43579](https://github.com/nodejs/node/pull/43579) +* \[[`d3fc791c3d`](https://github.com/nodejs/node/commit/d3fc791c3d)] - **src**: improve and update ByteSource description (Tobias Nießen) [#43478](https://github.com/nodejs/node/pull/43478) +* \[[`4e0afa4133`](https://github.com/nodejs/node/commit/4e0afa4133)] - **src**: remove CopyBuffer (Tobias Nießen) [#43463](https://github.com/nodejs/node/pull/43463) +* \[[`0659d5e3b0`](https://github.com/nodejs/node/commit/0659d5e3b0)] - **src**: change FormatSize to actually accept a size\_t (Tobias Nießen) [#43464](https://github.com/nodejs/node/pull/43464) +* \[[`66ee1f1e3c`](https://github.com/nodejs/node/commit/66ee1f1e3c)] - **src**: register StreamBase while registering LibuvStreamWrap (Darshan Sen) [#43321](https://github.com/nodejs/node/pull/43321) +* \[[`48ee6b9dc9`](https://github.com/nodejs/node/commit/48ee6b9dc9)] - **src,bootstrap**: remove NodeMainInstance::registry\_ (Darshan Sen) [#43392](https://github.com/nodejs/node/pull/43392) +* \[[`2e181f68a3`](https://github.com/nodejs/node/commit/2e181f68a3)] - **src,stream**: change return type to `Maybe` (Daeyeon Jeong) [#43575](https://github.com/nodejs/node/pull/43575) +* \[[`0f07abc80d`](https://github.com/nodejs/node/commit/0f07abc80d)] - **stream**: finish pipeline if dst closes before src (Robert Nagy) [#43701](https://github.com/nodejs/node/pull/43701) +* \[[`1617a4621e`](https://github.com/nodejs/node/commit/1617a4621e)] - **stream**: pass error on legacy destroy (Giacomo Gregoletto) [#43519](https://github.com/nodejs/node/pull/43519) +* \[[`40f51d8e83`](https://github.com/nodejs/node/commit/40f51d8e83)] - **test\_runner**: protect internals against prototype tampering (Antoine du Hamel) [#43578](https://github.com/nodejs/node/pull/43578) +* \[[`ddf7518520`](https://github.com/nodejs/node/commit/ddf7518520)] - **test\_runner**: cancel on termination (Moshe Atlow) [#43549](https://github.com/nodejs/node/pull/43549) +* \[[`e51d8c6004`](https://github.com/nodejs/node/commit/e51d8c6004)] - **test\_runner**: wait for stderr and stdout to complete (Moshe Atlow) [#43666](https://github.com/nodejs/node/pull/43666) +* \[[`dda64ddfbd`](https://github.com/nodejs/node/commit/dda64ddfbd)] - **test\_runner**: add Subtest to tap protocol output (Moshe Atlow) [#43417](https://github.com/nodejs/node/pull/43417) +* \[[`a1f1d3a7b3`](https://github.com/nodejs/node/commit/a1f1d3a7b3)] - **url**: update WHATWG URL parser to align with latest spec (Feng Yu) [#43190](https://github.com/nodejs/node/pull/43190) +* \[[`5a5c4be5a3`](https://github.com/nodejs/node/commit/5a5c4be5a3)] - **util**: add `AggregateError.prototype.errors` to inspect output (LiviaMedeiros) [#43646](https://github.com/nodejs/node/pull/43646) +* \[[`bdca4d3ccf`](https://github.com/nodejs/node/commit/bdca4d3ccf)] - **util**: remove unnecessary template string (Ruben Bridgewater) [#41082](https://github.com/nodejs/node/pull/41082) +* \[[`6b16836448`](https://github.com/nodejs/node/commit/6b16836448)] - **util**: mark cwd grey while inspecting errors (Ruben Bridgewater) [#41082](https://github.com/nodejs/node/pull/41082) +* \[[`baa22a7b7d`](https://github.com/nodejs/node/commit/baa22a7b7d)] - **util**: avoid inline access to Symbol.iterator (Kohei Ueno) [#43683](https://github.com/nodejs/node/pull/43683) +* \[[`a1f581a61e`](https://github.com/nodejs/node/commit/a1f581a61e)] - **util**: fix TypeError of symbol in template literals (cola119) [#42790](https://github.com/nodejs/node/pull/42790) +* \[[`ba9b2f021f`](https://github.com/nodejs/node/commit/ba9b2f021f)] - **wasi**: use WasmMemoryObject handle for perf (#43544) (snek) [#43544](https://github.com/nodejs/node/pull/43544) + +#### Documentation commits + +* \[[`e0769554a5`](https://github.com/nodejs/node/commit/e0769554a5)] - **doc**: remove bullet point referring to Node.js 12 (Luigi Pinca) [#43744](https://github.com/nodejs/node/pull/43744) +* \[[`7ffcd85ace`](https://github.com/nodejs/node/commit/7ffcd85ace)] - **doc**: include last security release date (Rafael Gonzaga) [#43774](https://github.com/nodejs/node/pull/43774) +* \[[`4569d6ebcb`](https://github.com/nodejs/node/commit/4569d6ebcb)] - **doc**: add details for July 2022 security releases (Beth Griggs) [#43733](https://github.com/nodejs/node/pull/43733) +* \[[`1bd56339c5`](https://github.com/nodejs/node/commit/1bd56339c5)] - **doc**: remove openssl 1.x reference (Rafael Gonzaga) [#43734](https://github.com/nodejs/node/pull/43734) +* \[[`bf62ffd848`](https://github.com/nodejs/node/commit/bf62ffd848)] - **doc**: remove node-report from support tiers (RafaelGSS) [#43737](https://github.com/nodejs/node/pull/43737) +* \[[`ca5af0dbf7`](https://github.com/nodejs/node/commit/ca5af0dbf7)] - **doc**: update changelog-maker to the new flags (RafaelGSS) [#43696](https://github.com/nodejs/node/pull/43696) +* \[[`088b9266d0`](https://github.com/nodejs/node/commit/088b9266d0)] - **doc**: remove extra 'in's (Colin Ihrig) [#43705](https://github.com/nodejs/node/pull/43705) +* \[[`7679c77347`](https://github.com/nodejs/node/commit/7679c77347)] - **doc**: add Geoffrey Booth to TSC (Rich Trott) [#43706](https://github.com/nodejs/node/pull/43706) +* \[[`d46261ceed`](https://github.com/nodejs/node/commit/d46261ceed)] - **doc**: improve readability of `dns.md` (0xSanyam) [#43694](https://github.com/nodejs/node/pull/43694) +* \[[`ca0fbfd87f`](https://github.com/nodejs/node/commit/ca0fbfd87f)] - **doc**: add note regarding special case of 0 stat.size (Douglas Wilson) [#43690](https://github.com/nodejs/node/pull/43690) +* \[[`267f66b5cc`](https://github.com/nodejs/node/commit/267f66b5cc)] - **doc**: fix default of duplex.allowHalfOpen (Vincent Weevers) [#43665](https://github.com/nodejs/node/pull/43665) +* \[[`46ad2061db`](https://github.com/nodejs/node/commit/46ad2061db)] - **doc**: fix typo in errors.md (Kazuma Ohashi) [#43677](https://github.com/nodejs/node/pull/43677) +* \[[`3a8edb363e`](https://github.com/nodejs/node/commit/3a8edb363e)] - **doc**: improve description of --input-type (cola119) [#43507](https://github.com/nodejs/node/pull/43507) +* \[[`b4b15b71d7`](https://github.com/nodejs/node/commit/b4b15b71d7)] - **doc**: add daeyeon to triagers (Daeyeon Jeong) [#43637](https://github.com/nodejs/node/pull/43637) +* \[[`cb77b3e3f7`](https://github.com/nodejs/node/commit/cb77b3e3f7)] - **doc**: remove appmetrics from tierlist (Tony Gorez) [#43608](https://github.com/nodejs/node/pull/43608) +* \[[`0fe825ac07`](https://github.com/nodejs/node/commit/0fe825ac07)] - **doc**: remove systemtap from tierlist (Tony Gorez) [#43605](https://github.com/nodejs/node/pull/43605) +* \[[`6fc5a13fe0`](https://github.com/nodejs/node/commit/6fc5a13fe0)] - **doc**: add single executable application initiative (Michael Dawson) [#43611](https://github.com/nodejs/node/pull/43611) +* \[[`350e6ae04c`](https://github.com/nodejs/node/commit/350e6ae04c)] - **doc**: remove windows xperf from tierlist (Tony Gorez) [#43607](https://github.com/nodejs/node/pull/43607) +* \[[`a6e98dfd65`](https://github.com/nodejs/node/commit/a6e98dfd65)] - **doc**: remove lttng from tierlist (Tony Gorez) [#43604](https://github.com/nodejs/node/pull/43604) +* \[[`22512427b3`](https://github.com/nodejs/node/commit/22512427b3)] - **doc**: remove dtrace from tierlist (Tony Gorez) [#43606](https://github.com/nodejs/node/pull/43606) +* \[[`a3659e3547`](https://github.com/nodejs/node/commit/a3659e3547)] - **doc**: promote 0x to tier 4 (Tony Gorez) [#43609](https://github.com/nodejs/node/pull/43609) +* \[[`6ede1c2162`](https://github.com/nodejs/node/commit/6ede1c2162)] - **doc**: include CVSS mention (Rafael Gonzaga) [#43602](https://github.com/nodejs/node/pull/43602) +* \[[`23c5de3579`](https://github.com/nodejs/node/commit/23c5de3579)] - **doc**: fix icu-small example (Michael Dawson) [#43591](https://github.com/nodejs/node/pull/43591) +* \[[`54a8a0c9c7`](https://github.com/nodejs/node/commit/54a8a0c9c7)] - **doc**: add `backport-open-vN.x` step to backporting guide (LiviaMedeiros) [#43590](https://github.com/nodejs/node/pull/43590) +* \[[`60b949d8ff`](https://github.com/nodejs/node/commit/60b949d8ff)] - **doc**: move MylesBorins to TSC Emeritus (Myles Borins) [#43524](https://github.com/nodejs/node/pull/43524) +* \[[`08ed28c31e`](https://github.com/nodejs/node/commit/08ed28c31e)] - **doc**: add Juan as a security steward (Michael Dawson) [#43512](https://github.com/nodejs/node/pull/43512) +* \[[`2e799bcd35`](https://github.com/nodejs/node/commit/2e799bcd35)] - **doc**: update link to MDN page about dynamic imports (James Scott-Brown) [#43530](https://github.com/nodejs/node/pull/43530) +* \[[`c8aafe2036`](https://github.com/nodejs/node/commit/c8aafe2036)] - **doc**: fix Visual Studio 2019 download link (Feng Yu) [#43236](https://github.com/nodejs/node/pull/43236) +* \[[`d0c78d21e0`](https://github.com/nodejs/node/commit/d0c78d21e0)] - **doc**: update link of `ICU data slicer` (Feng Yu) [#43483](https://github.com/nodejs/node/pull/43483) +* \[[`324728094c`](https://github.com/nodejs/node/commit/324728094c)] - **doc**: update v8 doc link to v8.dev (Feng Yu) [#43482](https://github.com/nodejs/node/pull/43482) +* \[[`b111331c9c`](https://github.com/nodejs/node/commit/b111331c9c)] - **doc**: add ESM version examples to events api doc (Feng Yu) [#43226](https://github.com/nodejs/node/pull/43226) +* \[[`038decfbc3`](https://github.com/nodejs/node/commit/038decfbc3)] - **doc**: update default branch name in `test/**` (Luigi Pinca) [#43445](https://github.com/nodejs/node/pull/43445) +* \[[`a23051af84`](https://github.com/nodejs/node/commit/a23051af84)] - **doc**: add new useful V8 option (JialuZhang-intel) [#42575](https://github.com/nodejs/node/pull/42575) +* \[[`7f406fd77b`](https://github.com/nodejs/node/commit/7f406fd77b)] - **doc**: remove branch name mention in `src/README.md` (Feng Yu) [#43442](https://github.com/nodejs/node/pull/43442) +* \[[`06fe60a6f9`](https://github.com/nodejs/node/commit/06fe60a6f9)] - **doc**: update default branch name in `Makefile` (Feng Yu) [#43441](https://github.com/nodejs/node/pull/43441) +* \[[`9d61da0aef`](https://github.com/nodejs/node/commit/9d61da0aef)] - **doc**: update main branch name in release guide (Richard Lau) [#43437](https://github.com/nodejs/node/pull/43437) +* \[[`739d3a35ed`](https://github.com/nodejs/node/commit/739d3a35ed)] - **doc**: update main branch name in onboarding.md (Feng Yu) [#43443](https://github.com/nodejs/node/pull/43443) +* \[[`e0fedcfb18`](https://github.com/nodejs/node/commit/e0fedcfb18)] - **doc**: fixup after rename of primary nodejs branch (Michael Dawson) [#43453](https://github.com/nodejs/node/pull/43453) +* \[[`429e0f433b`](https://github.com/nodejs/node/commit/429e0f433b)] - **doc**: update main branch name in doc/contributing/\* (Luigi Pinca) [#43438](https://github.com/nodejs/node/pull/43438) +* \[[`cbaf1207f4`](https://github.com/nodejs/node/commit/cbaf1207f4)] - **doc**: add code examples to node test runner (Wassim Chegham) [#43359](https://github.com/nodejs/node/pull/43359) +* \[[`462e526237`](https://github.com/nodejs/node/commit/462e526237)] - **doc,test**: clarify timingSafeEqual semantics (Tobias Nießen) [#43228](https://github.com/nodejs/node/pull/43228) + +#### Other commits + +* \[[`7ee0be71f9`](https://github.com/nodejs/node/commit/7ee0be71f9)] - **benchmark**: fix output regression (Brian White) [#43635](https://github.com/nodejs/node/pull/43635) +* \[[`d90a6f9bda`](https://github.com/nodejs/node/commit/d90a6f9bda)] - **benchmark**: fix fork detection (Paolo Insogna) [#43601](https://github.com/nodejs/node/pull/43601) +* \[[`f9c30abcdc`](https://github.com/nodejs/node/commit/f9c30abcdc)] - **benchmark**: forcefully close processes (Paolo Insogna) [#43557](https://github.com/nodejs/node/pull/43557) +* \[[`ebf962c053`](https://github.com/nodejs/node/commit/ebf962c053)] - **build**: enable GitPod prebuilds (Rich Trott) [#43698](https://github.com/nodejs/node/pull/43698) +* \[[`482bd53357`](https://github.com/nodejs/node/commit/482bd53357)] - **build**: clarify missing clang-format tool (Tobias Nießen) [#42762](https://github.com/nodejs/node/pull/42762) +* \[[`919c5ee5c2`](https://github.com/nodejs/node/commit/919c5ee5c2)] - **build**: update main branch name in GH workflow (Feng Yu) [#43481](https://github.com/nodejs/node/pull/43481) +* \[[`3b08dfdc5d`](https://github.com/nodejs/node/commit/3b08dfdc5d)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43750](https://github.com/nodejs/node/pull/43750) +* \[[`508cbbcbf9`](https://github.com/nodejs/node/commit/508cbbcbf9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43660](https://github.com/nodejs/node/pull/43660) +* \[[`d650c9c6b0`](https://github.com/nodejs/node/commit/d650c9c6b0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43573](https://github.com/nodejs/node/pull/43573) +* \[[`b9204c9be8`](https://github.com/nodejs/node/commit/b9204c9be8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43480](https://github.com/nodejs/node/pull/43480) +* \[[`294f0ef4df`](https://github.com/nodejs/node/commit/294f0ef4df)] - **test**: mark test-net-connect-reset-until-connected flaky on freebsd (Feng Yu) [#43613](https://github.com/nodejs/node/pull/43613) +* \[[`f2f7d7b207`](https://github.com/nodejs/node/commit/f2f7d7b207)] - **test**: remove unnecessary .toString() calls in HTTP tests (Anna Henningsen) [#43731](https://github.com/nodejs/node/pull/43731) +* \[[`38e92fd88f`](https://github.com/nodejs/node/commit/38e92fd88f)] - **test**: mark test-gc-http-client-timeout as flaky on arm (Chengzhong Wu) [#43754](https://github.com/nodejs/node/pull/43754) +* \[[`b164848c55`](https://github.com/nodejs/node/commit/b164848c55)] - **test**: fix typo in file name (Antoine du Hamel) [#43764](https://github.com/nodejs/node/pull/43764) +* \[[`a0b799f645`](https://github.com/nodejs/node/commit/a0b799f645)] - **test**: add test for profile command of node inspect (Kohei Ueno) [#43058](https://github.com/nodejs/node/pull/43058) +* \[[`c4d88b3345`](https://github.com/nodejs/node/commit/c4d88b3345)] - **test**: use Object for `tests` variable in fs trace test (Feng Yu) [#43585](https://github.com/nodejs/node/pull/43585) +* \[[`c9f130e1cf`](https://github.com/nodejs/node/commit/c9f130e1cf)] - **test**: improve code coverage for performance\_entry (Kohei Ueno) [#43434](https://github.com/nodejs/node/pull/43434) +* \[[`0b4956079a`](https://github.com/nodejs/node/commit/0b4956079a)] - **test**: add test to ensure repl doesn't support --input-type (cola119) [#43507](https://github.com/nodejs/node/pull/43507) +* \[[`2adf4e7727`](https://github.com/nodejs/node/commit/2adf4e7727)] - **test**: fix flaky test-perf-hooks-histogram (Santiago Gimeno) [#43567](https://github.com/nodejs/node/pull/43567) +* \[[`043756d540`](https://github.com/nodejs/node/commit/043756d540)] - **test**: fill DOMException names (LiviaMedeiros) [#43615](https://github.com/nodejs/node/pull/43615) +* \[[`e718a6e913`](https://github.com/nodejs/node/commit/e718a6e913)] - **test**: fix Buffer.from(ArrayBufferView) call (LiviaMedeiros) [#43614](https://github.com/nodejs/node/pull/43614) +* \[[`ac72f4e812`](https://github.com/nodejs/node/commit/ac72f4e812)] - **test**: mark test-worker-http2-stream-terminate flaky on all platforms (Finn Yu) [#43620](https://github.com/nodejs/node/pull/43620) +* \[[`dabccef69f`](https://github.com/nodejs/node/commit/dabccef69f)] - **test**: mark flaky tests on smartos (Feng Yu) [#43596](https://github.com/nodejs/node/pull/43596) +* \[[`705e85e736`](https://github.com/nodejs/node/commit/705e85e736)] - **test**: improve code coverage for SourceMap class (italo jose) [#43285](https://github.com/nodejs/node/pull/43285) +* \[[`7c6f548382`](https://github.com/nodejs/node/commit/7c6f548382)] - **test**: mark test-http-server-request-timeouts-mixed flaky on macOS (F3n67u) [#43597](https://github.com/nodejs/node/pull/43597) +* \[[`bd91337988`](https://github.com/nodejs/node/commit/bd91337988)] - **test**: refactor to top-level await (Meek Simbule) [#43500](https://github.com/nodejs/node/pull/43500) +* \[[`9940dc38c1`](https://github.com/nodejs/node/commit/9940dc38c1)] - **test**: skip test-v8-serialize-leak on IBM i (Richard Lau) [#43511](https://github.com/nodejs/node/pull/43511) +* \[[`17b92f0679`](https://github.com/nodejs/node/commit/17b92f0679)] - **test**: use unique file names in fs trace test (Ben Noordhuis) [#43504](https://github.com/nodejs/node/pull/43504) +* \[[`7ca58b8ee7`](https://github.com/nodejs/node/commit/7ca58b8ee7)] - **test**: allow EOVERFLOW errors in fs position tests (Richard Lau) [#43510](https://github.com/nodejs/node/pull/43510) +* \[[`eece34cddb`](https://github.com/nodejs/node/commit/eece34cddb)] - **test**: add WPT tests for dom/events (Daiki Nishikawa) [#43151](https://github.com/nodejs/node/pull/43151) +* \[[`70d297c271`](https://github.com/nodejs/node/commit/70d297c271)] - **test**: replace gc(true) with gc({ type: 'minor' }) (Tobias Nießen) [#43493](https://github.com/nodejs/node/pull/43493) +* \[[`1022c0d0d4`](https://github.com/nodejs/node/commit/1022c0d0d4)] - **test**: fix flaky test-https-server-close- tests (Santiago Gimeno) [#43216](https://github.com/nodejs/node/pull/43216) +* \[[`a9ab41cb38`](https://github.com/nodejs/node/commit/a9ab41cb38)] - **test**: refactor to top-level await (Meek Simbule) [#43366](https://github.com/nodejs/node/pull/43366) +* \[[`b1a7798821`](https://github.com/nodejs/node/commit/b1a7798821)] - **test**: skip test-net-connect-reset-until-connected on SmartOS (Filip Skokan) [#43449](https://github.com/nodejs/node/pull/43449) +* \[[`3b0703fd0d`](https://github.com/nodejs/node/commit/3b0703fd0d)] - **test**: rename `test-eventtarget-whatwg-*.js` (Daeyeon Jeong) [#43467](https://github.com/nodejs/node/pull/43467) +* \[[`5c0a24d5be`](https://github.com/nodejs/node/commit/5c0a24d5be)] - **test**: mark test-worker-http2-stream-terminate flaky on Windows (Darshan Sen) [#43425](https://github.com/nodejs/node/pull/43425) +* \[[`48ae00c0b1`](https://github.com/nodejs/node/commit/48ae00c0b1)] - **test**: improve coverage for load hooks (Antoine du Hamel) [#43374](https://github.com/nodejs/node/pull/43374) +* \[[`2b55b606f7`](https://github.com/nodejs/node/commit/2b55b606f7)] - _**Revert**_ "**test**: mark test\_buffer/test\_finalizer flaky" (Matteo Collina) [#43418](https://github.com/nodejs/node/pull/43418) +* \[[`3948accbf4`](https://github.com/nodejs/node/commit/3948accbf4)] - **test**: make node-api/test\_buffer/test\_finalizer not flaky (Matteo Collina) [#43418](https://github.com/nodejs/node/pull/43418) +* \[[`c954bcd20b`](https://github.com/nodejs/node/commit/c954bcd20b)] - **tools**: remove rpm build scripts (Ben Noordhuis) [#43647](https://github.com/nodejs/node/pull/43647) +* \[[`8a06b7b9d0`](https://github.com/nodejs/node/commit/8a06b7b9d0)] - **tools**: update lint-md-dependencies to rollup\@2.76.0 (Node.js GitHub Bot) [#43749](https://github.com/nodejs/node/pull/43749) +* \[[`aafdf1239e`](https://github.com/nodejs/node/commit/aafdf1239e)] - **tools**: refactor `tools/license2rtf` to ESM (Feng Yu) [#43232](https://github.com/nodejs/node/pull/43232) +* \[[`99ffabf2dd`](https://github.com/nodejs/node/commit/99ffabf2dd)] - **tools**: update eslint to 8.19.0 (Node.js GitHub Bot) [#43662](https://github.com/nodejs/node/pull/43662) +* \[[`c6396c179f`](https://github.com/nodejs/node/commit/c6396c179f)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#43572](https://github.com/nodejs/node/pull/43572) +* \[[`8d14d6e215`](https://github.com/nodejs/node/commit/8d14d6e215)] - **tools**: fix CJS/ESM toggle on small screens (Antoine du Hamel) [#43506](https://github.com/nodejs/node/pull/43506) +* \[[`59d4da699e`](https://github.com/nodejs/node/commit/59d4da699e)] - **tools**: update eslint to 8.18.0 (Node.js GitHub Bot) [#43479](https://github.com/nodejs/node/pull/43479) +* \[[`752380a959`](https://github.com/nodejs/node/commit/752380a959)] - **tools**: update main branch name (Feng Yu) [#43440](https://github.com/nodejs/node/pull/43440) +* \[[`06c367ef8b`](https://github.com/nodejs/node/commit/06c367ef8b)] - **tools**: update lint-md-dependencies to rollup\@2.75.6 (Node.js GitHub Bot) [#43386](https://github.com/nodejs/node/pull/43386) + ## 2022-07-07, Version 18.5.0 (Current), @RafaelGSS diff --git a/src/node_version.h b/src/node_version.h index e3bb9631f0c078..b4dedebe74342d 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 18 -#define NODE_MINOR_VERSION 5 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 6 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 0 #define NODE_VERSION_LTS_CODENAME "" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)